blob: ed7c22de93191dd67b7c422309654906ce1ebc44 [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
20#include <asm/system.h>
21
22#include <linux/module.h>
23#include <linux/types.h>
Chuck Levercb3997b2008-05-21 17:09:41 -040024#include <linux/kallsyms.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/mm.h>
Trond Myklebust23ac6582009-08-09 15:14:25 -040026#include <linux/namei.h>
27#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/slab.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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/sunrpc/rpc_pipe_fs.h>
Chuck Lever11c556b2006-03-20 13:44:22 -050037#include <linux/sunrpc/metrics.h>
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -040038#include <linux/sunrpc/bc_xprt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -040040#include "sunrpc.h"
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +040041#include "netns.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#ifdef RPC_DEBUG
44# define RPCDBG_FACILITY RPCDBG_CALL
45#endif
46
Chuck Lever46121cf2007-01-31 12:14:08 -050047#define dprint_status(t) \
48 dprintk("RPC: %5u %s (status %d)\n", t->tk_pid, \
Harvey Harrison0dc47872008-03-05 20:47:47 -080049 __func__, t->tk_status)
Chuck Lever46121cf2007-01-31 12:14:08 -050050
Trond Myklebust188fef12007-06-16 14:18:40 -040051/*
52 * All RPC clients are linked into this list
53 */
Trond Myklebust188fef12007-06-16 14:18:40 -040054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static DECLARE_WAIT_QUEUE_HEAD(destroy_wait);
56
57
58static void call_start(struct rpc_task *task);
59static void call_reserve(struct rpc_task *task);
60static void call_reserveresult(struct rpc_task *task);
61static void call_allocate(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static void call_decode(struct rpc_task *task);
63static void call_bind(struct rpc_task *task);
Chuck Leverda351872005-08-11 16:25:11 -040064static void call_bind_status(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static void call_transmit(struct rpc_task *task);
Trond Myklebust9e00abc2011-07-13 19:20:49 -040066#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -040067static void call_bc_transmit(struct rpc_task *task);
Trond Myklebust9e00abc2011-07-13 19:20:49 -040068#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static void call_status(struct rpc_task *task);
Trond Myklebust940e3312005-11-09 21:45:24 -050070static void call_transmit_status(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071static void call_refresh(struct rpc_task *task);
72static void call_refreshresult(struct rpc_task *task);
73static void call_timeout(struct rpc_task *task);
74static void call_connect(struct rpc_task *task);
75static void call_connect_status(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Chuck Leverb0e1c572008-05-21 17:09:19 -040077static __be32 *rpc_encode_header(struct rpc_task *task);
78static __be32 *rpc_verify_header(struct rpc_task *task);
Chuck Levercaabea82009-12-03 15:58:56 -050079static int rpc_ping(struct rpc_clnt *clnt);
Trond Myklebust64c91a12007-06-23 10:17:16 -040080
Trond Myklebust188fef12007-06-16 14:18:40 -040081static void rpc_register_client(struct rpc_clnt *clnt)
82{
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +040083 struct sunrpc_net *sn = net_generic(clnt->cl_xprt->xprt_net, sunrpc_net_id);
84
85 spin_lock(&sn->rpc_client_lock);
86 list_add(&clnt->cl_clients, &sn->all_clients);
87 spin_unlock(&sn->rpc_client_lock);
Trond Myklebust188fef12007-06-16 14:18:40 -040088}
89
90static void rpc_unregister_client(struct rpc_clnt *clnt)
91{
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +040092 struct sunrpc_net *sn = net_generic(clnt->cl_xprt->xprt_net, sunrpc_net_id);
93
94 spin_lock(&sn->rpc_client_lock);
Trond Myklebust188fef12007-06-16 14:18:40 -040095 list_del(&clnt->cl_clients);
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +040096 spin_unlock(&sn->rpc_client_lock);
Trond Myklebust188fef12007-06-16 14:18:40 -040097}
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +040099static void __rpc_clnt_remove_pipedir(struct rpc_clnt *clnt)
100{
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400101 if (clnt->cl_dentry) {
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +0400102 if (clnt->cl_auth && clnt->cl_auth->au_ops->pipes_destroy)
103 clnt->cl_auth->au_ops->pipes_destroy(clnt->cl_auth);
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400104 rpc_remove_client_dir(clnt->cl_dentry);
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +0400105 }
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400106 clnt->cl_dentry = NULL;
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400107}
108
109static void rpc_clnt_remove_pipedir(struct rpc_clnt *clnt)
110{
111 struct super_block *pipefs_sb;
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400112
113 pipefs_sb = rpc_get_sb_net(clnt->cl_xprt->xprt_net);
114 if (pipefs_sb) {
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400115 __rpc_clnt_remove_pipedir(clnt);
116 rpc_put_sb_net(clnt->cl_xprt->xprt_net);
117 }
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400118}
119
120static struct dentry *rpc_setup_pipedir_sb(struct super_block *sb,
121 struct rpc_clnt *clnt, char *dir_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Trond Myklebustf1345852005-09-23 11:08:25 -0400123 static uint32_t clntid;
Trond Myklebust23ac6582009-08-09 15:14:25 -0400124 char name[15];
125 struct qstr q = {
126 .name = name,
127 };
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400128 struct dentry *dir, *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 int error;
130
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400131 dir = rpc_d_lookup_sb(sb, dir_name);
132 if (dir == NULL)
133 return dir;
134 for (;;) {
135 q.len = snprintf(name, sizeof(name), "clnt%x", (unsigned int)clntid++);
136 name[sizeof(name) - 1] = '\0';
137 q.hash = full_name_hash(q.name, q.len);
138 dentry = rpc_create_client_dir(dir, &q, clnt);
139 if (!IS_ERR(dentry))
140 break;
141 error = PTR_ERR(dentry);
142 if (error != -EEXIST) {
143 printk(KERN_INFO "RPC: Couldn't create pipefs entry"
144 " %s/%s, error %d\n",
145 dir_name, name, error);
146 break;
147 }
148 }
149 dput(dir);
150 return dentry;
151}
152
153static int
154rpc_setup_pipedir(struct rpc_clnt *clnt, char *dir_name)
155{
156 struct super_block *pipefs_sb;
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400157 struct dentry *dentry;
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400158
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400159 clnt->cl_dentry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 if (dir_name == NULL)
161 return 0;
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400162 pipefs_sb = rpc_get_sb_net(clnt->cl_xprt->xprt_net);
Stanislav Kinsbursky70fe25b2012-01-11 19:18:34 +0400163 if (!pipefs_sb)
164 return 0;
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400165 dentry = rpc_setup_pipedir_sb(pipefs_sb, clnt, dir_name);
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400166 rpc_put_sb_net(clnt->cl_xprt->xprt_net);
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400167 if (IS_ERR(dentry))
168 return PTR_ERR(dentry);
169 clnt->cl_dentry = dentry;
Trond Myklebust23ac6582009-08-09 15:14:25 -0400170 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +0400173static int __rpc_pipefs_event(struct rpc_clnt *clnt, unsigned long event,
174 struct super_block *sb)
175{
176 struct dentry *dentry;
177 int err = 0;
178
179 switch (event) {
180 case RPC_PIPEFS_MOUNT:
181 if (clnt->cl_program->pipe_dir_name == NULL)
182 break;
183 dentry = rpc_setup_pipedir_sb(sb, clnt,
184 clnt->cl_program->pipe_dir_name);
185 BUG_ON(dentry == NULL);
186 if (IS_ERR(dentry))
187 return PTR_ERR(dentry);
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400188 clnt->cl_dentry = dentry;
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +0400189 if (clnt->cl_auth->au_ops->pipes_create) {
190 err = clnt->cl_auth->au_ops->pipes_create(clnt->cl_auth);
191 if (err)
192 __rpc_clnt_remove_pipedir(clnt);
193 }
194 break;
195 case RPC_PIPEFS_UMOUNT:
196 __rpc_clnt_remove_pipedir(clnt);
197 break;
198 default:
199 printk(KERN_ERR "%s: unknown event: %ld\n", __func__, event);
200 return -ENOTSUPP;
201 }
202 return err;
203}
204
205static int rpc_pipefs_event(struct notifier_block *nb, unsigned long event,
206 void *ptr)
207{
208 struct super_block *sb = ptr;
209 struct rpc_clnt *clnt;
210 int error = 0;
211 struct sunrpc_net *sn = net_generic(sb->s_fs_info, sunrpc_net_id);
212
213 spin_lock(&sn->rpc_client_lock);
214 list_for_each_entry(clnt, &sn->all_clients, cl_clients) {
215 error = __rpc_pipefs_event(clnt, event, sb);
216 if (error)
217 break;
218 }
219 spin_unlock(&sn->rpc_client_lock);
220 return error;
221}
222
223static struct notifier_block rpc_clients_block = {
224 .notifier_call = rpc_pipefs_event,
225};
226
227int rpc_clients_notifier_register(void)
228{
229 return rpc_pipefs_notifier_register(&rpc_clients_block);
230}
231
232void rpc_clients_notifier_unregister(void)
233{
234 return rpc_pipefs_notifier_unregister(&rpc_clients_block);
235}
236
Trond Myklebust698b6d02007-12-20 16:03:53 -0500237static struct rpc_clnt * rpc_new_client(const struct rpc_create_args *args, struct rpc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
Trond Myklebust698b6d02007-12-20 16:03:53 -0500239 struct rpc_program *program = args->program;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 struct rpc_version *version;
241 struct rpc_clnt *clnt = NULL;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000242 struct rpc_auth *auth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 int err;
Chuck Lever06b8d252007-09-11 18:00:20 -0400244 size_t len;
245
246 /* sanity check the name before trying to print it */
247 err = -EINVAL;
Trond Myklebust698b6d02007-12-20 16:03:53 -0500248 len = strlen(args->servername);
Chuck Lever06b8d252007-09-11 18:00:20 -0400249 if (len > RPC_MAXNETNAMELEN)
250 goto out_no_rpciod;
251 len++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Chuck Lever46121cf2007-01-31 12:14:08 -0500253 dprintk("RPC: creating %s client for %s (xprt %p)\n",
Trond Myklebust698b6d02007-12-20 16:03:53 -0500254 program->name, args->servername, xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Trond Myklebust4ada5392007-06-14 17:26:17 -0400256 err = rpciod_up();
257 if (err)
258 goto out_no_rpciod;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 err = -EINVAL;
260 if (!xprt)
Adrian Bunk712917d2006-03-13 21:20:47 -0800261 goto out_no_xprt;
Trond Myklebust698b6d02007-12-20 16:03:53 -0500262
263 if (args->version >= program->nrvers)
264 goto out_err;
265 version = program->version[args->version];
266 if (version == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 goto out_err;
268
269 err = -ENOMEM;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700270 clnt = kzalloc(sizeof(*clnt), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (!clnt)
272 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 clnt->cl_parent = clnt;
274
275 clnt->cl_server = clnt->cl_inline_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (len > sizeof(clnt->cl_inline_name)) {
277 char *buf = kmalloc(len, GFP_KERNEL);
Trond Myklebust698b6d02007-12-20 16:03:53 -0500278 if (buf != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 clnt->cl_server = buf;
280 else
281 len = sizeof(clnt->cl_inline_name);
282 }
Trond Myklebust698b6d02007-12-20 16:03:53 -0500283 strlcpy(clnt->cl_server, args->servername, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 clnt->cl_xprt = xprt;
286 clnt->cl_procinfo = version->procs;
287 clnt->cl_maxproc = version->nrprocs;
288 clnt->cl_protname = program->name;
Benny Halevyd5b337b2008-09-28 09:21:26 +0300289 clnt->cl_prog = args->prognumber ? : program->number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 clnt->cl_vers = version->number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 clnt->cl_stats = program->stats;
Chuck Lever11c556b2006-03-20 13:44:22 -0500292 clnt->cl_metrics = rpc_alloc_iostats(clnt);
Trond Myklebust23bf85b2006-11-21 10:40:23 -0500293 err = -ENOMEM;
294 if (clnt->cl_metrics == NULL)
295 goto out_no_stats;
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500296 clnt->cl_program = program;
Trond Myklebust6529eba2007-06-14 16:40:14 -0400297 INIT_LIST_HEAD(&clnt->cl_tasks);
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400298 spin_lock_init(&clnt->cl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Chuck Leverec739ef2006-08-22 20:06:15 -0400300 if (!xprt_bound(clnt->cl_xprt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 clnt->cl_autobind = 1;
302
Trond Myklebustba7392b2007-12-20 16:03:55 -0500303 clnt->cl_timeout = xprt->timeout;
304 if (args->timeout != NULL) {
305 memcpy(&clnt->cl_timeout_default, args->timeout,
306 sizeof(clnt->cl_timeout_default));
307 clnt->cl_timeout = &clnt->cl_timeout_default;
308 }
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 clnt->cl_rtt = &clnt->cl_rtt_default;
Trond Myklebustba7392b2007-12-20 16:03:55 -0500311 rpc_init_rtt(&clnt->cl_rtt_default, clnt->cl_timeout->to_initval);
Olga Kornievskaia608207e2008-12-23 16:17:40 -0500312 clnt->cl_principal = NULL;
313 if (args->client_name) {
314 clnt->cl_principal = kstrdup(args->client_name, GFP_KERNEL);
315 if (!clnt->cl_principal)
316 goto out_no_principal;
317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Trond Myklebust006abe82010-09-12 19:55:25 -0400319 atomic_set(&clnt->cl_count, 1);
Trond Myklebust34f52e32007-06-14 16:40:31 -0400320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 err = rpc_setup_pipedir(clnt, program->pipe_dir_name);
322 if (err < 0)
323 goto out_no_path;
324
Trond Myklebust698b6d02007-12-20 16:03:53 -0500325 auth = rpcauth_create(args->authflavor, clnt);
J. Bruce Fields6a192752005-06-22 17:16:23 +0000326 if (IS_ERR(auth)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 printk(KERN_INFO "RPC: Couldn't create auth handle (flavor %u)\n",
Trond Myklebust698b6d02007-12-20 16:03:53 -0500328 args->authflavor);
J. Bruce Fields6a192752005-06-22 17:16:23 +0000329 err = PTR_ERR(auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 goto out_no_auth;
331 }
332
333 /* save the nodename */
Cedric Le Goater63ffc232008-10-03 23:41:51 -0400334 clnt->cl_nodelen = strlen(init_utsname()->nodename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 if (clnt->cl_nodelen > UNX_MAXNODENAME)
336 clnt->cl_nodelen = UNX_MAXNODENAME;
Cedric Le Goater63ffc232008-10-03 23:41:51 -0400337 memcpy(clnt->cl_nodename, init_utsname()->nodename, clnt->cl_nodelen);
Trond Myklebust6529eba2007-06-14 16:40:14 -0400338 rpc_register_client(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return clnt;
340
341out_no_auth:
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400342 rpc_clnt_remove_pipedir(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343out_no_path:
Olga Kornievskaia608207e2008-12-23 16:17:40 -0500344 kfree(clnt->cl_principal);
345out_no_principal:
Trond Myklebust23bf85b2006-11-21 10:40:23 -0500346 rpc_free_iostats(clnt->cl_metrics);
347out_no_stats:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (clnt->cl_server != clnt->cl_inline_name)
349 kfree(clnt->cl_server);
350 kfree(clnt);
351out_err:
Trond Myklebust6b6ca862006-09-05 12:55:57 -0400352 xprt_put(xprt);
Adrian Bunk712917d2006-03-13 21:20:47 -0800353out_no_xprt:
Trond Myklebust4ada5392007-06-14 17:26:17 -0400354 rpciod_down();
355out_no_rpciod:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return ERR_PTR(err);
357}
358
Chuck Leverc2866762006-08-22 20:06:20 -0400359/*
360 * rpc_create - create an RPC client and transport with one call
361 * @args: rpc_clnt create argument structure
362 *
363 * Creates and initializes an RPC transport and an RPC client.
364 *
365 * It can ping the server in order to determine if it is up, and to see if
366 * it supports this program and version. RPC_CLNT_CREATE_NOPING disables
367 * this behavior so asynchronous tasks can also use rpc_create.
368 */
369struct rpc_clnt *rpc_create(struct rpc_create_args *args)
370{
371 struct rpc_xprt *xprt;
372 struct rpc_clnt *clnt;
\"Talpey, Thomas\3c341b0b2007-09-10 13:47:07 -0400373 struct xprt_create xprtargs = {
Pavel Emelyanov9a23e332010-09-29 16:05:12 +0400374 .net = args->net,
\"Talpey, Thomas\4fa016e2007-09-10 13:47:57 -0400375 .ident = args->protocol,
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +0200376 .srcaddr = args->saddress,
Frank van Maarseveen96802a02007-07-08 13:08:54 +0200377 .dstaddr = args->address,
378 .addrlen = args->addrsize,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +0300379 .bc_xprt = args->bc_xprt,
Frank van Maarseveen96802a02007-07-08 13:08:54 +0200380 };
Chuck Lever510deb02007-12-10 14:56:24 -0500381 char servername[48];
Chuck Leverc2866762006-08-22 20:06:20 -0400382
Chuck Leverc2866762006-08-22 20:06:20 -0400383 /*
Chuck Lever43780b82007-07-01 12:13:22 -0400384 * If the caller chooses not to specify a hostname, whip
385 * up a string representation of the passed-in address.
386 */
387 if (args->servername == NULL) {
Chuck Lever176e21e2011-05-09 15:22:44 -0400388 struct sockaddr_un *sun =
389 (struct sockaddr_un *)args->address;
Chuck Leverda09eb92011-05-09 15:22:25 -0400390 struct sockaddr_in *sin =
391 (struct sockaddr_in *)args->address;
392 struct sockaddr_in6 *sin6 =
393 (struct sockaddr_in6 *)args->address;
394
Chuck Lever510deb02007-12-10 14:56:24 -0500395 servername[0] = '\0';
396 switch (args->address->sa_family) {
Chuck Lever176e21e2011-05-09 15:22:44 -0400397 case AF_LOCAL:
398 snprintf(servername, sizeof(servername), "%s",
399 sun->sun_path);
400 break;
Chuck Leverda09eb92011-05-09 15:22:25 -0400401 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -0700402 snprintf(servername, sizeof(servername), "%pI4",
403 &sin->sin_addr.s_addr);
Chuck Lever510deb02007-12-10 14:56:24 -0500404 break;
Chuck Leverda09eb92011-05-09 15:22:25 -0400405 case AF_INET6:
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700406 snprintf(servername, sizeof(servername), "%pI6",
Chuck Leverda09eb92011-05-09 15:22:25 -0400407 &sin6->sin6_addr);
Chuck Lever510deb02007-12-10 14:56:24 -0500408 break;
Chuck Lever510deb02007-12-10 14:56:24 -0500409 default:
410 /* caller wants default server name, but
411 * address family isn't recognized. */
412 return ERR_PTR(-EINVAL);
413 }
Chuck Lever43780b82007-07-01 12:13:22 -0400414 args->servername = servername;
415 }
416
Chuck Lever510deb02007-12-10 14:56:24 -0500417 xprt = xprt_create_transport(&xprtargs);
418 if (IS_ERR(xprt))
419 return (struct rpc_clnt *)xprt;
420
Chuck Lever43780b82007-07-01 12:13:22 -0400421 /*
Chuck Leverc2866762006-08-22 20:06:20 -0400422 * By default, kernel RPC client connects from a reserved port.
423 * CAP_NET_BIND_SERVICE will not be set for unprivileged requesters,
424 * but it is always enabled for rpciod, which handles the connect
425 * operation.
426 */
427 xprt->resvport = 1;
428 if (args->flags & RPC_CLNT_CREATE_NONPRIVPORT)
429 xprt->resvport = 0;
430
Trond Myklebust698b6d02007-12-20 16:03:53 -0500431 clnt = rpc_new_client(args, xprt);
Chuck Leverc2866762006-08-22 20:06:20 -0400432 if (IS_ERR(clnt))
433 return clnt;
434
435 if (!(args->flags & RPC_CLNT_CREATE_NOPING)) {
Chuck Levercaabea82009-12-03 15:58:56 -0500436 int err = rpc_ping(clnt);
Chuck Leverc2866762006-08-22 20:06:20 -0400437 if (err != 0) {
438 rpc_shutdown_client(clnt);
439 return ERR_PTR(err);
440 }
441 }
442
443 clnt->cl_softrtry = 1;
444 if (args->flags & RPC_CLNT_CREATE_HARDRTRY)
445 clnt->cl_softrtry = 0;
446
Chuck Leverc2866762006-08-22 20:06:20 -0400447 if (args->flags & RPC_CLNT_CREATE_AUTOBIND)
448 clnt->cl_autobind = 1;
Chuck Lever43d78ef2007-02-06 18:26:11 -0500449 if (args->flags & RPC_CLNT_CREATE_DISCRTRY)
450 clnt->cl_discrtry = 1;
Olga Kornievskaiab6b61522008-06-09 16:51:31 -0400451 if (!(args->flags & RPC_CLNT_CREATE_QUIET))
452 clnt->cl_chatty = 1;
Chuck Leverc2866762006-08-22 20:06:20 -0400453
454 return clnt;
455}
Chuck Leverb86acd52006-08-22 20:06:22 -0400456EXPORT_SYMBOL_GPL(rpc_create);
Chuck Leverc2866762006-08-22 20:06:20 -0400457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458/*
459 * This function clones the RPC client structure. It allows us to share the
460 * same transport while varying parameters such as the authentication
461 * flavour.
462 */
463struct rpc_clnt *
464rpc_clone_client(struct rpc_clnt *clnt)
465{
466 struct rpc_clnt *new;
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500467 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Arnaldo Carvalho de Meloe69062b2006-11-21 01:21:34 -0200469 new = kmemdup(clnt, sizeof(*new), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (!new)
471 goto out_no_clnt;
Trond Myklebustd431a5552007-06-17 17:07:54 -0400472 new->cl_parent = clnt;
473 /* Turn off autobind on clones */
474 new->cl_autobind = 0;
475 INIT_LIST_HEAD(&new->cl_tasks);
476 spin_lock_init(&new->cl_lock);
Trond Myklebustba7392b2007-12-20 16:03:55 -0500477 rpc_init_rtt(&new->cl_rtt_default, clnt->cl_timeout->to_initval);
Trond Myklebust23bf85b2006-11-21 10:40:23 -0500478 new->cl_metrics = rpc_alloc_iostats(clnt);
479 if (new->cl_metrics == NULL)
480 goto out_no_stats;
Olga Kornievskaia608207e2008-12-23 16:17:40 -0500481 if (clnt->cl_principal) {
482 new->cl_principal = kstrdup(clnt->cl_principal, GFP_KERNEL);
483 if (new->cl_principal == NULL)
484 goto out_no_principal;
485 }
Trond Myklebust006abe82010-09-12 19:55:25 -0400486 atomic_set(&new->cl_count, 1);
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500487 err = rpc_setup_pipedir(new, clnt->cl_program->pipe_dir_name);
488 if (err != 0)
489 goto out_no_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (new->cl_auth)
491 atomic_inc(&new->cl_auth->au_count);
Trond Myklebustd431a5552007-06-17 17:07:54 -0400492 xprt_get(clnt->cl_xprt);
Trond Myklebust006abe82010-09-12 19:55:25 -0400493 atomic_inc(&clnt->cl_count);
Trond Myklebust6529eba2007-06-14 16:40:14 -0400494 rpc_register_client(new);
Trond Myklebust4ada5392007-06-14 17:26:17 -0400495 rpciod_up();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 return new;
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500497out_no_path:
Olga Kornievskaia608207e2008-12-23 16:17:40 -0500498 kfree(new->cl_principal);
499out_no_principal:
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500500 rpc_free_iostats(new->cl_metrics);
Trond Myklebust23bf85b2006-11-21 10:40:23 -0500501out_no_stats:
502 kfree(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503out_no_clnt:
Harvey Harrison0dc47872008-03-05 20:47:47 -0800504 dprintk("RPC: %s: returned error %d\n", __func__, err);
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500505 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400507EXPORT_SYMBOL_GPL(rpc_clone_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509/*
Trond Myklebust58f96122010-07-31 14:29:08 -0400510 * Kill all tasks for the given client.
511 * XXX: kill their descendants as well?
512 */
513void rpc_killall_tasks(struct rpc_clnt *clnt)
514{
515 struct rpc_task *rovr;
516
517
518 if (list_empty(&clnt->cl_tasks))
519 return;
520 dprintk("RPC: killing all tasks for client %p\n", clnt);
521 /*
522 * Spin lock all_tasks to prevent changes...
523 */
524 spin_lock(&clnt->cl_lock);
525 list_for_each_entry(rovr, &clnt->cl_tasks, tk_task) {
526 if (!RPC_IS_ACTIVATED(rovr))
527 continue;
528 if (!(rovr->tk_flags & RPC_TASK_KILLED)) {
529 rovr->tk_flags |= RPC_TASK_KILLED;
530 rpc_exit(rovr, -EIO);
Stanislav Kinsbursky8e26de22011-03-17 18:54:23 +0300531 if (RPC_IS_QUEUED(rovr))
532 rpc_wake_up_queued_task(rovr->tk_waitqueue,
533 rovr);
Trond Myklebust58f96122010-07-31 14:29:08 -0400534 }
535 }
536 spin_unlock(&clnt->cl_lock);
537}
538EXPORT_SYMBOL_GPL(rpc_killall_tasks);
539
540/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 * Properly shut down an RPC client, terminating all outstanding
Trond Myklebust90c57552007-06-09 19:49:36 -0400542 * requests.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 */
Trond Myklebust4c402b42007-06-14 16:40:32 -0400544void rpc_shutdown_client(struct rpc_clnt *clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Trond Myklebust34f52e32007-06-14 16:40:31 -0400546 dprintk("RPC: shutting down %s client for %s\n",
547 clnt->cl_protname, clnt->cl_server);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Trond Myklebust34f52e32007-06-14 16:40:31 -0400549 while (!list_empty(&clnt->cl_tasks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 rpc_killall_tasks(clnt);
Ingo Molnar532347e2006-01-09 20:52:53 -0800551 wait_event_timeout(destroy_wait,
Trond Myklebust34f52e32007-06-14 16:40:31 -0400552 list_empty(&clnt->cl_tasks), 1*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
554
Trond Myklebust4c402b42007-06-14 16:40:32 -0400555 rpc_release_client(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400557EXPORT_SYMBOL_GPL(rpc_shutdown_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559/*
Trond Myklebust34f52e32007-06-14 16:40:31 -0400560 * Free an RPC client
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 */
Trond Myklebust34f52e32007-06-14 16:40:31 -0400562static void
Trond Myklebust006abe82010-09-12 19:55:25 -0400563rpc_free_client(struct rpc_clnt *clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Chuck Lever46121cf2007-01-31 12:14:08 -0500565 dprintk("RPC: destroying %s client for %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 clnt->cl_protname, clnt->cl_server);
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500567 if (clnt->cl_parent != clnt) {
Trond Myklebust8ad7c892007-06-14 16:40:32 -0400568 rpc_release_client(clnt->cl_parent);
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500569 goto out_free;
570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (clnt->cl_server != clnt->cl_inline_name)
572 kfree(clnt->cl_server);
573out_free:
Trond Myklebust6529eba2007-06-14 16:40:14 -0400574 rpc_unregister_client(clnt);
Stanislav Kinsburskyf5131252012-01-11 19:18:26 +0400575 rpc_clnt_remove_pipedir(clnt);
Chuck Lever11c556b2006-03-20 13:44:22 -0500576 rpc_free_iostats(clnt->cl_metrics);
Olga Kornievskaia608207e2008-12-23 16:17:40 -0500577 kfree(clnt->cl_principal);
Chuck Lever11c556b2006-03-20 13:44:22 -0500578 clnt->cl_metrics = NULL;
Trond Myklebust6b6ca862006-09-05 12:55:57 -0400579 xprt_put(clnt->cl_xprt);
Trond Myklebust4ada5392007-06-14 17:26:17 -0400580 rpciod_down();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 kfree(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
584/*
Trond Myklebust1dd17ec2007-06-26 16:57:41 -0400585 * Free an RPC client
586 */
587static void
Trond Myklebust006abe82010-09-12 19:55:25 -0400588rpc_free_auth(struct rpc_clnt *clnt)
Trond Myklebust1dd17ec2007-06-26 16:57:41 -0400589{
Trond Myklebust1dd17ec2007-06-26 16:57:41 -0400590 if (clnt->cl_auth == NULL) {
Trond Myklebust006abe82010-09-12 19:55:25 -0400591 rpc_free_client(clnt);
Trond Myklebust1dd17ec2007-06-26 16:57:41 -0400592 return;
593 }
594
595 /*
596 * Note: RPCSEC_GSS may need to send NULL RPC calls in order to
597 * release remaining GSS contexts. This mechanism ensures
598 * that it can do so safely.
599 */
Trond Myklebust006abe82010-09-12 19:55:25 -0400600 atomic_inc(&clnt->cl_count);
Trond Myklebust1dd17ec2007-06-26 16:57:41 -0400601 rpcauth_release(clnt->cl_auth);
602 clnt->cl_auth = NULL;
Trond Myklebust006abe82010-09-12 19:55:25 -0400603 if (atomic_dec_and_test(&clnt->cl_count))
604 rpc_free_client(clnt);
Trond Myklebust1dd17ec2007-06-26 16:57:41 -0400605}
606
607/*
Trond Myklebust34f52e32007-06-14 16:40:31 -0400608 * Release reference to the RPC client
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 */
610void
611rpc_release_client(struct rpc_clnt *clnt)
612{
Trond Myklebust34f52e32007-06-14 16:40:31 -0400613 dprintk("RPC: rpc_release_client(%p)\n", clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Trond Myklebust34f52e32007-06-14 16:40:31 -0400615 if (list_empty(&clnt->cl_tasks))
616 wake_up(&destroy_wait);
Trond Myklebust006abe82010-09-12 19:55:25 -0400617 if (atomic_dec_and_test(&clnt->cl_count))
618 rpc_free_auth(clnt);
Trond Myklebust34f52e32007-06-14 16:40:31 -0400619}
620
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000621/**
622 * rpc_bind_new_program - bind a new RPC program to an existing client
Randy Dunlap65b6e422008-02-13 15:03:23 -0800623 * @old: old rpc_client
624 * @program: rpc program to set
625 * @vers: rpc program version
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000626 *
627 * Clones the rpc client and sets up a new RPC program. This is mainly
628 * of use for enabling different RPC programs to share the same transport.
629 * The Sun NFSv2/v3 ACL protocol can do this.
630 */
631struct rpc_clnt *rpc_bind_new_program(struct rpc_clnt *old,
632 struct rpc_program *program,
Chuck Lever89eb21c2007-09-11 18:00:09 -0400633 u32 vers)
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000634{
635 struct rpc_clnt *clnt;
636 struct rpc_version *version;
637 int err;
638
639 BUG_ON(vers >= program->nrvers || !program->version[vers]);
640 version = program->version[vers];
641 clnt = rpc_clone_client(old);
642 if (IS_ERR(clnt))
643 goto out;
644 clnt->cl_procinfo = version->procs;
645 clnt->cl_maxproc = version->nrprocs;
646 clnt->cl_protname = program->name;
647 clnt->cl_prog = program->number;
648 clnt->cl_vers = version->number;
649 clnt->cl_stats = program->stats;
Chuck Levercaabea82009-12-03 15:58:56 -0500650 err = rpc_ping(clnt);
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000651 if (err != 0) {
652 rpc_shutdown_client(clnt);
653 clnt = ERR_PTR(err);
654 }
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800655out:
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000656 return clnt;
657}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400658EXPORT_SYMBOL_GPL(rpc_bind_new_program);
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000659
Trond Myklebust58f96122010-07-31 14:29:08 -0400660void rpc_task_release_client(struct rpc_task *task)
661{
662 struct rpc_clnt *clnt = task->tk_client;
663
664 if (clnt != NULL) {
665 /* Remove from client task list */
666 spin_lock(&clnt->cl_lock);
667 list_del(&task->tk_task);
668 spin_unlock(&clnt->cl_lock);
669 task->tk_client = NULL;
670
671 rpc_release_client(clnt);
672 }
673}
674
675static
676void rpc_task_set_client(struct rpc_task *task, struct rpc_clnt *clnt)
677{
678 if (clnt != NULL) {
679 rpc_task_release_client(task);
680 task->tk_client = clnt;
Trond Myklebust006abe82010-09-12 19:55:25 -0400681 atomic_inc(&clnt->cl_count);
Trond Myklebust58f96122010-07-31 14:29:08 -0400682 if (clnt->cl_softrtry)
683 task->tk_flags |= RPC_TASK_SOFT;
684 /* Add to the client's list of all tasks */
685 spin_lock(&clnt->cl_lock);
686 list_add_tail(&task->tk_task, &clnt->cl_tasks);
687 spin_unlock(&clnt->cl_lock);
688 }
689}
690
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000691void rpc_task_reset_client(struct rpc_task *task, struct rpc_clnt *clnt)
692{
693 rpc_task_release_client(task);
694 rpc_task_set_client(task, clnt);
695}
696EXPORT_SYMBOL_GPL(rpc_task_reset_client);
697
698
Trond Myklebust58f96122010-07-31 14:29:08 -0400699static void
700rpc_task_set_rpc_message(struct rpc_task *task, const struct rpc_message *msg)
701{
702 if (msg != NULL) {
703 task->tk_msg.rpc_proc = msg->rpc_proc;
704 task->tk_msg.rpc_argp = msg->rpc_argp;
705 task->tk_msg.rpc_resp = msg->rpc_resp;
Trond Myklebusta17c2152010-07-31 14:29:08 -0400706 if (msg->rpc_cred != NULL)
707 task->tk_msg.rpc_cred = get_rpccred(msg->rpc_cred);
Trond Myklebust58f96122010-07-31 14:29:08 -0400708 }
709}
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711/*
712 * Default callback for async RPC calls
713 */
714static void
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100715rpc_default_callback(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
717}
718
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100719static const struct rpc_call_ops rpc_default_ops = {
720 .rpc_call_done = rpc_default_callback,
721};
722
Trond Myklebustc970aa82007-07-14 15:39:59 -0400723/**
724 * rpc_run_task - Allocate a new RPC task, then run rpc_execute against it
725 * @task_setup_data: pointer to task initialisation data
726 */
727struct rpc_task *rpc_run_task(const struct rpc_task_setup *task_setup_data)
Trond Myklebust6e5b70e2007-06-12 10:02:37 -0400728{
Trond Myklebust19445b92010-04-16 16:41:10 -0400729 struct rpc_task *task;
Trond Myklebust6e5b70e2007-06-12 10:02:37 -0400730
Trond Myklebust84115e12007-07-14 15:39:59 -0400731 task = rpc_new_task(task_setup_data);
Trond Myklebust19445b92010-04-16 16:41:10 -0400732 if (IS_ERR(task))
Trond Myklebust50859252007-10-25 18:19:37 -0400733 goto out;
Trond Myklebust6e5b70e2007-06-12 10:02:37 -0400734
Trond Myklebust58f96122010-07-31 14:29:08 -0400735 rpc_task_set_client(task, task_setup_data->rpc_client);
736 rpc_task_set_rpc_message(task, task_setup_data->rpc_message);
737
Trond Myklebust58f96122010-07-31 14:29:08 -0400738 if (task->tk_action == NULL)
739 rpc_call_start(task);
740
Trond Myklebust6e5b70e2007-06-12 10:02:37 -0400741 atomic_inc(&task->tk_count);
742 rpc_execute(task);
Trond Myklebust6e5b70e2007-06-12 10:02:37 -0400743out:
Trond Myklebust19445b92010-04-16 16:41:10 -0400744 return task;
Trond Myklebust6e5b70e2007-06-12 10:02:37 -0400745}
Trond Myklebustc970aa82007-07-14 15:39:59 -0400746EXPORT_SYMBOL_GPL(rpc_run_task);
Trond Myklebust6e5b70e2007-06-12 10:02:37 -0400747
748/**
749 * rpc_call_sync - Perform a synchronous RPC call
750 * @clnt: pointer to RPC client
751 * @msg: RPC call parameters
752 * @flags: RPC call flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 */
Trond Myklebustcbc20052008-02-14 11:11:30 -0500754int rpc_call_sync(struct rpc_clnt *clnt, const struct rpc_message *msg, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
756 struct rpc_task *task;
Trond Myklebust84115e12007-07-14 15:39:59 -0400757 struct rpc_task_setup task_setup_data = {
758 .rpc_client = clnt,
759 .rpc_message = msg,
760 .callback_ops = &rpc_default_ops,
761 .flags = flags,
762 };
Trond Myklebust6e5b70e2007-06-12 10:02:37 -0400763 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 BUG_ON(flags & RPC_TASK_ASYNC);
766
Trond Myklebustc970aa82007-07-14 15:39:59 -0400767 task = rpc_run_task(&task_setup_data);
Trond Myklebust6e5b70e2007-06-12 10:02:37 -0400768 if (IS_ERR(task))
769 return PTR_ERR(task);
Trond Myklebuste60859a2006-01-03 09:55:10 +0100770 status = task->tk_status;
Trond Myklebustbde8f002007-01-24 11:54:53 -0800771 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 return status;
773}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400774EXPORT_SYMBOL_GPL(rpc_call_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Trond Myklebust6e5b70e2007-06-12 10:02:37 -0400776/**
777 * rpc_call_async - Perform an asynchronous RPC call
778 * @clnt: pointer to RPC client
779 * @msg: RPC call parameters
780 * @flags: RPC call flags
Randy Dunlap65b6e422008-02-13 15:03:23 -0800781 * @tk_ops: RPC call ops
Trond Myklebust6e5b70e2007-06-12 10:02:37 -0400782 * @data: user call data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 */
784int
Trond Myklebustcbc20052008-02-14 11:11:30 -0500785rpc_call_async(struct rpc_clnt *clnt, const struct rpc_message *msg, int flags,
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100786 const struct rpc_call_ops *tk_ops, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
788 struct rpc_task *task;
Trond Myklebust84115e12007-07-14 15:39:59 -0400789 struct rpc_task_setup task_setup_data = {
790 .rpc_client = clnt,
791 .rpc_message = msg,
792 .callback_ops = tk_ops,
793 .callback_data = data,
794 .flags = flags|RPC_TASK_ASYNC,
795 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Trond Myklebustc970aa82007-07-14 15:39:59 -0400797 task = rpc_run_task(&task_setup_data);
Trond Myklebust6e5b70e2007-06-12 10:02:37 -0400798 if (IS_ERR(task))
799 return PTR_ERR(task);
800 rpc_put_task(task);
801 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400803EXPORT_SYMBOL_GPL(rpc_call_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Trond Myklebust9e00abc2011-07-13 19:20:49 -0400805#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -0400806/**
807 * rpc_run_bc_task - Allocate a new RPC task for backchannel use, then run
808 * rpc_execute against it
Jaswinder Singh Rajput7a73fdd2009-09-24 14:58:42 -0400809 * @req: RPC request
810 * @tk_ops: RPC call ops
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -0400811 */
812struct rpc_task *rpc_run_bc_task(struct rpc_rqst *req,
Jaswinder Singh Rajput7a73fdd2009-09-24 14:58:42 -0400813 const struct rpc_call_ops *tk_ops)
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -0400814{
815 struct rpc_task *task;
816 struct xdr_buf *xbufp = &req->rq_snd_buf;
817 struct rpc_task_setup task_setup_data = {
818 .callback_ops = tk_ops,
819 };
820
821 dprintk("RPC: rpc_run_bc_task req= %p\n", req);
822 /*
823 * Create an rpc_task to send the data
824 */
825 task = rpc_new_task(&task_setup_data);
Trond Myklebust19445b92010-04-16 16:41:10 -0400826 if (IS_ERR(task)) {
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -0400827 xprt_free_bc_request(req);
828 goto out;
829 }
830 task->tk_rqstp = req;
831
832 /*
833 * Set up the xdr_buf length.
834 * This also indicates that the buffer is XDR encoded already.
835 */
836 xbufp->len = xbufp->head[0].iov_len + xbufp->page_len +
837 xbufp->tail[0].iov_len;
838
839 task->tk_action = call_bc_transmit;
840 atomic_inc(&task->tk_count);
841 BUG_ON(atomic_read(&task->tk_count) != 2);
842 rpc_execute(task);
843
844out:
845 dprintk("RPC: rpc_run_bc_task: task= %p\n", task);
846 return task;
847}
Trond Myklebust9e00abc2011-07-13 19:20:49 -0400848#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -0400849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850void
Trond Myklebust77de2c52007-10-25 18:40:21 -0400851rpc_call_start(struct rpc_task *task)
852{
853 task->tk_action = call_start;
854}
855EXPORT_SYMBOL_GPL(rpc_call_start);
856
Chuck Levered394402006-08-22 20:06:17 -0400857/**
858 * rpc_peeraddr - extract remote peer address from clnt's xprt
859 * @clnt: RPC client structure
860 * @buf: target buffer
Randy Dunlap65b6e422008-02-13 15:03:23 -0800861 * @bufsize: length of target buffer
Chuck Levered394402006-08-22 20:06:17 -0400862 *
863 * Returns the number of bytes that are actually in the stored address.
864 */
865size_t rpc_peeraddr(struct rpc_clnt *clnt, struct sockaddr *buf, size_t bufsize)
866{
867 size_t bytes;
868 struct rpc_xprt *xprt = clnt->cl_xprt;
869
870 bytes = sizeof(xprt->addr);
871 if (bytes > bufsize)
872 bytes = bufsize;
873 memcpy(buf, &clnt->cl_xprt->addr, bytes);
Chuck Leverc4efcb12006-08-22 20:06:19 -0400874 return xprt->addrlen;
Chuck Levered394402006-08-22 20:06:17 -0400875}
Chuck Leverb86acd52006-08-22 20:06:22 -0400876EXPORT_SYMBOL_GPL(rpc_peeraddr);
Chuck Levered394402006-08-22 20:06:17 -0400877
Chuck Leverf425eba2006-08-22 20:06:18 -0400878/**
879 * rpc_peeraddr2str - return remote peer address in printable format
880 * @clnt: RPC client structure
881 * @format: address format
882 *
883 */
Chuck Leverb454ae92008-01-07 18:34:48 -0500884const char *rpc_peeraddr2str(struct rpc_clnt *clnt,
885 enum rpc_display_format_t format)
Chuck Leverf425eba2006-08-22 20:06:18 -0400886{
887 struct rpc_xprt *xprt = clnt->cl_xprt;
Chuck Lever7559c7a2006-12-05 16:35:37 -0500888
889 if (xprt->address_strings[format] != NULL)
890 return xprt->address_strings[format];
891 else
892 return "unprintable";
Chuck Leverf425eba2006-08-22 20:06:18 -0400893}
Chuck Leverb86acd52006-08-22 20:06:22 -0400894EXPORT_SYMBOL_GPL(rpc_peeraddr2str);
Chuck Leverf425eba2006-08-22 20:06:18 -0400895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896void
897rpc_setbufsize(struct rpc_clnt *clnt, unsigned int sndsize, unsigned int rcvsize)
898{
899 struct rpc_xprt *xprt = clnt->cl_xprt;
Chuck Lever470056c2005-08-25 16:25:56 -0700900 if (xprt->ops->set_buffer_size)
901 xprt->ops->set_buffer_size(xprt, sndsize, rcvsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400903EXPORT_SYMBOL_GPL(rpc_setbufsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905/*
906 * Return size of largest payload RPC client can support, in bytes
907 *
908 * For stream transports, this is one RPC record fragment (see RFC
909 * 1831), as we don't support multi-record requests yet. For datagram
910 * transports, this is the size of an IP packet minus the IP, UDP, and
911 * RPC header sizes.
912 */
913size_t rpc_max_payload(struct rpc_clnt *clnt)
914{
915 return clnt->cl_xprt->max_payload;
916}
Chuck Leverb86acd52006-08-22 20:06:22 -0400917EXPORT_SYMBOL_GPL(rpc_max_payload);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Chuck Lever35f5a422006-01-03 09:55:50 +0100919/**
920 * rpc_force_rebind - force transport to check that remote port is unchanged
921 * @clnt: client to rebind
922 *
923 */
924void rpc_force_rebind(struct rpc_clnt *clnt)
925{
926 if (clnt->cl_autobind)
Chuck Leverec739ef2006-08-22 20:06:15 -0400927 xprt_clear_bound(clnt->cl_xprt);
Chuck Lever35f5a422006-01-03 09:55:50 +0100928}
Chuck Leverb86acd52006-08-22 20:06:22 -0400929EXPORT_SYMBOL_GPL(rpc_force_rebind);
Chuck Lever35f5a422006-01-03 09:55:50 +0100930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931/*
Andy Adamsonaae20062009-04-01 09:22:40 -0400932 * Restart an (async) RPC call from the call_prepare state.
933 * Usually called from within the exit handler.
934 */
Trond Myklebustf1f88fc2010-07-31 14:29:07 -0400935int
Andy Adamsonaae20062009-04-01 09:22:40 -0400936rpc_restart_call_prepare(struct rpc_task *task)
937{
938 if (RPC_ASSASSINATED(task))
Trond Myklebustf1f88fc2010-07-31 14:29:07 -0400939 return 0;
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700940 task->tk_action = call_start;
941 if (task->tk_ops->rpc_call_prepare != NULL)
942 task->tk_action = rpc_prepare_task;
Trond Myklebustf1f88fc2010-07-31 14:29:07 -0400943 return 1;
Andy Adamsonaae20062009-04-01 09:22:40 -0400944}
945EXPORT_SYMBOL_GPL(rpc_restart_call_prepare);
946
947/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 * Restart an (async) RPC call. Usually called from within the
949 * exit handler.
950 */
Trond Myklebustf1f88fc2010-07-31 14:29:07 -0400951int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952rpc_restart_call(struct rpc_task *task)
953{
954 if (RPC_ASSASSINATED(task))
Trond Myklebustf1f88fc2010-07-31 14:29:07 -0400955 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 task->tk_action = call_start;
Trond Myklebustf1f88fc2010-07-31 14:29:07 -0400957 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400959EXPORT_SYMBOL_GPL(rpc_restart_call);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Chuck Lever3748f1e2008-05-21 17:09:12 -0400961#ifdef RPC_DEBUG
962static const char *rpc_proc_name(const struct rpc_task *task)
963{
964 const struct rpc_procinfo *proc = task->tk_msg.rpc_proc;
965
966 if (proc) {
967 if (proc->p_name)
968 return proc->p_name;
969 else
970 return "NULL";
971 } else
972 return "no proc";
973}
974#endif
975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976/*
977 * 0. Initial state
978 *
979 * Other FSM states can be visited zero or more times, but
980 * this state is visited exactly once for each RPC.
981 */
982static void
983call_start(struct rpc_task *task)
984{
985 struct rpc_clnt *clnt = task->tk_client;
986
Chuck Lever3748f1e2008-05-21 17:09:12 -0400987 dprintk("RPC: %5u call_start %s%d proc %s (%s)\n", task->tk_pid,
Chuck Lever46121cf2007-01-31 12:14:08 -0500988 clnt->cl_protname, clnt->cl_vers,
Chuck Lever3748f1e2008-05-21 17:09:12 -0400989 rpc_proc_name(task),
Chuck Lever46121cf2007-01-31 12:14:08 -0500990 (RPC_IS_ASYNC(task) ? "async" : "sync"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 /* Increment call count */
993 task->tk_msg.rpc_proc->p_count++;
994 clnt->cl_stats->rpccnt++;
995 task->tk_action = call_reserve;
996}
997
998/*
999 * 1. Reserve an RPC call slot
1000 */
1001static void
1002call_reserve(struct rpc_task *task)
1003{
Chuck Lever46121cf2007-01-31 12:14:08 -05001004 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 task->tk_status = 0;
1007 task->tk_action = call_reserveresult;
1008 xprt_reserve(task);
1009}
1010
1011/*
1012 * 1b. Grok the result of xprt_reserve()
1013 */
1014static void
1015call_reserveresult(struct rpc_task *task)
1016{
1017 int status = task->tk_status;
1018
Chuck Lever46121cf2007-01-31 12:14:08 -05001019 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 /*
1022 * After a call to xprt_reserve(), we must have either
1023 * a request slot or else an error status.
1024 */
1025 task->tk_status = 0;
1026 if (status >= 0) {
1027 if (task->tk_rqstp) {
J. Bruce Fieldsf2d47d02010-09-12 19:55:25 -04001028 task->tk_action = call_refresh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 return;
1030 }
1031
1032 printk(KERN_ERR "%s: status=%d, but no request slot, exiting\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001033 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 rpc_exit(task, -EIO);
1035 return;
1036 }
1037
1038 /*
1039 * Even though there was an error, we may have acquired
1040 * a request slot somehow. Make sure not to leak it.
1041 */
1042 if (task->tk_rqstp) {
1043 printk(KERN_ERR "%s: status=%d, request allocated anyway\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001044 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 xprt_release(task);
1046 }
1047
1048 switch (status) {
1049 case -EAGAIN: /* woken up; retry */
1050 task->tk_action = call_reserve;
1051 return;
1052 case -EIO: /* probably a shutdown */
1053 break;
1054 default:
1055 printk(KERN_ERR "%s: unrecognized error %d, exiting\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001056 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 break;
1058 }
1059 rpc_exit(task, status);
1060}
1061
1062/*
J. Bruce Fields55576242010-09-12 19:55:25 -04001063 * 2. Bind and/or refresh the credentials
1064 */
1065static void
1066call_refresh(struct rpc_task *task)
1067{
1068 dprint_status(task);
1069
1070 task->tk_action = call_refreshresult;
1071 task->tk_status = 0;
1072 task->tk_client->cl_stats->rpcauthrefresh++;
1073 rpcauth_refreshcred(task);
1074}
1075
1076/*
1077 * 2a. Process the results of a credential refresh
1078 */
1079static void
1080call_refreshresult(struct rpc_task *task)
1081{
1082 int status = task->tk_status;
1083
1084 dprint_status(task);
1085
1086 task->tk_status = 0;
Trond Myklebust5fc43972010-11-20 11:13:31 -05001087 task->tk_action = call_refresh;
J. Bruce Fields55576242010-09-12 19:55:25 -04001088 switch (status) {
Trond Myklebust5fc43972010-11-20 11:13:31 -05001089 case 0:
1090 if (rpcauth_uptodatecred(task))
1091 task->tk_action = call_allocate;
J. Bruce Fields55576242010-09-12 19:55:25 -04001092 return;
1093 case -ETIMEDOUT:
1094 rpc_delay(task, 3*HZ);
Trond Myklebust5fc43972010-11-20 11:13:31 -05001095 case -EAGAIN:
1096 status = -EACCES;
1097 if (!task->tk_cred_retry)
1098 break;
1099 task->tk_cred_retry--;
1100 dprintk("RPC: %5u %s: retry refresh creds\n",
1101 task->tk_pid, __func__);
1102 return;
J. Bruce Fields55576242010-09-12 19:55:25 -04001103 }
Trond Myklebust5fc43972010-11-20 11:13:31 -05001104 dprintk("RPC: %5u %s: refresh creds failed with error %d\n",
1105 task->tk_pid, __func__, status);
1106 rpc_exit(task, status);
J. Bruce Fields55576242010-09-12 19:55:25 -04001107}
1108
1109/*
1110 * 2b. Allocate the buffer. For details, see sched.c:rpc_malloc.
Chuck Lever02107142006-01-03 09:55:49 +01001111 * (Note: buffer memory is freed in xprt_release).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 */
1113static void
1114call_allocate(struct rpc_task *task)
1115{
J. Bruce Fieldsf2d47d02010-09-12 19:55:25 -04001116 unsigned int slack = task->tk_rqstp->rq_cred->cr_auth->au_cslack;
Chuck Lever02107142006-01-03 09:55:49 +01001117 struct rpc_rqst *req = task->tk_rqstp;
1118 struct rpc_xprt *xprt = task->tk_xprt;
Chuck Lever2bea90d2007-03-29 16:47:53 -04001119 struct rpc_procinfo *proc = task->tk_msg.rpc_proc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Chuck Lever46121cf2007-01-31 12:14:08 -05001121 dprint_status(task);
1122
Chuck Lever2bea90d2007-03-29 16:47:53 -04001123 task->tk_status = 0;
J. Bruce Fieldsf2d47d02010-09-12 19:55:25 -04001124 task->tk_action = call_bind;
Chuck Lever2bea90d2007-03-29 16:47:53 -04001125
Chuck Lever02107142006-01-03 09:55:49 +01001126 if (req->rq_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 return;
1128
Chuck Lever2bea90d2007-03-29 16:47:53 -04001129 if (proc->p_proc != 0) {
1130 BUG_ON(proc->p_arglen == 0);
1131 if (proc->p_decode != NULL)
1132 BUG_ON(proc->p_replen == 0);
1133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Chuck Lever2bea90d2007-03-29 16:47:53 -04001135 /*
1136 * Calculate the size (in quads) of the RPC call
1137 * and reply headers, and convert both values
1138 * to byte sizes.
1139 */
1140 req->rq_callsize = RPC_CALLHDRSIZE + (slack << 1) + proc->p_arglen;
1141 req->rq_callsize <<= 2;
1142 req->rq_rcvsize = RPC_REPHDRSIZE + slack + proc->p_replen;
1143 req->rq_rcvsize <<= 2;
1144
Chuck Leverc5a4dd82007-03-29 16:47:58 -04001145 req->rq_buffer = xprt->ops->buf_alloc(task,
1146 req->rq_callsize + req->rq_rcvsize);
Chuck Lever2bea90d2007-03-29 16:47:53 -04001147 if (req->rq_buffer != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 return;
Chuck Lever46121cf2007-01-31 12:14:08 -05001149
1150 dprintk("RPC: %5u rpc_buffer allocation failed\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
Trond Myklebust5afa9132011-06-17 10:14:59 -04001152 if (RPC_IS_ASYNC(task) || !fatal_signal_pending(current)) {
Trond Myklebustb6e9c712007-10-01 12:06:44 -04001153 task->tk_action = call_allocate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 rpc_delay(task, HZ>>4);
1155 return;
1156 }
1157
1158 rpc_exit(task, -ERESTARTSYS);
1159}
1160
Trond Myklebust940e3312005-11-09 21:45:24 -05001161static inline int
1162rpc_task_need_encode(struct rpc_task *task)
1163{
1164 return task->tk_rqstp->rq_snd_buf.len == 0;
1165}
1166
1167static inline void
1168rpc_task_force_reencode(struct rpc_task *task)
1169{
1170 task->tk_rqstp->rq_snd_buf.len = 0;
Trond Myklebust2574cc92009-08-28 11:12:12 -04001171 task->tk_rqstp->rq_bytes_sent = 0;
Trond Myklebust940e3312005-11-09 21:45:24 -05001172}
1173
Chuck Lever2bea90d2007-03-29 16:47:53 -04001174static inline void
1175rpc_xdr_buf_init(struct xdr_buf *buf, void *start, size_t len)
1176{
1177 buf->head[0].iov_base = start;
1178 buf->head[0].iov_len = len;
1179 buf->tail[0].iov_len = 0;
1180 buf->page_len = 0;
\"Talpey, Thomas\4f22ccc2007-09-10 13:44:58 -04001181 buf->flags = 0;
Chuck Lever2bea90d2007-03-29 16:47:53 -04001182 buf->len = 0;
1183 buf->buflen = len;
1184}
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186/*
1187 * 3. Encode arguments of an RPC call
1188 */
1189static void
Chuck Leverb0e1c572008-05-21 17:09:19 -04001190rpc_xdr_encode(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 struct rpc_rqst *req = task->tk_rqstp;
Chuck Lever9f06c712010-12-14 14:59:18 +00001193 kxdreproc_t encode;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001194 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Chuck Lever46121cf2007-01-31 12:14:08 -05001196 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Chuck Lever2bea90d2007-03-29 16:47:53 -04001198 rpc_xdr_buf_init(&req->rq_snd_buf,
1199 req->rq_buffer,
1200 req->rq_callsize);
1201 rpc_xdr_buf_init(&req->rq_rcv_buf,
1202 (char *)req->rq_buffer + req->rq_callsize,
1203 req->rq_rcvsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Chuck Leverb0e1c572008-05-21 17:09:19 -04001205 p = rpc_encode_header(task);
1206 if (p == NULL) {
1207 printk(KERN_INFO "RPC: couldn't encode RPC header, exit EIO\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 rpc_exit(task, -EIO);
1209 return;
1210 }
Chuck Leverb0e1c572008-05-21 17:09:19 -04001211
1212 encode = task->tk_msg.rpc_proc->p_encode;
J. Bruce Fieldsf3680312005-10-13 16:54:48 -04001213 if (encode == NULL)
1214 return;
1215
1216 task->tk_status = rpcauth_wrap_req(task, encode, req, p,
1217 task->tk_msg.rpc_argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218}
1219
1220/*
1221 * 4. Get the server port number if not yet set
1222 */
1223static void
1224call_bind(struct rpc_task *task)
1225{
Chuck Leverec739ef2006-08-22 20:06:15 -04001226 struct rpc_xprt *xprt = task->tk_xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Chuck Lever46121cf2007-01-31 12:14:08 -05001228 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Chuck Leverda351872005-08-11 16:25:11 -04001230 task->tk_action = call_connect;
Chuck Leverec739ef2006-08-22 20:06:15 -04001231 if (!xprt_bound(xprt)) {
Chuck Leverda351872005-08-11 16:25:11 -04001232 task->tk_action = call_bind_status;
Chuck Leverec739ef2006-08-22 20:06:15 -04001233 task->tk_timeout = xprt->bind_timeout;
Chuck Leverbbf7c1d2006-08-22 20:06:16 -04001234 xprt->ops->rpcbind(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 }
1236}
1237
1238/*
Chuck Leverda351872005-08-11 16:25:11 -04001239 * 4a. Sort out bind result
1240 */
1241static void
1242call_bind_status(struct rpc_task *task)
1243{
Chuck Lever906462a2007-09-11 18:00:47 -04001244 int status = -EIO;
Chuck Leverda351872005-08-11 16:25:11 -04001245
1246 if (task->tk_status >= 0) {
Chuck Lever46121cf2007-01-31 12:14:08 -05001247 dprint_status(task);
Chuck Leverda351872005-08-11 16:25:11 -04001248 task->tk_status = 0;
1249 task->tk_action = call_connect;
1250 return;
1251 }
1252
1253 switch (task->tk_status) {
Trond Myklebust381ba742008-07-07 12:18:53 -04001254 case -ENOMEM:
1255 dprintk("RPC: %5u rpcbind out of memory\n", task->tk_pid);
1256 rpc_delay(task, HZ >> 2);
Chuck Lever2429cbf2007-09-11 18:00:41 -04001257 goto retry_timeout;
Chuck Leverda351872005-08-11 16:25:11 -04001258 case -EACCES:
Chuck Lever46121cf2007-01-31 12:14:08 -05001259 dprintk("RPC: %5u remote rpcbind: RPC program/version "
1260 "unavailable\n", task->tk_pid);
Chuck Leverb79dc8c2007-09-11 18:00:52 -04001261 /* fail immediately if this is an RPC ping */
1262 if (task->tk_msg.rpc_proc->p_proc == 0) {
1263 status = -EOPNOTSUPP;
1264 break;
1265 }
Trond Myklebust0b760112011-05-31 15:15:34 -04001266 if (task->tk_rebind_retry == 0)
1267 break;
1268 task->tk_rebind_retry--;
Chuck Leverea635a52005-10-06 23:12:58 -04001269 rpc_delay(task, 3*HZ);
Trond Myklebustda458282006-08-31 15:44:52 -04001270 goto retry_timeout;
Chuck Leverda351872005-08-11 16:25:11 -04001271 case -ETIMEDOUT:
Chuck Lever46121cf2007-01-31 12:14:08 -05001272 dprintk("RPC: %5u rpcbind request timed out\n",
Chuck Leverda351872005-08-11 16:25:11 -04001273 task->tk_pid);
Trond Myklebustda458282006-08-31 15:44:52 -04001274 goto retry_timeout;
Chuck Leverda351872005-08-11 16:25:11 -04001275 case -EPFNOSUPPORT:
Chuck Lever906462a2007-09-11 18:00:47 -04001276 /* server doesn't support any rpcbind version we know of */
Chuck Lever012da152009-12-03 15:58:56 -05001277 dprintk("RPC: %5u unrecognized remote rpcbind service\n",
Chuck Leverda351872005-08-11 16:25:11 -04001278 task->tk_pid);
1279 break;
1280 case -EPROTONOSUPPORT:
Chuck Lever00a6e7b2007-03-29 16:48:33 -04001281 dprintk("RPC: %5u remote rpcbind version unavailable, retrying\n",
Chuck Leverda351872005-08-11 16:25:11 -04001282 task->tk_pid);
Chuck Lever00a6e7b2007-03-29 16:48:33 -04001283 task->tk_status = 0;
1284 task->tk_action = call_bind;
1285 return;
Chuck Lever012da152009-12-03 15:58:56 -05001286 case -ECONNREFUSED: /* connection problems */
1287 case -ECONNRESET:
1288 case -ENOTCONN:
1289 case -EHOSTDOWN:
1290 case -EHOSTUNREACH:
1291 case -ENETUNREACH:
1292 case -EPIPE:
1293 dprintk("RPC: %5u remote rpcbind unreachable: %d\n",
1294 task->tk_pid, task->tk_status);
1295 if (!RPC_IS_SOFTCONN(task)) {
1296 rpc_delay(task, 5*HZ);
1297 goto retry_timeout;
1298 }
1299 status = task->tk_status;
1300 break;
Chuck Leverda351872005-08-11 16:25:11 -04001301 default:
Chuck Lever46121cf2007-01-31 12:14:08 -05001302 dprintk("RPC: %5u unrecognized rpcbind error (%d)\n",
Chuck Leverda351872005-08-11 16:25:11 -04001303 task->tk_pid, -task->tk_status);
Chuck Leverda351872005-08-11 16:25:11 -04001304 }
1305
1306 rpc_exit(task, status);
1307 return;
1308
Trond Myklebustda458282006-08-31 15:44:52 -04001309retry_timeout:
1310 task->tk_action = call_timeout;
Chuck Leverda351872005-08-11 16:25:11 -04001311}
1312
1313/*
1314 * 4b. Connect to the RPC server
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 */
1316static void
1317call_connect(struct rpc_task *task)
1318{
Chuck Leverda351872005-08-11 16:25:11 -04001319 struct rpc_xprt *xprt = task->tk_xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Chuck Lever46121cf2007-01-31 12:14:08 -05001321 dprintk("RPC: %5u call_connect xprt %p %s connected\n",
Chuck Leverda351872005-08-11 16:25:11 -04001322 task->tk_pid, xprt,
1323 (xprt_connected(xprt) ? "is" : "is not"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Chuck Leverda351872005-08-11 16:25:11 -04001325 task->tk_action = call_transmit;
1326 if (!xprt_connected(xprt)) {
1327 task->tk_action = call_connect_status;
1328 if (task->tk_status < 0)
1329 return;
1330 xprt_connect(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332}
1333
1334/*
Chuck Leverda351872005-08-11 16:25:11 -04001335 * 4c. Sort out connect result
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 */
1337static void
1338call_connect_status(struct rpc_task *task)
1339{
1340 struct rpc_clnt *clnt = task->tk_client;
1341 int status = task->tk_status;
1342
Chuck Lever46121cf2007-01-31 12:14:08 -05001343 dprint_status(task);
Chuck Leverda351872005-08-11 16:25:11 -04001344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 task->tk_status = 0;
Trond Myklebust2a491992009-03-11 14:38:00 -04001346 if (status >= 0 || status == -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 clnt->cl_stats->netreconn++;
1348 task->tk_action = call_transmit;
1349 return;
1350 }
1351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 switch (status) {
Trond Myklebustda458282006-08-31 15:44:52 -04001353 /* if soft mounted, test if we've timed out */
1354 case -ETIMEDOUT:
1355 task->tk_action = call_timeout;
Trond Myklebust2a491992009-03-11 14:38:00 -04001356 break;
1357 default:
1358 rpc_exit(task, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 }
1360}
1361
1362/*
1363 * 5. Transmit the RPC request, and wait for reply
1364 */
1365static void
1366call_transmit(struct rpc_task *task)
1367{
Chuck Lever46121cf2007-01-31 12:14:08 -05001368 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 task->tk_action = call_status;
1371 if (task->tk_status < 0)
1372 return;
1373 task->tk_status = xprt_prepare_transmit(task);
1374 if (task->tk_status != 0)
1375 return;
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04001376 task->tk_action = call_transmit_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 /* Encode here so that rpcsec_gss can use correct sequence number. */
Trond Myklebust940e3312005-11-09 21:45:24 -05001378 if (rpc_task_need_encode(task)) {
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04001379 BUG_ON(task->tk_rqstp->rq_bytes_sent != 0);
Chuck Leverb0e1c572008-05-21 17:09:19 -04001380 rpc_xdr_encode(task);
Trond Myklebust5e5ce5b2005-10-18 14:20:11 -07001381 /* Did the encode result in an error condition? */
Trond Myklebust8b39f2b2008-05-14 19:48:25 -07001382 if (task->tk_status != 0) {
1383 /* Was the error nonfatal? */
1384 if (task->tk_status == -EAGAIN)
1385 rpc_delay(task, HZ >> 4);
1386 else
1387 rpc_exit(task, task->tk_status);
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04001388 return;
Trond Myklebust8b39f2b2008-05-14 19:48:25 -07001389 }
Trond Myklebust5e5ce5b2005-10-18 14:20:11 -07001390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 xprt_transmit(task);
1392 if (task->tk_status < 0)
1393 return;
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04001394 /*
1395 * On success, ensure that we call xprt_end_transmit() before sleeping
1396 * in order to allow access to the socket to other RPC requests.
1397 */
1398 call_transmit_status(task);
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001399 if (rpc_reply_expected(task))
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04001400 return;
1401 task->tk_action = rpc_exit_task;
Trond Myklebustfda13932008-02-22 16:34:12 -05001402 rpc_wake_up_queued_task(&task->tk_xprt->pending, task);
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04001403}
1404
1405/*
1406 * 5a. Handle cleanup after a transmission
1407 */
1408static void
1409call_transmit_status(struct rpc_task *task)
1410{
1411 task->tk_action = call_status;
Chuck Lever206a1342009-12-03 15:58:56 -05001412
1413 /*
1414 * Common case: success. Force the compiler to put this
1415 * test first.
1416 */
1417 if (task->tk_status == 0) {
1418 xprt_end_transmit(task);
1419 rpc_task_force_reencode(task);
1420 return;
1421 }
1422
Trond Myklebust15f081c2009-03-11 14:37:57 -04001423 switch (task->tk_status) {
1424 case -EAGAIN:
1425 break;
1426 default:
Chuck Lever206a1342009-12-03 15:58:56 -05001427 dprint_status(task);
Trond Myklebust15f081c2009-03-11 14:37:57 -04001428 xprt_end_transmit(task);
Chuck Lever09a21c42009-12-03 15:58:56 -05001429 rpc_task_force_reencode(task);
1430 break;
Trond Myklebust15f081c2009-03-11 14:37:57 -04001431 /*
1432 * Special cases: if we've been waiting on the
1433 * socket's write_space() callback, or if the
1434 * socket just returned a connection error,
1435 * then hold onto the transport lock.
1436 */
1437 case -ECONNREFUSED:
Trond Myklebust15f081c2009-03-11 14:37:57 -04001438 case -EHOSTDOWN:
1439 case -EHOSTUNREACH:
1440 case -ENETUNREACH:
Chuck Lever09a21c42009-12-03 15:58:56 -05001441 if (RPC_IS_SOFTCONN(task)) {
1442 xprt_end_transmit(task);
1443 rpc_exit(task, task->tk_status);
1444 break;
1445 }
1446 case -ECONNRESET:
1447 case -ENOTCONN:
Trond Myklebustc8485e42009-03-11 14:37:59 -04001448 case -EPIPE:
Trond Myklebust15f081c2009-03-11 14:37:57 -04001449 rpc_task_force_reencode(task);
1450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451}
1452
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001453#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001454/*
1455 * 5b. Send the backchannel RPC reply. On error, drop the reply. In
1456 * addition, disconnect on connectivity errors.
1457 */
1458static void
1459call_bc_transmit(struct rpc_task *task)
1460{
1461 struct rpc_rqst *req = task->tk_rqstp;
1462
1463 BUG_ON(task->tk_status != 0);
1464 task->tk_status = xprt_prepare_transmit(task);
1465 if (task->tk_status == -EAGAIN) {
1466 /*
1467 * Could not reserve the transport. Try again after the
1468 * transport is released.
1469 */
1470 task->tk_status = 0;
1471 task->tk_action = call_bc_transmit;
1472 return;
1473 }
1474
1475 task->tk_action = rpc_exit_task;
1476 if (task->tk_status < 0) {
1477 printk(KERN_NOTICE "RPC: Could not send backchannel reply "
1478 "error: %d\n", task->tk_status);
1479 return;
1480 }
1481
1482 xprt_transmit(task);
1483 xprt_end_transmit(task);
1484 dprint_status(task);
1485 switch (task->tk_status) {
1486 case 0:
1487 /* Success */
1488 break;
1489 case -EHOSTDOWN:
1490 case -EHOSTUNREACH:
1491 case -ENETUNREACH:
1492 case -ETIMEDOUT:
1493 /*
1494 * Problem reaching the server. Disconnect and let the
1495 * forechannel reestablish the connection. The server will
1496 * have to retransmit the backchannel request and we'll
1497 * reprocess it. Since these ops are idempotent, there's no
1498 * need to cache our reply at this time.
1499 */
1500 printk(KERN_NOTICE "RPC: Could not send backchannel reply "
1501 "error: %d\n", task->tk_status);
1502 xprt_conditional_disconnect(task->tk_xprt,
1503 req->rq_connect_cookie);
1504 break;
1505 default:
1506 /*
1507 * We were unable to reply and will have to drop the
1508 * request. The server should reconnect and retransmit.
1509 */
1510 BUG_ON(task->tk_status == -EAGAIN);
1511 printk(KERN_NOTICE "RPC: Could not send backchannel reply "
1512 "error: %d\n", task->tk_status);
1513 break;
1514 }
1515 rpc_wake_up_queued_task(&req->rq_xprt->pending, task);
1516}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001517#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519/*
1520 * 6. Sort out the RPC call status
1521 */
1522static void
1523call_status(struct rpc_task *task)
1524{
1525 struct rpc_clnt *clnt = task->tk_client;
1526 struct rpc_rqst *req = task->tk_rqstp;
1527 int status;
1528
Ricardo Labiagadd2b63d2009-04-01 09:23:28 -04001529 if (req->rq_reply_bytes_recvd > 0 && !req->rq_bytes_sent)
1530 task->tk_status = req->rq_reply_bytes_recvd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Chuck Lever46121cf2007-01-31 12:14:08 -05001532 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534 status = task->tk_status;
1535 if (status >= 0) {
1536 task->tk_action = call_decode;
1537 return;
1538 }
1539
1540 task->tk_status = 0;
1541 switch(status) {
Trond Myklebust76303992006-08-30 14:32:49 -04001542 case -EHOSTDOWN:
1543 case -EHOSTUNREACH:
1544 case -ENETUNREACH:
1545 /*
1546 * Delay any retries for 3 seconds, then handle as if it
1547 * were a timeout.
1548 */
1549 rpc_delay(task, 3*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 case -ETIMEDOUT:
1551 task->tk_action = call_timeout;
Trond Myklebust241c39b2007-04-20 16:12:55 -04001552 if (task->tk_client->cl_discrtry)
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001553 xprt_conditional_disconnect(task->tk_xprt,
1554 req->rq_connect_cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 break;
Trond Myklebustc8485e42009-03-11 14:37:59 -04001556 case -ECONNRESET:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 case -ECONNREFUSED:
Chuck Lever35f5a422006-01-03 09:55:50 +01001558 rpc_force_rebind(clnt);
Trond Myklebustc8485e42009-03-11 14:37:59 -04001559 rpc_delay(task, 3*HZ);
1560 case -EPIPE:
1561 case -ENOTCONN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 task->tk_action = call_bind;
1563 break;
1564 case -EAGAIN:
1565 task->tk_action = call_transmit;
1566 break;
1567 case -EIO:
1568 /* shutdown or soft timeout */
1569 rpc_exit(task, status);
1570 break;
1571 default:
Olga Kornievskaiab6b61522008-06-09 16:51:31 -04001572 if (clnt->cl_chatty)
1573 printk("%s: RPC call returned error %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 clnt->cl_protname, -status);
1575 rpc_exit(task, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 }
1577}
1578
1579/*
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04001580 * 6a. Handle RPC timeout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 * We do not release the request slot, so we keep using the
1582 * same XID for all retransmits.
1583 */
1584static void
1585call_timeout(struct rpc_task *task)
1586{
1587 struct rpc_clnt *clnt = task->tk_client;
1588
1589 if (xprt_adjust_timeout(task->tk_rqstp) == 0) {
Chuck Lever46121cf2007-01-31 12:14:08 -05001590 dprintk("RPC: %5u call_timeout (minor)\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 goto retry;
1592 }
1593
Chuck Lever46121cf2007-01-31 12:14:08 -05001594 dprintk("RPC: %5u call_timeout (major)\n", task->tk_pid);
Chuck Leveref759a22006-03-20 13:44:17 -05001595 task->tk_timeouts++;
1596
Chuck Lever3a28bec2009-12-03 15:58:56 -05001597 if (RPC_IS_SOFTCONN(task)) {
1598 rpc_exit(task, -ETIMEDOUT);
1599 return;
1600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 if (RPC_IS_SOFT(task)) {
Olga Kornievskaiab6b61522008-06-09 16:51:31 -04001602 if (clnt->cl_chatty)
1603 printk(KERN_NOTICE "%s: server %s not responding, timed out\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 clnt->cl_protname, clnt->cl_server);
Trond Myklebust7494d002011-04-24 14:28:45 -04001605 if (task->tk_flags & RPC_TASK_TIMEOUT)
1606 rpc_exit(task, -ETIMEDOUT);
1607 else
1608 rpc_exit(task, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 return;
1610 }
1611
Chuck Leverf518e35a2006-01-03 09:55:52 +01001612 if (!(task->tk_flags & RPC_CALL_MAJORSEEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 task->tk_flags |= RPC_CALL_MAJORSEEN;
Olga Kornievskaiab6b61522008-06-09 16:51:31 -04001614 if (clnt->cl_chatty)
1615 printk(KERN_NOTICE "%s: server %s not responding, still trying\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 clnt->cl_protname, clnt->cl_server);
1617 }
Chuck Lever35f5a422006-01-03 09:55:50 +01001618 rpc_force_rebind(clnt);
Trond Myklebustb48633b2008-04-22 16:47:55 -04001619 /*
1620 * Did our request time out due to an RPCSEC_GSS out-of-sequence
1621 * event? RFC2203 requires the server to drop all such requests.
1622 */
1623 rpcauth_invalcred(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625retry:
1626 clnt->cl_stats->rpcretrans++;
1627 task->tk_action = call_bind;
1628 task->tk_status = 0;
1629}
1630
1631/*
1632 * 7. Decode the RPC reply
1633 */
1634static void
1635call_decode(struct rpc_task *task)
1636{
1637 struct rpc_clnt *clnt = task->tk_client;
1638 struct rpc_rqst *req = task->tk_rqstp;
Chuck Leverbf269552010-12-14 14:59:29 +00001639 kxdrdproc_t decode = task->tk_msg.rpc_proc->p_decode;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001640 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Vasily Averin726fd6a2011-06-01 16:23:59 +04001642 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Chuck Leverf518e35a2006-01-03 09:55:52 +01001644 if (task->tk_flags & RPC_CALL_MAJORSEEN) {
Olga Kornievskaiab6b61522008-06-09 16:51:31 -04001645 if (clnt->cl_chatty)
1646 printk(KERN_NOTICE "%s: server %s OK\n",
1647 clnt->cl_protname, clnt->cl_server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 task->tk_flags &= ~RPC_CALL_MAJORSEEN;
1649 }
1650
Trond Myklebust43ac3f22006-03-20 13:44:51 -05001651 /*
1652 * Ensure that we see all writes made by xprt_complete_rqst()
Ricardo Labiagadd2b63d2009-04-01 09:23:28 -04001653 * before it changed req->rq_reply_bytes_recvd.
Trond Myklebust43ac3f22006-03-20 13:44:51 -05001654 */
1655 smp_rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 req->rq_rcv_buf.len = req->rq_private_buf.len;
1657
1658 /* Check that the softirq receive buffer is valid */
1659 WARN_ON(memcmp(&req->rq_rcv_buf, &req->rq_private_buf,
1660 sizeof(req->rq_rcv_buf)) != 0);
1661
Trond Myklebust1e799b62008-03-21 16:19:41 -04001662 if (req->rq_rcv_buf.len < 12) {
1663 if (!RPC_IS_SOFT(task)) {
1664 task->tk_action = call_bind;
1665 clnt->cl_stats->rpcretrans++;
1666 goto out_retry;
1667 }
1668 dprintk("RPC: %s: too small RPC reply size (%d bytes)\n",
1669 clnt->cl_protname, task->tk_status);
1670 task->tk_action = call_timeout;
1671 goto out_retry;
1672 }
1673
Chuck Leverb0e1c572008-05-21 17:09:19 -04001674 p = rpc_verify_header(task);
Trond Myklebustabbcf282006-01-03 09:55:03 +01001675 if (IS_ERR(p)) {
1676 if (p == ERR_PTR(-EAGAIN))
1677 goto out_retry;
1678 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 }
1680
Trond Myklebustabbcf282006-01-03 09:55:03 +01001681 task->tk_action = rpc_exit_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Trond Myklebust6d5fcb52006-10-18 16:01:06 -04001683 if (decode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 task->tk_status = rpcauth_unwrap_resp(task, decode, req, p,
1685 task->tk_msg.rpc_resp);
Trond Myklebust6d5fcb52006-10-18 16:01:06 -04001686 }
Chuck Lever46121cf2007-01-31 12:14:08 -05001687 dprintk("RPC: %5u call_decode result %d\n", task->tk_pid,
1688 task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 return;
1690out_retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 task->tk_status = 0;
Chuck Leverb0e1c572008-05-21 17:09:19 -04001692 /* Note: rpc_verify_header() may have freed the RPC slot */
Trond Myklebust24b74bf2008-04-19 13:15:47 -04001693 if (task->tk_rqstp == req) {
Ricardo Labiagadd2b63d2009-04-01 09:23:28 -04001694 req->rq_reply_bytes_recvd = req->rq_rcv_buf.len = 0;
Trond Myklebust24b74bf2008-04-19 13:15:47 -04001695 if (task->tk_client->cl_discrtry)
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001696 xprt_conditional_disconnect(task->tk_xprt,
1697 req->rq_connect_cookie);
Trond Myklebust24b74bf2008-04-19 13:15:47 -04001698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699}
1700
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001701static __be32 *
Chuck Leverb0e1c572008-05-21 17:09:19 -04001702rpc_encode_header(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703{
1704 struct rpc_clnt *clnt = task->tk_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 struct rpc_rqst *req = task->tk_rqstp;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001706 __be32 *p = req->rq_svec[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
1708 /* FIXME: check buffer size? */
Chuck Lever808012f2005-08-25 16:25:49 -07001709
1710 p = xprt_skip_transport_header(task->tk_xprt, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 *p++ = req->rq_xid; /* XID */
1712 *p++ = htonl(RPC_CALL); /* CALL */
1713 *p++ = htonl(RPC_VERSION); /* RPC version */
1714 *p++ = htonl(clnt->cl_prog); /* program number */
1715 *p++ = htonl(clnt->cl_vers); /* program version */
1716 *p++ = htonl(task->tk_msg.rpc_proc->p_proc); /* procedure */
Trond Myklebust334ccfd2005-06-22 17:16:19 +00001717 p = rpcauth_marshcred(task, p);
1718 req->rq_slen = xdr_adjust_iovec(&req->rq_svec[0], p);
1719 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720}
1721
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001722static __be32 *
Chuck Leverb0e1c572008-05-21 17:09:19 -04001723rpc_verify_header(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724{
1725 struct kvec *iov = &task->tk_rqstp->rq_rcv_buf.head[0];
1726 int len = task->tk_rqstp->rq_rcv_buf.len >> 2;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001727 __be32 *p = iov->iov_base;
1728 u32 n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 int error = -EACCES;
1730
David Howellse8896492006-08-24 15:44:19 -04001731 if ((task->tk_rqstp->rq_rcv_buf.len & 3) != 0) {
1732 /* RFC-1014 says that the representation of XDR data must be a
1733 * multiple of four bytes
1734 * - if it isn't pointer subtraction in the NFS client may give
1735 * undefined results
1736 */
Trond Myklebust8a702bb2007-06-27 18:30:26 -04001737 dprintk("RPC: %5u %s: XDR representation not a multiple of"
Harvey Harrison0dc47872008-03-05 20:47:47 -08001738 " 4 bytes: 0x%x\n", task->tk_pid, __func__,
Trond Myklebust8a702bb2007-06-27 18:30:26 -04001739 task->tk_rqstp->rq_rcv_buf.len);
David Howellse8896492006-08-24 15:44:19 -04001740 goto out_eio;
1741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 if ((len -= 3) < 0)
1743 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001745 p += 1; /* skip XID */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 if ((n = ntohl(*p++)) != RPC_REPLY) {
Trond Myklebust8a702bb2007-06-27 18:30:26 -04001747 dprintk("RPC: %5u %s: not an RPC reply: %x\n",
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001748 task->tk_pid, __func__, n);
Trond Myklebustabbcf282006-01-03 09:55:03 +01001749 goto out_garbage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 }
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001751
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 if ((n = ntohl(*p++)) != RPC_MSG_ACCEPTED) {
1753 if (--len < 0)
1754 goto out_overflow;
1755 switch ((n = ntohl(*p++))) {
Joe Perches89f0e4f2011-07-01 09:43:12 +00001756 case RPC_AUTH_ERROR:
1757 break;
1758 case RPC_MISMATCH:
1759 dprintk("RPC: %5u %s: RPC call version mismatch!\n",
1760 task->tk_pid, __func__);
1761 error = -EPROTONOSUPPORT;
1762 goto out_err;
1763 default:
1764 dprintk("RPC: %5u %s: RPC call rejected, "
1765 "unknown error: %x\n",
1766 task->tk_pid, __func__, n);
1767 goto out_eio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 }
1769 if (--len < 0)
1770 goto out_overflow;
1771 switch ((n = ntohl(*p++))) {
1772 case RPC_AUTH_REJECTEDCRED:
1773 case RPC_AUTH_REJECTEDVERF:
1774 case RPCSEC_GSS_CREDPROBLEM:
1775 case RPCSEC_GSS_CTXPROBLEM:
1776 if (!task->tk_cred_retry)
1777 break;
1778 task->tk_cred_retry--;
Chuck Lever46121cf2007-01-31 12:14:08 -05001779 dprintk("RPC: %5u %s: retry stale creds\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001780 task->tk_pid, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 rpcauth_invalcred(task);
Trond Myklebust220bcc22007-10-01 12:06:48 -04001782 /* Ensure we obtain a new XID! */
1783 xprt_release(task);
Trond Myklebust118df3d2010-10-24 17:17:31 -04001784 task->tk_action = call_reserve;
Trond Myklebustabbcf282006-01-03 09:55:03 +01001785 goto out_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 case RPC_AUTH_BADCRED:
1787 case RPC_AUTH_BADVERF:
1788 /* possibly garbled cred/verf? */
1789 if (!task->tk_garb_retry)
1790 break;
1791 task->tk_garb_retry--;
Chuck Lever46121cf2007-01-31 12:14:08 -05001792 dprintk("RPC: %5u %s: retry garbled creds\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001793 task->tk_pid, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 task->tk_action = call_bind;
Trond Myklebustabbcf282006-01-03 09:55:03 +01001795 goto out_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 case RPC_AUTH_TOOWEAK:
Chuck Leverb0e1c572008-05-21 17:09:19 -04001797 printk(KERN_NOTICE "RPC: server %s requires stronger "
Levent Serinol1356b8c2006-03-20 13:44:11 -05001798 "authentication.\n", task->tk_client->cl_server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 break;
1800 default:
Trond Myklebust8a702bb2007-06-27 18:30:26 -04001801 dprintk("RPC: %5u %s: unknown auth error: %x\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001802 task->tk_pid, __func__, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 error = -EIO;
1804 }
Chuck Lever46121cf2007-01-31 12:14:08 -05001805 dprintk("RPC: %5u %s: call rejected %d\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001806 task->tk_pid, __func__, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 goto out_err;
1808 }
1809 if (!(p = rpcauth_checkverf(task, p))) {
Trond Myklebust8a702bb2007-06-27 18:30:26 -04001810 dprintk("RPC: %5u %s: auth check failed\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001811 task->tk_pid, __func__);
Trond Myklebustabbcf282006-01-03 09:55:03 +01001812 goto out_garbage; /* bad verifier, retry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 }
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001814 len = p - (__be32 *)iov->iov_base - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 if (len < 0)
1816 goto out_overflow;
1817 switch ((n = ntohl(*p++))) {
1818 case RPC_SUCCESS:
1819 return p;
1820 case RPC_PROG_UNAVAIL:
Chuck Lever46121cf2007-01-31 12:14:08 -05001821 dprintk("RPC: %5u %s: program %u is unsupported by server %s\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001822 task->tk_pid, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 (unsigned int)task->tk_client->cl_prog,
1824 task->tk_client->cl_server);
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001825 error = -EPFNOSUPPORT;
1826 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 case RPC_PROG_MISMATCH:
Chuck Lever46121cf2007-01-31 12:14:08 -05001828 dprintk("RPC: %5u %s: program %u, version %u unsupported by "
Harvey Harrison0dc47872008-03-05 20:47:47 -08001829 "server %s\n", task->tk_pid, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 (unsigned int)task->tk_client->cl_prog,
1831 (unsigned int)task->tk_client->cl_vers,
1832 task->tk_client->cl_server);
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001833 error = -EPROTONOSUPPORT;
1834 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 case RPC_PROC_UNAVAIL:
Chuck Lever3748f1e2008-05-21 17:09:12 -04001836 dprintk("RPC: %5u %s: proc %s unsupported by program %u, "
Chuck Lever46121cf2007-01-31 12:14:08 -05001837 "version %u on server %s\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001838 task->tk_pid, __func__,
Chuck Lever3748f1e2008-05-21 17:09:12 -04001839 rpc_proc_name(task),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 task->tk_client->cl_prog,
1841 task->tk_client->cl_vers,
1842 task->tk_client->cl_server);
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001843 error = -EOPNOTSUPP;
1844 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 case RPC_GARBAGE_ARGS:
Chuck Lever46121cf2007-01-31 12:14:08 -05001846 dprintk("RPC: %5u %s: server saw garbage\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001847 task->tk_pid, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 break; /* retry */
1849 default:
Trond Myklebust8a702bb2007-06-27 18:30:26 -04001850 dprintk("RPC: %5u %s: server accept status: %x\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001851 task->tk_pid, __func__, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 /* Also retry */
1853 }
1854
Trond Myklebustabbcf282006-01-03 09:55:03 +01001855out_garbage:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 task->tk_client->cl_stats->rpcgarbage++;
1857 if (task->tk_garb_retry) {
1858 task->tk_garb_retry--;
Chuck Lever46121cf2007-01-31 12:14:08 -05001859 dprintk("RPC: %5u %s: retrying\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001860 task->tk_pid, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 task->tk_action = call_bind;
Trond Myklebustabbcf282006-01-03 09:55:03 +01001862out_retry:
1863 return ERR_PTR(-EAGAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865out_eio:
1866 error = -EIO;
1867out_err:
1868 rpc_exit(task, error);
Trond Myklebust8a702bb2007-06-27 18:30:26 -04001869 dprintk("RPC: %5u %s: call failed with error %d\n", task->tk_pid,
Harvey Harrison0dc47872008-03-05 20:47:47 -08001870 __func__, error);
Trond Myklebustabbcf282006-01-03 09:55:03 +01001871 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872out_overflow:
Trond Myklebust8a702bb2007-06-27 18:30:26 -04001873 dprintk("RPC: %5u %s: server reply was truncated.\n", task->tk_pid,
Harvey Harrison0dc47872008-03-05 20:47:47 -08001874 __func__);
Trond Myklebustabbcf282006-01-03 09:55:03 +01001875 goto out_garbage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876}
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00001877
Chuck Lever9f06c712010-12-14 14:59:18 +00001878static void rpcproc_encode_null(void *rqstp, struct xdr_stream *xdr, void *obj)
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00001879{
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00001880}
1881
Chuck Leverbf269552010-12-14 14:59:29 +00001882static int rpcproc_decode_null(void *rqstp, struct xdr_stream *xdr, void *obj)
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00001883{
1884 return 0;
1885}
1886
1887static struct rpc_procinfo rpcproc_null = {
1888 .p_encode = rpcproc_encode_null,
1889 .p_decode = rpcproc_decode_null,
1890};
1891
Chuck Levercaabea82009-12-03 15:58:56 -05001892static int rpc_ping(struct rpc_clnt *clnt)
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00001893{
1894 struct rpc_message msg = {
1895 .rpc_proc = &rpcproc_null,
1896 };
1897 int err;
1898 msg.rpc_cred = authnull_ops.lookup_cred(NULL, NULL, 0);
Chuck Levercaabea82009-12-03 15:58:56 -05001899 err = rpc_call_sync(clnt, &msg, RPC_TASK_SOFT | RPC_TASK_SOFTCONN);
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00001900 put_rpccred(msg.rpc_cred);
1901 return err;
1902}
Trond Myklebust188fef12007-06-16 14:18:40 -04001903
Trond Myklebust5e1550d2007-06-23 10:17:16 -04001904struct rpc_task *rpc_call_null(struct rpc_clnt *clnt, struct rpc_cred *cred, int flags)
1905{
1906 struct rpc_message msg = {
1907 .rpc_proc = &rpcproc_null,
1908 .rpc_cred = cred,
1909 };
Trond Myklebust84115e12007-07-14 15:39:59 -04001910 struct rpc_task_setup task_setup_data = {
1911 .rpc_client = clnt,
1912 .rpc_message = &msg,
1913 .callback_ops = &rpc_default_ops,
1914 .flags = flags,
1915 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001916 return rpc_run_task(&task_setup_data);
Trond Myklebust5e1550d2007-06-23 10:17:16 -04001917}
Trond Myklebuste8914c62007-07-14 15:39:59 -04001918EXPORT_SYMBOL_GPL(rpc_call_null);
Trond Myklebust5e1550d2007-06-23 10:17:16 -04001919
Trond Myklebust188fef12007-06-16 14:18:40 -04001920#ifdef RPC_DEBUG
Chuck Lever68a23ee2008-05-21 17:09:26 -04001921static void rpc_show_header(void)
1922{
Chuck Levercb3997b2008-05-21 17:09:41 -04001923 printk(KERN_INFO "-pid- flgs status -client- --rqstp- "
1924 "-timeout ---ops--\n");
Chuck Lever68a23ee2008-05-21 17:09:26 -04001925}
1926
Chuck Lever38e886e2008-05-21 17:09:33 -04001927static void rpc_show_task(const struct rpc_clnt *clnt,
1928 const struct rpc_task *task)
1929{
1930 const char *rpc_waitq = "none";
Chuck Lever38e886e2008-05-21 17:09:33 -04001931
1932 if (RPC_IS_QUEUED(task))
1933 rpc_waitq = rpc_qname(task->tk_waitqueue);
1934
Joe Perchesb3bceda2010-12-21 10:52:24 -05001935 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 -04001936 task->tk_pid, task->tk_flags, task->tk_status,
1937 clnt, task->tk_rqstp, task->tk_timeout, task->tk_ops,
1938 clnt->cl_protname, clnt->cl_vers, rpc_proc_name(task),
Joe Perchesb3bceda2010-12-21 10:52:24 -05001939 task->tk_action, rpc_waitq);
Chuck Lever38e886e2008-05-21 17:09:33 -04001940}
1941
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +04001942void rpc_show_tasks(struct net *net)
Trond Myklebust188fef12007-06-16 14:18:40 -04001943{
1944 struct rpc_clnt *clnt;
Chuck Lever38e886e2008-05-21 17:09:33 -04001945 struct rpc_task *task;
Chuck Lever68a23ee2008-05-21 17:09:26 -04001946 int header = 0;
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +04001947 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
Trond Myklebust188fef12007-06-16 14:18:40 -04001948
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +04001949 spin_lock(&sn->rpc_client_lock);
1950 list_for_each_entry(clnt, &sn->all_clients, cl_clients) {
Trond Myklebust188fef12007-06-16 14:18:40 -04001951 spin_lock(&clnt->cl_lock);
Chuck Lever38e886e2008-05-21 17:09:33 -04001952 list_for_each_entry(task, &clnt->cl_tasks, tk_task) {
Chuck Lever68a23ee2008-05-21 17:09:26 -04001953 if (!header) {
1954 rpc_show_header();
1955 header++;
1956 }
Chuck Lever38e886e2008-05-21 17:09:33 -04001957 rpc_show_task(clnt, task);
Trond Myklebust188fef12007-06-16 14:18:40 -04001958 }
1959 spin_unlock(&clnt->cl_lock);
1960 }
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +04001961 spin_unlock(&sn->rpc_client_lock);
Trond Myklebust188fef12007-06-16 14:18:40 -04001962}
1963#endif