blob: c95a61736d1c58da98186f69ce740061e56d75af [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 *
16 * NB: BSD uses a more intelligent approach to guessing when a request
17 * or reply has been lost by keeping the RTO estimate for each procedure.
18 * We currently make do with a constant timeout value.
19 *
20 * Copyright (C) 1992,1993 Rick Sladkey <jrs@world.std.com>
21 * Copyright (C) 1995,1996 Olaf Kirch <okir@monad.swb.de>
22 */
23
24#include <asm/system.h>
25
26#include <linux/module.h>
27#include <linux/types.h>
28#include <linux/mm.h>
29#include <linux/slab.h>
Trond Myklebust6d5fcb52006-10-18 16:01:06 -040030#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/utsname.h>
Chuck Lever11c556b2006-03-20 13:44:22 -050032#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <linux/sunrpc/clnt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/sunrpc/rpc_pipe_fs.h>
Chuck Lever11c556b2006-03-20 13:44:22 -050036#include <linux/sunrpc/metrics.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38
39#define RPC_SLACK_SPACE (1024) /* total overkill */
40
41#ifdef RPC_DEBUG
42# define RPCDBG_FACILITY RPCDBG_CALL
43#endif
44
45static DECLARE_WAIT_QUEUE_HEAD(destroy_wait);
46
47
48static void call_start(struct rpc_task *task);
49static void call_reserve(struct rpc_task *task);
50static void call_reserveresult(struct rpc_task *task);
51static void call_allocate(struct rpc_task *task);
52static void call_encode(struct rpc_task *task);
53static void call_decode(struct rpc_task *task);
54static void call_bind(struct rpc_task *task);
Chuck Leverda351872005-08-11 16:25:11 -040055static void call_bind_status(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056static void call_transmit(struct rpc_task *task);
57static void call_status(struct rpc_task *task);
Trond Myklebust940e3312005-11-09 21:45:24 -050058static void call_transmit_status(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static void call_refresh(struct rpc_task *task);
60static void call_refreshresult(struct rpc_task *task);
61static void call_timeout(struct rpc_task *task);
62static void call_connect(struct rpc_task *task);
63static void call_connect_status(struct rpc_task *task);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -070064static __be32 * call_header(struct rpc_task *task);
65static __be32 * call_verify(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67
68static int
69rpc_setup_pipedir(struct rpc_clnt *clnt, char *dir_name)
70{
Trond Myklebustf1345852005-09-23 11:08:25 -040071 static uint32_t clntid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 int error;
73
Trond Myklebust54281542006-03-20 13:44:49 -050074 clnt->cl_vfsmnt = ERR_PTR(-ENOENT);
75 clnt->cl_dentry = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 if (dir_name == NULL)
77 return 0;
Trond Myklebust54281542006-03-20 13:44:49 -050078
79 clnt->cl_vfsmnt = rpc_get_mount();
80 if (IS_ERR(clnt->cl_vfsmnt))
81 return PTR_ERR(clnt->cl_vfsmnt);
82
Trond Myklebustf1345852005-09-23 11:08:25 -040083 for (;;) {
84 snprintf(clnt->cl_pathname, sizeof(clnt->cl_pathname),
85 "%s/clnt%x", dir_name,
86 (unsigned int)clntid++);
87 clnt->cl_pathname[sizeof(clnt->cl_pathname) - 1] = '\0';
88 clnt->cl_dentry = rpc_mkdir(clnt->cl_pathname, clnt);
89 if (!IS_ERR(clnt->cl_dentry))
90 return 0;
Christoph Hellwig278c9952005-07-24 23:53:01 +010091 error = PTR_ERR(clnt->cl_dentry);
Trond Myklebustf1345852005-09-23 11:08:25 -040092 if (error != -EEXIST) {
93 printk(KERN_INFO "RPC: Couldn't create pipefs entry %s, error %d\n",
94 clnt->cl_pathname, error);
Trond Myklebust54281542006-03-20 13:44:49 -050095 rpc_put_mount();
Trond Myklebustf1345852005-09-23 11:08:25 -040096 return error;
97 }
Christoph Hellwig278c9952005-07-24 23:53:01 +010098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Chuck Leverff9aa5e2006-08-22 20:06:21 -0400101static struct rpc_clnt * rpc_new_client(struct rpc_xprt *xprt, char *servname, struct rpc_program *program, u32 vers, rpc_authflavor_t flavor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
103 struct rpc_version *version;
104 struct rpc_clnt *clnt = NULL;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000105 struct rpc_auth *auth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 int err;
107 int len;
108
109 dprintk("RPC: creating %s client for %s (xprt %p)\n",
110 program->name, servname, xprt);
111
112 err = -EINVAL;
113 if (!xprt)
Adrian Bunk712917d2006-03-13 21:20:47 -0800114 goto out_no_xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 if (vers >= program->nrvers || !(version = program->version[vers]))
116 goto out_err;
117
118 err = -ENOMEM;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700119 clnt = kzalloc(sizeof(*clnt), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if (!clnt)
121 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 atomic_set(&clnt->cl_users, 0);
123 atomic_set(&clnt->cl_count, 1);
124 clnt->cl_parent = clnt;
125
126 clnt->cl_server = clnt->cl_inline_name;
127 len = strlen(servname) + 1;
128 if (len > sizeof(clnt->cl_inline_name)) {
129 char *buf = kmalloc(len, GFP_KERNEL);
130 if (buf != 0)
131 clnt->cl_server = buf;
132 else
133 len = sizeof(clnt->cl_inline_name);
134 }
135 strlcpy(clnt->cl_server, servname, len);
136
137 clnt->cl_xprt = xprt;
138 clnt->cl_procinfo = version->procs;
139 clnt->cl_maxproc = version->nrprocs;
140 clnt->cl_protname = program->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 clnt->cl_prog = program->number;
142 clnt->cl_vers = version->number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 clnt->cl_stats = program->stats;
Chuck Lever11c556b2006-03-20 13:44:22 -0500144 clnt->cl_metrics = rpc_alloc_iostats(clnt);
Trond Myklebust23bf85b2006-11-21 10:40:23 -0500145 err = -ENOMEM;
146 if (clnt->cl_metrics == NULL)
147 goto out_no_stats;
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500148 clnt->cl_program = program;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Chuck Leverec739ef2006-08-22 20:06:15 -0400150 if (!xprt_bound(clnt->cl_xprt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 clnt->cl_autobind = 1;
152
153 clnt->cl_rtt = &clnt->cl_rtt_default;
154 rpc_init_rtt(&clnt->cl_rtt_default, xprt->timeout.to_initval);
155
156 err = rpc_setup_pipedir(clnt, program->pipe_dir_name);
157 if (err < 0)
158 goto out_no_path;
159
J. Bruce Fields6a192752005-06-22 17:16:23 +0000160 auth = rpcauth_create(flavor, clnt);
161 if (IS_ERR(auth)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 printk(KERN_INFO "RPC: Couldn't create auth handle (flavor %u)\n",
163 flavor);
J. Bruce Fields6a192752005-06-22 17:16:23 +0000164 err = PTR_ERR(auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 goto out_no_auth;
166 }
167
168 /* save the nodename */
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700169 clnt->cl_nodelen = strlen(utsname()->nodename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (clnt->cl_nodelen > UNX_MAXNODENAME)
171 clnt->cl_nodelen = UNX_MAXNODENAME;
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700172 memcpy(clnt->cl_nodename, utsname()->nodename, clnt->cl_nodelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return clnt;
174
175out_no_auth:
Trond Myklebust54281542006-03-20 13:44:49 -0500176 if (!IS_ERR(clnt->cl_dentry)) {
Trond Myklebustdff02cc2006-07-31 14:17:18 -0700177 rpc_rmdir(clnt->cl_dentry);
Trond Myklebust54281542006-03-20 13:44:49 -0500178 rpc_put_mount();
179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180out_no_path:
Trond Myklebust23bf85b2006-11-21 10:40:23 -0500181 rpc_free_iostats(clnt->cl_metrics);
182out_no_stats:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (clnt->cl_server != clnt->cl_inline_name)
184 kfree(clnt->cl_server);
185 kfree(clnt);
186out_err:
Trond Myklebust6b6ca862006-09-05 12:55:57 -0400187 xprt_put(xprt);
Adrian Bunk712917d2006-03-13 21:20:47 -0800188out_no_xprt:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return ERR_PTR(err);
190}
191
Chuck Leverc2866762006-08-22 20:06:20 -0400192/*
193 * rpc_create - create an RPC client and transport with one call
194 * @args: rpc_clnt create argument structure
195 *
196 * Creates and initializes an RPC transport and an RPC client.
197 *
198 * It can ping the server in order to determine if it is up, and to see if
199 * it supports this program and version. RPC_CLNT_CREATE_NOPING disables
200 * this behavior so asynchronous tasks can also use rpc_create.
201 */
202struct rpc_clnt *rpc_create(struct rpc_create_args *args)
203{
204 struct rpc_xprt *xprt;
205 struct rpc_clnt *clnt;
206
207 xprt = xprt_create_transport(args->protocol, args->address,
208 args->addrsize, args->timeout);
209 if (IS_ERR(xprt))
210 return (struct rpc_clnt *)xprt;
211
212 /*
213 * By default, kernel RPC client connects from a reserved port.
214 * CAP_NET_BIND_SERVICE will not be set for unprivileged requesters,
215 * but it is always enabled for rpciod, which handles the connect
216 * operation.
217 */
218 xprt->resvport = 1;
219 if (args->flags & RPC_CLNT_CREATE_NONPRIVPORT)
220 xprt->resvport = 0;
221
222 dprintk("RPC: creating %s client for %s (xprt %p)\n",
223 args->program->name, args->servername, xprt);
224
225 clnt = rpc_new_client(xprt, args->servername, args->program,
226 args->version, args->authflavor);
227 if (IS_ERR(clnt))
228 return clnt;
229
230 if (!(args->flags & RPC_CLNT_CREATE_NOPING)) {
231 int err = rpc_ping(clnt, RPC_TASK_SOFT|RPC_TASK_NOINTR);
232 if (err != 0) {
233 rpc_shutdown_client(clnt);
234 return ERR_PTR(err);
235 }
236 }
237
238 clnt->cl_softrtry = 1;
239 if (args->flags & RPC_CLNT_CREATE_HARDRTRY)
240 clnt->cl_softrtry = 0;
241
242 if (args->flags & RPC_CLNT_CREATE_INTR)
243 clnt->cl_intr = 1;
244 if (args->flags & RPC_CLNT_CREATE_AUTOBIND)
245 clnt->cl_autobind = 1;
246 if (args->flags & RPC_CLNT_CREATE_ONESHOT)
247 clnt->cl_oneshot = 1;
248
249 return clnt;
250}
Chuck Leverb86acd52006-08-22 20:06:22 -0400251EXPORT_SYMBOL_GPL(rpc_create);
Chuck Leverc2866762006-08-22 20:06:20 -0400252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253/*
254 * This function clones the RPC client structure. It allows us to share the
255 * same transport while varying parameters such as the authentication
256 * flavour.
257 */
258struct rpc_clnt *
259rpc_clone_client(struct rpc_clnt *clnt)
260{
261 struct rpc_clnt *new;
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500262 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Arnaldo Carvalho de Meloe69062b2006-11-21 01:21:34 -0200264 new = kmemdup(clnt, sizeof(*new), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 if (!new)
266 goto out_no_clnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 atomic_set(&new->cl_count, 1);
268 atomic_set(&new->cl_users, 0);
Trond Myklebust23bf85b2006-11-21 10:40:23 -0500269 new->cl_metrics = rpc_alloc_iostats(clnt);
270 if (new->cl_metrics == NULL)
271 goto out_no_stats;
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500272 err = rpc_setup_pipedir(new, clnt->cl_program->pipe_dir_name);
273 if (err != 0)
274 goto out_no_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 new->cl_parent = clnt;
276 atomic_inc(&clnt->cl_count);
Trond Myklebust6b6ca862006-09-05 12:55:57 -0400277 new->cl_xprt = xprt_get(clnt->cl_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 /* Turn off autobind on clones */
279 new->cl_autobind = 0;
280 new->cl_oneshot = 0;
281 new->cl_dead = 0;
282 rpc_init_rtt(&new->cl_rtt_default, clnt->cl_xprt->timeout.to_initval);
283 if (new->cl_auth)
284 atomic_inc(&new->cl_auth->au_count);
285 return new;
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500286out_no_path:
287 rpc_free_iostats(new->cl_metrics);
Trond Myklebust23bf85b2006-11-21 10:40:23 -0500288out_no_stats:
289 kfree(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290out_no_clnt:
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500291 dprintk("RPC: %s returned error %d\n", __FUNCTION__, err);
292 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
295/*
296 * Properly shut down an RPC client, terminating all outstanding
297 * requests. Note that we must be certain that cl_oneshot and
298 * cl_dead are cleared, or else the client would be destroyed
299 * when the last task releases it.
300 */
301int
302rpc_shutdown_client(struct rpc_clnt *clnt)
303{
304 dprintk("RPC: shutting down %s client for %s, tasks=%d\n",
305 clnt->cl_protname, clnt->cl_server,
306 atomic_read(&clnt->cl_users));
307
308 while (atomic_read(&clnt->cl_users) > 0) {
309 /* Don't let rpc_release_client destroy us */
310 clnt->cl_oneshot = 0;
311 clnt->cl_dead = 0;
312 rpc_killall_tasks(clnt);
Ingo Molnar532347e2006-01-09 20:52:53 -0800313 wait_event_timeout(destroy_wait,
Linus Torvalds4f477072006-01-10 08:56:39 -0800314 !atomic_read(&clnt->cl_users), 1*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
316
317 if (atomic_read(&clnt->cl_users) < 0) {
318 printk(KERN_ERR "RPC: rpc_shutdown_client clnt %p tasks=%d\n",
319 clnt, atomic_read(&clnt->cl_users));
320#ifdef RPC_DEBUG
321 rpc_show_tasks();
322#endif
323 BUG();
324 }
325
326 return rpc_destroy_client(clnt);
327}
328
329/*
330 * Delete an RPC client
331 */
332int
333rpc_destroy_client(struct rpc_clnt *clnt)
334{
335 if (!atomic_dec_and_test(&clnt->cl_count))
336 return 1;
337 BUG_ON(atomic_read(&clnt->cl_users) != 0);
338
339 dprintk("RPC: destroying %s client for %s\n",
340 clnt->cl_protname, clnt->cl_server);
341 if (clnt->cl_auth) {
342 rpcauth_destroy(clnt->cl_auth);
343 clnt->cl_auth = NULL;
344 }
Trond Myklebust8f8e7a52006-08-14 13:11:15 -0400345 if (!IS_ERR(clnt->cl_dentry)) {
Trond Myklebustdff02cc2006-07-31 14:17:18 -0700346 rpc_rmdir(clnt->cl_dentry);
Trond Myklebust8f8e7a52006-08-14 13:11:15 -0400347 rpc_put_mount();
348 }
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500349 if (clnt->cl_parent != clnt) {
350 rpc_destroy_client(clnt->cl_parent);
351 goto out_free;
352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 if (clnt->cl_server != clnt->cl_inline_name)
354 kfree(clnt->cl_server);
355out_free:
Chuck Lever11c556b2006-03-20 13:44:22 -0500356 rpc_free_iostats(clnt->cl_metrics);
357 clnt->cl_metrics = NULL;
Trond Myklebust6b6ca862006-09-05 12:55:57 -0400358 xprt_put(clnt->cl_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 kfree(clnt);
360 return 0;
361}
362
363/*
364 * Release an RPC client
365 */
366void
367rpc_release_client(struct rpc_clnt *clnt)
368{
369 dprintk("RPC: rpc_release_client(%p, %d)\n",
370 clnt, atomic_read(&clnt->cl_users));
371
372 if (!atomic_dec_and_test(&clnt->cl_users))
373 return;
374 wake_up(&destroy_wait);
375 if (clnt->cl_oneshot || clnt->cl_dead)
376 rpc_destroy_client(clnt);
377}
378
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000379/**
380 * rpc_bind_new_program - bind a new RPC program to an existing client
381 * @old - old rpc_client
382 * @program - rpc program to set
383 * @vers - rpc program version
384 *
385 * Clones the rpc client and sets up a new RPC program. This is mainly
386 * of use for enabling different RPC programs to share the same transport.
387 * The Sun NFSv2/v3 ACL protocol can do this.
388 */
389struct rpc_clnt *rpc_bind_new_program(struct rpc_clnt *old,
390 struct rpc_program *program,
391 int vers)
392{
393 struct rpc_clnt *clnt;
394 struct rpc_version *version;
395 int err;
396
397 BUG_ON(vers >= program->nrvers || !program->version[vers]);
398 version = program->version[vers];
399 clnt = rpc_clone_client(old);
400 if (IS_ERR(clnt))
401 goto out;
402 clnt->cl_procinfo = version->procs;
403 clnt->cl_maxproc = version->nrprocs;
404 clnt->cl_protname = program->name;
405 clnt->cl_prog = program->number;
406 clnt->cl_vers = version->number;
407 clnt->cl_stats = program->stats;
408 err = rpc_ping(clnt, RPC_TASK_SOFT|RPC_TASK_NOINTR);
409 if (err != 0) {
410 rpc_shutdown_client(clnt);
411 clnt = ERR_PTR(err);
412 }
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800413out:
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000414 return clnt;
415}
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417/*
418 * Default callback for async RPC calls
419 */
420static void
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100421rpc_default_callback(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
423}
424
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100425static const struct rpc_call_ops rpc_default_ops = {
426 .rpc_call_done = rpc_default_callback,
427};
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429/*
Trond Myklebust14b218a2005-06-22 17:16:28 +0000430 * Export the signal mask handling for synchronous code that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 * sleeps on RPC calls
432 */
Trond Myklebust2bd61572006-01-03 09:55:19 +0100433#define RPC_INTR_SIGNALS (sigmask(SIGHUP) | sigmask(SIGINT) | sigmask(SIGQUIT) | sigmask(SIGTERM))
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800434
Trond Myklebust14b218a2005-06-22 17:16:28 +0000435static void rpc_save_sigmask(sigset_t *oldset, int intr)
436{
Trond Myklebust2bd61572006-01-03 09:55:19 +0100437 unsigned long sigallow = sigmask(SIGKILL);
Trond Myklebust14b218a2005-06-22 17:16:28 +0000438 sigset_t sigmask;
439
440 /* Block all signals except those listed in sigallow */
441 if (intr)
442 sigallow |= RPC_INTR_SIGNALS;
443 siginitsetinv(&sigmask, sigallow);
444 sigprocmask(SIG_BLOCK, &sigmask, oldset);
445}
446
447static inline void rpc_task_sigmask(struct rpc_task *task, sigset_t *oldset)
448{
449 rpc_save_sigmask(oldset, !RPC_TASK_UNINTERRUPTIBLE(task));
450}
451
452static inline void rpc_restore_sigmask(sigset_t *oldset)
453{
454 sigprocmask(SIG_SETMASK, oldset, NULL);
455}
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457void rpc_clnt_sigmask(struct rpc_clnt *clnt, sigset_t *oldset)
458{
Trond Myklebust14b218a2005-06-22 17:16:28 +0000459 rpc_save_sigmask(oldset, clnt->cl_intr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
462void rpc_clnt_sigunmask(struct rpc_clnt *clnt, sigset_t *oldset)
463{
Trond Myklebust14b218a2005-06-22 17:16:28 +0000464 rpc_restore_sigmask(oldset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
467/*
468 * New rpc_call implementation
469 */
470int rpc_call_sync(struct rpc_clnt *clnt, struct rpc_message *msg, int flags)
471{
472 struct rpc_task *task;
473 sigset_t oldset;
474 int status;
475
476 /* If this client is slain all further I/O fails */
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800477 if (clnt->cl_dead)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return -EIO;
479
480 BUG_ON(flags & RPC_TASK_ASYNC);
481
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100482 task = rpc_new_task(clnt, flags, &rpc_default_ops, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 if (task == NULL)
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500484 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Trond Myklebust14b218a2005-06-22 17:16:28 +0000486 /* Mask signals on RPC calls _and_ GSS_AUTH upcalls */
487 rpc_task_sigmask(task, &oldset);
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 rpc_call_setup(task, msg, 0);
490
491 /* Set up the call info struct and execute the task */
Trond Myklebuste60859a2006-01-03 09:55:10 +0100492 status = task->tk_status;
Trond Myklebustbde8f002007-01-24 11:54:53 -0800493 if (status != 0)
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500494 goto out;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500495 atomic_inc(&task->tk_count);
496 status = rpc_execute(task);
497 if (status == 0)
498 status = task->tk_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499out:
Trond Myklebustbde8f002007-01-24 11:54:53 -0800500 rpc_put_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500501 rpc_restore_sigmask(&oldset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 return status;
503}
504
505/*
506 * New rpc_call implementation
507 */
508int
509rpc_call_async(struct rpc_clnt *clnt, struct rpc_message *msg, int flags,
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100510 const struct rpc_call_ops *tk_ops, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
512 struct rpc_task *task;
513 sigset_t oldset;
514 int status;
515
516 /* If this client is slain all further I/O fails */
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500517 status = -EIO;
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800518 if (clnt->cl_dead)
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500519 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 flags |= RPC_TASK_ASYNC;
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 /* Create/initialize a new RPC task */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 status = -ENOMEM;
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100525 if (!(task = rpc_new_task(clnt, flags, tk_ops, data)))
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500526 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Trond Myklebust14b218a2005-06-22 17:16:28 +0000528 /* Mask signals on GSS_AUTH upcalls */
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800529 rpc_task_sigmask(task, &oldset);
Trond Myklebust14b218a2005-06-22 17:16:28 +0000530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 rpc_call_setup(task, msg, 0);
532
533 /* Set up the call info struct and execute the task */
534 status = task->tk_status;
535 if (status == 0)
536 rpc_execute(task);
537 else
Trond Myklebustbde8f002007-01-24 11:54:53 -0800538 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800540 rpc_restore_sigmask(&oldset);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500541 return status;
542out_release:
Trond Myklebustbbd5a1f2006-10-18 16:01:05 -0400543 rpc_release_calldata(tk_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 return status;
545}
546
547
548void
549rpc_call_setup(struct rpc_task *task, struct rpc_message *msg, int flags)
550{
551 task->tk_msg = *msg;
552 task->tk_flags |= flags;
553 /* Bind the user cred */
554 if (task->tk_msg.rpc_cred != NULL)
555 rpcauth_holdcred(task);
556 else
557 rpcauth_bindcred(task);
558
559 if (task->tk_status == 0)
560 task->tk_action = call_start;
561 else
Trond Myklebustabbcf282006-01-03 09:55:03 +0100562 task->tk_action = rpc_exit_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Chuck Levered394402006-08-22 20:06:17 -0400565/**
566 * rpc_peeraddr - extract remote peer address from clnt's xprt
567 * @clnt: RPC client structure
568 * @buf: target buffer
569 * @size: length of target buffer
570 *
571 * Returns the number of bytes that are actually in the stored address.
572 */
573size_t rpc_peeraddr(struct rpc_clnt *clnt, struct sockaddr *buf, size_t bufsize)
574{
575 size_t bytes;
576 struct rpc_xprt *xprt = clnt->cl_xprt;
577
578 bytes = sizeof(xprt->addr);
579 if (bytes > bufsize)
580 bytes = bufsize;
581 memcpy(buf, &clnt->cl_xprt->addr, bytes);
Chuck Leverc4efcb12006-08-22 20:06:19 -0400582 return xprt->addrlen;
Chuck Levered394402006-08-22 20:06:17 -0400583}
Chuck Leverb86acd52006-08-22 20:06:22 -0400584EXPORT_SYMBOL_GPL(rpc_peeraddr);
Chuck Levered394402006-08-22 20:06:17 -0400585
Chuck Leverf425eba2006-08-22 20:06:18 -0400586/**
587 * rpc_peeraddr2str - return remote peer address in printable format
588 * @clnt: RPC client structure
589 * @format: address format
590 *
591 */
592char *rpc_peeraddr2str(struct rpc_clnt *clnt, enum rpc_display_format_t format)
593{
594 struct rpc_xprt *xprt = clnt->cl_xprt;
Chuck Lever7559c7a2006-12-05 16:35:37 -0500595
596 if (xprt->address_strings[format] != NULL)
597 return xprt->address_strings[format];
598 else
599 return "unprintable";
Chuck Leverf425eba2006-08-22 20:06:18 -0400600}
Chuck Leverb86acd52006-08-22 20:06:22 -0400601EXPORT_SYMBOL_GPL(rpc_peeraddr2str);
Chuck Leverf425eba2006-08-22 20:06:18 -0400602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603void
604rpc_setbufsize(struct rpc_clnt *clnt, unsigned int sndsize, unsigned int rcvsize)
605{
606 struct rpc_xprt *xprt = clnt->cl_xprt;
Chuck Lever470056c2005-08-25 16:25:56 -0700607 if (xprt->ops->set_buffer_size)
608 xprt->ops->set_buffer_size(xprt, sndsize, rcvsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
611/*
612 * Return size of largest payload RPC client can support, in bytes
613 *
614 * For stream transports, this is one RPC record fragment (see RFC
615 * 1831), as we don't support multi-record requests yet. For datagram
616 * transports, this is the size of an IP packet minus the IP, UDP, and
617 * RPC header sizes.
618 */
619size_t rpc_max_payload(struct rpc_clnt *clnt)
620{
621 return clnt->cl_xprt->max_payload;
622}
Chuck Leverb86acd52006-08-22 20:06:22 -0400623EXPORT_SYMBOL_GPL(rpc_max_payload);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Chuck Lever35f5a422006-01-03 09:55:50 +0100625/**
626 * rpc_force_rebind - force transport to check that remote port is unchanged
627 * @clnt: client to rebind
628 *
629 */
630void rpc_force_rebind(struct rpc_clnt *clnt)
631{
632 if (clnt->cl_autobind)
Chuck Leverec739ef2006-08-22 20:06:15 -0400633 xprt_clear_bound(clnt->cl_xprt);
Chuck Lever35f5a422006-01-03 09:55:50 +0100634}
Chuck Leverb86acd52006-08-22 20:06:22 -0400635EXPORT_SYMBOL_GPL(rpc_force_rebind);
Chuck Lever35f5a422006-01-03 09:55:50 +0100636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637/*
638 * Restart an (async) RPC call. Usually called from within the
639 * exit handler.
640 */
641void
642rpc_restart_call(struct rpc_task *task)
643{
644 if (RPC_ASSASSINATED(task))
645 return;
646
647 task->tk_action = call_start;
648}
649
650/*
651 * 0. Initial state
652 *
653 * Other FSM states can be visited zero or more times, but
654 * this state is visited exactly once for each RPC.
655 */
656static void
657call_start(struct rpc_task *task)
658{
659 struct rpc_clnt *clnt = task->tk_client;
660
661 dprintk("RPC: %4d call_start %s%d proc %d (%s)\n", task->tk_pid,
662 clnt->cl_protname, clnt->cl_vers, task->tk_msg.rpc_proc->p_proc,
663 (RPC_IS_ASYNC(task) ? "async" : "sync"));
664
665 /* Increment call count */
666 task->tk_msg.rpc_proc->p_count++;
667 clnt->cl_stats->rpccnt++;
668 task->tk_action = call_reserve;
669}
670
671/*
672 * 1. Reserve an RPC call slot
673 */
674static void
675call_reserve(struct rpc_task *task)
676{
677 dprintk("RPC: %4d call_reserve\n", task->tk_pid);
678
679 if (!rpcauth_uptodatecred(task)) {
680 task->tk_action = call_refresh;
681 return;
682 }
683
684 task->tk_status = 0;
685 task->tk_action = call_reserveresult;
686 xprt_reserve(task);
687}
688
689/*
690 * 1b. Grok the result of xprt_reserve()
691 */
692static void
693call_reserveresult(struct rpc_task *task)
694{
695 int status = task->tk_status;
696
697 dprintk("RPC: %4d call_reserveresult (status %d)\n",
698 task->tk_pid, task->tk_status);
699
700 /*
701 * After a call to xprt_reserve(), we must have either
702 * a request slot or else an error status.
703 */
704 task->tk_status = 0;
705 if (status >= 0) {
706 if (task->tk_rqstp) {
707 task->tk_action = call_allocate;
708 return;
709 }
710
711 printk(KERN_ERR "%s: status=%d, but no request slot, exiting\n",
712 __FUNCTION__, status);
713 rpc_exit(task, -EIO);
714 return;
715 }
716
717 /*
718 * Even though there was an error, we may have acquired
719 * a request slot somehow. Make sure not to leak it.
720 */
721 if (task->tk_rqstp) {
722 printk(KERN_ERR "%s: status=%d, request allocated anyway\n",
723 __FUNCTION__, status);
724 xprt_release(task);
725 }
726
727 switch (status) {
728 case -EAGAIN: /* woken up; retry */
729 task->tk_action = call_reserve;
730 return;
731 case -EIO: /* probably a shutdown */
732 break;
733 default:
734 printk(KERN_ERR "%s: unrecognized error %d, exiting\n",
735 __FUNCTION__, status);
736 break;
737 }
738 rpc_exit(task, status);
739}
740
741/*
742 * 2. Allocate the buffer. For details, see sched.c:rpc_malloc.
Chuck Lever02107142006-01-03 09:55:49 +0100743 * (Note: buffer memory is freed in xprt_release).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 */
745static void
746call_allocate(struct rpc_task *task)
747{
Chuck Lever02107142006-01-03 09:55:49 +0100748 struct rpc_rqst *req = task->tk_rqstp;
749 struct rpc_xprt *xprt = task->tk_xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 unsigned int bufsiz;
751
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800752 dprintk("RPC: %4d call_allocate (status %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 task->tk_pid, task->tk_status);
754 task->tk_action = call_bind;
Chuck Lever02107142006-01-03 09:55:49 +0100755 if (req->rq_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return;
757
758 /* FIXME: compute buffer requirements more exactly using
759 * auth->au_wslack */
760 bufsiz = task->tk_msg.rpc_proc->p_bufsiz + RPC_SLACK_SPACE;
761
Chuck Lever02107142006-01-03 09:55:49 +0100762 if (xprt->ops->buf_alloc(task, bufsiz << 1) != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return;
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800764 printk(KERN_INFO "RPC: buffer allocation failed for task %p\n", task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Trond Myklebust14b218a2005-06-22 17:16:28 +0000766 if (RPC_IS_ASYNC(task) || !signalled()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 xprt_release(task);
768 task->tk_action = call_reserve;
769 rpc_delay(task, HZ>>4);
770 return;
771 }
772
773 rpc_exit(task, -ERESTARTSYS);
774}
775
Trond Myklebust940e3312005-11-09 21:45:24 -0500776static inline int
777rpc_task_need_encode(struct rpc_task *task)
778{
779 return task->tk_rqstp->rq_snd_buf.len == 0;
780}
781
782static inline void
783rpc_task_force_reencode(struct rpc_task *task)
784{
785 task->tk_rqstp->rq_snd_buf.len = 0;
786}
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788/*
789 * 3. Encode arguments of an RPC call
790 */
791static void
792call_encode(struct rpc_task *task)
793{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 struct rpc_rqst *req = task->tk_rqstp;
795 struct xdr_buf *sndbuf = &req->rq_snd_buf;
796 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
797 unsigned int bufsiz;
798 kxdrproc_t encode;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700799 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800801 dprintk("RPC: %4d call_encode (status %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 task->tk_pid, task->tk_status);
803
804 /* Default buffer setup */
Chuck Lever02107142006-01-03 09:55:49 +0100805 bufsiz = req->rq_bufsize >> 1;
806 sndbuf->head[0].iov_base = (void *)req->rq_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 sndbuf->head[0].iov_len = bufsiz;
808 sndbuf->tail[0].iov_len = 0;
809 sndbuf->page_len = 0;
810 sndbuf->len = 0;
811 sndbuf->buflen = bufsiz;
Chuck Lever02107142006-01-03 09:55:49 +0100812 rcvbuf->head[0].iov_base = (void *)((char *)req->rq_buffer + bufsiz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 rcvbuf->head[0].iov_len = bufsiz;
814 rcvbuf->tail[0].iov_len = 0;
815 rcvbuf->page_len = 0;
816 rcvbuf->len = 0;
817 rcvbuf->buflen = bufsiz;
818
819 /* Encode header and provided arguments */
820 encode = task->tk_msg.rpc_proc->p_encode;
821 if (!(p = call_header(task))) {
822 printk(KERN_INFO "RPC: call_header failed, exit EIO\n");
823 rpc_exit(task, -EIO);
824 return;
825 }
J. Bruce Fieldsf3680312005-10-13 16:54:48 -0400826 if (encode == NULL)
827 return;
828
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400829 lock_kernel();
J. Bruce Fieldsf3680312005-10-13 16:54:48 -0400830 task->tk_status = rpcauth_wrap_req(task, encode, req, p,
831 task->tk_msg.rpc_argp);
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400832 unlock_kernel();
J. Bruce Fieldsf3680312005-10-13 16:54:48 -0400833 if (task->tk_status == -ENOMEM) {
834 /* XXX: Is this sane? */
835 rpc_delay(task, 3*HZ);
836 task->tk_status = -EAGAIN;
837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
840/*
841 * 4. Get the server port number if not yet set
842 */
843static void
844call_bind(struct rpc_task *task)
845{
Chuck Leverec739ef2006-08-22 20:06:15 -0400846 struct rpc_xprt *xprt = task->tk_xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Chuck Leverda351872005-08-11 16:25:11 -0400848 dprintk("RPC: %4d call_bind (status %d)\n",
849 task->tk_pid, task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Chuck Leverda351872005-08-11 16:25:11 -0400851 task->tk_action = call_connect;
Chuck Leverec739ef2006-08-22 20:06:15 -0400852 if (!xprt_bound(xprt)) {
Chuck Leverda351872005-08-11 16:25:11 -0400853 task->tk_action = call_bind_status;
Chuck Leverec739ef2006-08-22 20:06:15 -0400854 task->tk_timeout = xprt->bind_timeout;
Chuck Leverbbf7c1d2006-08-22 20:06:16 -0400855 xprt->ops->rpcbind(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
857}
858
859/*
Chuck Leverda351872005-08-11 16:25:11 -0400860 * 4a. Sort out bind result
861 */
862static void
863call_bind_status(struct rpc_task *task)
864{
865 int status = -EACCES;
866
867 if (task->tk_status >= 0) {
868 dprintk("RPC: %4d call_bind_status (status %d)\n",
869 task->tk_pid, task->tk_status);
870 task->tk_status = 0;
871 task->tk_action = call_connect;
872 return;
873 }
874
875 switch (task->tk_status) {
876 case -EACCES:
877 dprintk("RPC: %4d remote rpcbind: RPC program/version unavailable\n",
878 task->tk_pid);
Chuck Leverea635a52005-10-06 23:12:58 -0400879 rpc_delay(task, 3*HZ);
Trond Myklebustda458282006-08-31 15:44:52 -0400880 goto retry_timeout;
Chuck Leverda351872005-08-11 16:25:11 -0400881 case -ETIMEDOUT:
882 dprintk("RPC: %4d rpcbind request timed out\n",
883 task->tk_pid);
Trond Myklebustda458282006-08-31 15:44:52 -0400884 goto retry_timeout;
Chuck Leverda351872005-08-11 16:25:11 -0400885 case -EPFNOSUPPORT:
886 dprintk("RPC: %4d remote rpcbind service unavailable\n",
887 task->tk_pid);
888 break;
889 case -EPROTONOSUPPORT:
890 dprintk("RPC: %4d remote rpcbind version 2 unavailable\n",
891 task->tk_pid);
892 break;
893 default:
894 dprintk("RPC: %4d unrecognized rpcbind error (%d)\n",
895 task->tk_pid, -task->tk_status);
896 status = -EIO;
Chuck Leverda351872005-08-11 16:25:11 -0400897 }
898
899 rpc_exit(task, status);
900 return;
901
Trond Myklebustda458282006-08-31 15:44:52 -0400902retry_timeout:
903 task->tk_action = call_timeout;
Chuck Leverda351872005-08-11 16:25:11 -0400904}
905
906/*
907 * 4b. Connect to the RPC server
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 */
909static void
910call_connect(struct rpc_task *task)
911{
Chuck Leverda351872005-08-11 16:25:11 -0400912 struct rpc_xprt *xprt = task->tk_xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Chuck Leverda351872005-08-11 16:25:11 -0400914 dprintk("RPC: %4d call_connect xprt %p %s connected\n",
915 task->tk_pid, xprt,
916 (xprt_connected(xprt) ? "is" : "is not"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Chuck Leverda351872005-08-11 16:25:11 -0400918 task->tk_action = call_transmit;
919 if (!xprt_connected(xprt)) {
920 task->tk_action = call_connect_status;
921 if (task->tk_status < 0)
922 return;
923 xprt_connect(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
926
927/*
Chuck Leverda351872005-08-11 16:25:11 -0400928 * 4c. Sort out connect result
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 */
930static void
931call_connect_status(struct rpc_task *task)
932{
933 struct rpc_clnt *clnt = task->tk_client;
934 int status = task->tk_status;
935
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800936 dprintk("RPC: %5u call_connect_status (status %d)\n",
Chuck Leverda351872005-08-11 16:25:11 -0400937 task->tk_pid, task->tk_status);
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 task->tk_status = 0;
940 if (status >= 0) {
941 clnt->cl_stats->netreconn++;
942 task->tk_action = call_transmit;
943 return;
944 }
945
Chuck Leverda351872005-08-11 16:25:11 -0400946 /* Something failed: remote service port may have changed */
Chuck Lever35f5a422006-01-03 09:55:50 +0100947 rpc_force_rebind(clnt);
Chuck Leverda351872005-08-11 16:25:11 -0400948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 switch (status) {
950 case -ENOTCONN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 case -EAGAIN:
Chuck Leverda351872005-08-11 16:25:11 -0400952 task->tk_action = call_bind;
Trond Myklebustda458282006-08-31 15:44:52 -0400953 if (!RPC_IS_SOFT(task))
954 return;
955 /* if soft mounted, test if we've timed out */
956 case -ETIMEDOUT:
957 task->tk_action = call_timeout;
958 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 }
Trond Myklebustda458282006-08-31 15:44:52 -0400960 rpc_exit(task, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
963/*
964 * 5. Transmit the RPC request, and wait for reply
965 */
966static void
967call_transmit(struct rpc_task *task)
968{
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800969 dprintk("RPC: %4d call_transmit (status %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 task->tk_pid, task->tk_status);
971
972 task->tk_action = call_status;
973 if (task->tk_status < 0)
974 return;
975 task->tk_status = xprt_prepare_transmit(task);
976 if (task->tk_status != 0)
977 return;
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400978 task->tk_action = call_transmit_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 /* Encode here so that rpcsec_gss can use correct sequence number. */
Trond Myklebust940e3312005-11-09 21:45:24 -0500980 if (rpc_task_need_encode(task)) {
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400981 BUG_ON(task->tk_rqstp->rq_bytes_sent != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 call_encode(task);
Trond Myklebust5e5ce5b2005-10-18 14:20:11 -0700983 /* Did the encode result in an error condition? */
984 if (task->tk_status != 0)
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400985 return;
Trond Myklebust5e5ce5b2005-10-18 14:20:11 -0700986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 xprt_transmit(task);
988 if (task->tk_status < 0)
989 return;
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400990 /*
991 * On success, ensure that we call xprt_end_transmit() before sleeping
992 * in order to allow access to the socket to other RPC requests.
993 */
994 call_transmit_status(task);
995 if (task->tk_msg.rpc_proc->p_decode != NULL)
996 return;
997 task->tk_action = rpc_exit_task;
998 rpc_wake_up_task(task);
999}
1000
1001/*
1002 * 5a. Handle cleanup after a transmission
1003 */
1004static void
1005call_transmit_status(struct rpc_task *task)
1006{
1007 task->tk_action = call_status;
1008 /*
1009 * Special case: if we've been waiting on the socket's write_space()
1010 * callback, then don't call xprt_end_transmit().
1011 */
1012 if (task->tk_status == -EAGAIN)
1013 return;
1014 xprt_end_transmit(task);
Trond Myklebust940e3312005-11-09 21:45:24 -05001015 rpc_task_force_reencode(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016}
1017
1018/*
1019 * 6. Sort out the RPC call status
1020 */
1021static void
1022call_status(struct rpc_task *task)
1023{
1024 struct rpc_clnt *clnt = task->tk_client;
1025 struct rpc_rqst *req = task->tk_rqstp;
1026 int status;
1027
1028 if (req->rq_received > 0 && !req->rq_bytes_sent)
1029 task->tk_status = req->rq_received;
1030
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001031 dprintk("RPC: %4d call_status (status %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 task->tk_pid, task->tk_status);
1033
1034 status = task->tk_status;
1035 if (status >= 0) {
1036 task->tk_action = call_decode;
1037 return;
1038 }
1039
1040 task->tk_status = 0;
1041 switch(status) {
Trond Myklebust76303992006-08-30 14:32:49 -04001042 case -EHOSTDOWN:
1043 case -EHOSTUNREACH:
1044 case -ENETUNREACH:
1045 /*
1046 * Delay any retries for 3 seconds, then handle as if it
1047 * were a timeout.
1048 */
1049 rpc_delay(task, 3*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 case -ETIMEDOUT:
1051 task->tk_action = call_timeout;
1052 break;
1053 case -ECONNREFUSED:
1054 case -ENOTCONN:
Chuck Lever35f5a422006-01-03 09:55:50 +01001055 rpc_force_rebind(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 task->tk_action = call_bind;
1057 break;
1058 case -EAGAIN:
1059 task->tk_action = call_transmit;
1060 break;
1061 case -EIO:
1062 /* shutdown or soft timeout */
1063 rpc_exit(task, status);
1064 break;
1065 default:
Chuck Leverf518e35a2006-01-03 09:55:52 +01001066 printk("%s: RPC call returned error %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 clnt->cl_protname, -status);
1068 rpc_exit(task, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 }
1070}
1071
1072/*
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04001073 * 6a. Handle RPC timeout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 * We do not release the request slot, so we keep using the
1075 * same XID for all retransmits.
1076 */
1077static void
1078call_timeout(struct rpc_task *task)
1079{
1080 struct rpc_clnt *clnt = task->tk_client;
1081
1082 if (xprt_adjust_timeout(task->tk_rqstp) == 0) {
1083 dprintk("RPC: %4d call_timeout (minor)\n", task->tk_pid);
1084 goto retry;
1085 }
1086
1087 dprintk("RPC: %4d call_timeout (major)\n", task->tk_pid);
Chuck Leveref759a22006-03-20 13:44:17 -05001088 task->tk_timeouts++;
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 if (RPC_IS_SOFT(task)) {
Chuck Leverf518e35a2006-01-03 09:55:52 +01001091 printk(KERN_NOTICE "%s: server %s not responding, timed out\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 clnt->cl_protname, clnt->cl_server);
1093 rpc_exit(task, -EIO);
1094 return;
1095 }
1096
Chuck Leverf518e35a2006-01-03 09:55:52 +01001097 if (!(task->tk_flags & RPC_CALL_MAJORSEEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 task->tk_flags |= RPC_CALL_MAJORSEEN;
1099 printk(KERN_NOTICE "%s: server %s not responding, still trying\n",
1100 clnt->cl_protname, clnt->cl_server);
1101 }
Chuck Lever35f5a422006-01-03 09:55:50 +01001102 rpc_force_rebind(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104retry:
1105 clnt->cl_stats->rpcretrans++;
1106 task->tk_action = call_bind;
1107 task->tk_status = 0;
1108}
1109
1110/*
1111 * 7. Decode the RPC reply
1112 */
1113static void
1114call_decode(struct rpc_task *task)
1115{
1116 struct rpc_clnt *clnt = task->tk_client;
1117 struct rpc_rqst *req = task->tk_rqstp;
1118 kxdrproc_t decode = task->tk_msg.rpc_proc->p_decode;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001119 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001121 dprintk("RPC: %4d call_decode (status %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 task->tk_pid, task->tk_status);
1123
Chuck Leverf518e35a2006-01-03 09:55:52 +01001124 if (task->tk_flags & RPC_CALL_MAJORSEEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 printk(KERN_NOTICE "%s: server %s OK\n",
1126 clnt->cl_protname, clnt->cl_server);
1127 task->tk_flags &= ~RPC_CALL_MAJORSEEN;
1128 }
1129
1130 if (task->tk_status < 12) {
1131 if (!RPC_IS_SOFT(task)) {
1132 task->tk_action = call_bind;
1133 clnt->cl_stats->rpcretrans++;
1134 goto out_retry;
1135 }
Trond Myklebustda458282006-08-31 15:44:52 -04001136 dprintk("%s: too small RPC reply size (%d bytes)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 clnt->cl_protname, task->tk_status);
Trond Myklebustda458282006-08-31 15:44:52 -04001138 task->tk_action = call_timeout;
1139 goto out_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 }
1141
Trond Myklebust43ac3f22006-03-20 13:44:51 -05001142 /*
1143 * Ensure that we see all writes made by xprt_complete_rqst()
1144 * before it changed req->rq_received.
1145 */
1146 smp_rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 req->rq_rcv_buf.len = req->rq_private_buf.len;
1148
1149 /* Check that the softirq receive buffer is valid */
1150 WARN_ON(memcmp(&req->rq_rcv_buf, &req->rq_private_buf,
1151 sizeof(req->rq_rcv_buf)) != 0);
1152
1153 /* Verify the RPC header */
Trond Myklebustabbcf282006-01-03 09:55:03 +01001154 p = call_verify(task);
1155 if (IS_ERR(p)) {
1156 if (p == ERR_PTR(-EAGAIN))
1157 goto out_retry;
1158 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
1160
Trond Myklebustabbcf282006-01-03 09:55:03 +01001161 task->tk_action = rpc_exit_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Trond Myklebust6d5fcb52006-10-18 16:01:06 -04001163 if (decode) {
1164 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 task->tk_status = rpcauth_unwrap_resp(task, decode, req, p,
1166 task->tk_msg.rpc_resp);
Trond Myklebust6d5fcb52006-10-18 16:01:06 -04001167 unlock_kernel();
1168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 dprintk("RPC: %4d call_decode result %d\n", task->tk_pid,
1170 task->tk_status);
1171 return;
1172out_retry:
1173 req->rq_received = req->rq_private_buf.len = 0;
1174 task->tk_status = 0;
1175}
1176
1177/*
1178 * 8. Refresh the credentials if rejected by the server
1179 */
1180static void
1181call_refresh(struct rpc_task *task)
1182{
1183 dprintk("RPC: %4d call_refresh\n", task->tk_pid);
1184
1185 xprt_release(task); /* Must do to obtain new XID */
1186 task->tk_action = call_refreshresult;
1187 task->tk_status = 0;
1188 task->tk_client->cl_stats->rpcauthrefresh++;
1189 rpcauth_refreshcred(task);
1190}
1191
1192/*
1193 * 8a. Process the results of a credential refresh
1194 */
1195static void
1196call_refreshresult(struct rpc_task *task)
1197{
1198 int status = task->tk_status;
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001199 dprintk("RPC: %4d call_refreshresult (status %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 task->tk_pid, task->tk_status);
1201
1202 task->tk_status = 0;
1203 task->tk_action = call_reserve;
1204 if (status >= 0 && rpcauth_uptodatecred(task))
1205 return;
1206 if (status == -EACCES) {
1207 rpc_exit(task, -EACCES);
1208 return;
1209 }
1210 task->tk_action = call_refresh;
1211 if (status != -ETIMEDOUT)
1212 rpc_delay(task, 3*HZ);
1213 return;
1214}
1215
1216/*
1217 * Call header serialization
1218 */
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001219static __be32 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220call_header(struct rpc_task *task)
1221{
1222 struct rpc_clnt *clnt = task->tk_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 struct rpc_rqst *req = task->tk_rqstp;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001224 __be32 *p = req->rq_svec[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226 /* FIXME: check buffer size? */
Chuck Lever808012f2005-08-25 16:25:49 -07001227
1228 p = xprt_skip_transport_header(task->tk_xprt, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 *p++ = req->rq_xid; /* XID */
1230 *p++ = htonl(RPC_CALL); /* CALL */
1231 *p++ = htonl(RPC_VERSION); /* RPC version */
1232 *p++ = htonl(clnt->cl_prog); /* program number */
1233 *p++ = htonl(clnt->cl_vers); /* program version */
1234 *p++ = htonl(task->tk_msg.rpc_proc->p_proc); /* procedure */
Trond Myklebust334ccfd2005-06-22 17:16:19 +00001235 p = rpcauth_marshcred(task, p);
1236 req->rq_slen = xdr_adjust_iovec(&req->rq_svec[0], p);
1237 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238}
1239
1240/*
1241 * Reply header verification
1242 */
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001243static __be32 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244call_verify(struct rpc_task *task)
1245{
1246 struct kvec *iov = &task->tk_rqstp->rq_rcv_buf.head[0];
1247 int len = task->tk_rqstp->rq_rcv_buf.len >> 2;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001248 __be32 *p = iov->iov_base;
1249 u32 n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 int error = -EACCES;
1251
David Howellse8896492006-08-24 15:44:19 -04001252 if ((task->tk_rqstp->rq_rcv_buf.len & 3) != 0) {
1253 /* RFC-1014 says that the representation of XDR data must be a
1254 * multiple of four bytes
1255 * - if it isn't pointer subtraction in the NFS client may give
1256 * undefined results
1257 */
1258 printk(KERN_WARNING
1259 "call_verify: XDR representation not a multiple of"
1260 " 4 bytes: 0x%x\n", task->tk_rqstp->rq_rcv_buf.len);
1261 goto out_eio;
1262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 if ((len -= 3) < 0)
1264 goto out_overflow;
1265 p += 1; /* skip XID */
1266
1267 if ((n = ntohl(*p++)) != RPC_REPLY) {
1268 printk(KERN_WARNING "call_verify: not an RPC reply: %x\n", n);
Trond Myklebustabbcf282006-01-03 09:55:03 +01001269 goto out_garbage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
1271 if ((n = ntohl(*p++)) != RPC_MSG_ACCEPTED) {
1272 if (--len < 0)
1273 goto out_overflow;
1274 switch ((n = ntohl(*p++))) {
1275 case RPC_AUTH_ERROR:
1276 break;
1277 case RPC_MISMATCH:
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001278 dprintk("%s: RPC call version mismatch!\n", __FUNCTION__);
1279 error = -EPROTONOSUPPORT;
1280 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 default:
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001282 dprintk("%s: RPC call rejected, unknown error: %x\n", __FUNCTION__, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 goto out_eio;
1284 }
1285 if (--len < 0)
1286 goto out_overflow;
1287 switch ((n = ntohl(*p++))) {
1288 case RPC_AUTH_REJECTEDCRED:
1289 case RPC_AUTH_REJECTEDVERF:
1290 case RPCSEC_GSS_CREDPROBLEM:
1291 case RPCSEC_GSS_CTXPROBLEM:
1292 if (!task->tk_cred_retry)
1293 break;
1294 task->tk_cred_retry--;
1295 dprintk("RPC: %4d call_verify: retry stale creds\n",
1296 task->tk_pid);
1297 rpcauth_invalcred(task);
1298 task->tk_action = call_refresh;
Trond Myklebustabbcf282006-01-03 09:55:03 +01001299 goto out_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 case RPC_AUTH_BADCRED:
1301 case RPC_AUTH_BADVERF:
1302 /* possibly garbled cred/verf? */
1303 if (!task->tk_garb_retry)
1304 break;
1305 task->tk_garb_retry--;
1306 dprintk("RPC: %4d call_verify: retry garbled creds\n",
1307 task->tk_pid);
1308 task->tk_action = call_bind;
Trond Myklebustabbcf282006-01-03 09:55:03 +01001309 goto out_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 case RPC_AUTH_TOOWEAK:
Levent Serinol1356b8c2006-03-20 13:44:11 -05001311 printk(KERN_NOTICE "call_verify: server %s requires stronger "
1312 "authentication.\n", task->tk_client->cl_server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 break;
1314 default:
1315 printk(KERN_WARNING "call_verify: unknown auth error: %x\n", n);
1316 error = -EIO;
1317 }
1318 dprintk("RPC: %4d call_verify: call rejected %d\n",
1319 task->tk_pid, n);
1320 goto out_err;
1321 }
1322 if (!(p = rpcauth_checkverf(task, p))) {
1323 printk(KERN_WARNING "call_verify: auth check failed\n");
Trond Myklebustabbcf282006-01-03 09:55:03 +01001324 goto out_garbage; /* bad verifier, retry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 }
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001326 len = p - (__be32 *)iov->iov_base - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 if (len < 0)
1328 goto out_overflow;
1329 switch ((n = ntohl(*p++))) {
1330 case RPC_SUCCESS:
1331 return p;
1332 case RPC_PROG_UNAVAIL:
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001333 dprintk("RPC: call_verify: program %u is unsupported by server %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 (unsigned int)task->tk_client->cl_prog,
1335 task->tk_client->cl_server);
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001336 error = -EPFNOSUPPORT;
1337 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 case RPC_PROG_MISMATCH:
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001339 dprintk("RPC: call_verify: program %u, version %u unsupported by server %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 (unsigned int)task->tk_client->cl_prog,
1341 (unsigned int)task->tk_client->cl_vers,
1342 task->tk_client->cl_server);
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001343 error = -EPROTONOSUPPORT;
1344 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 case RPC_PROC_UNAVAIL:
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001346 dprintk("RPC: call_verify: proc %p unsupported by program %u, version %u on server %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 task->tk_msg.rpc_proc,
1348 task->tk_client->cl_prog,
1349 task->tk_client->cl_vers,
1350 task->tk_client->cl_server);
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001351 error = -EOPNOTSUPP;
1352 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 case RPC_GARBAGE_ARGS:
1354 dprintk("RPC: %4d %s: server saw garbage\n", task->tk_pid, __FUNCTION__);
1355 break; /* retry */
1356 default:
1357 printk(KERN_WARNING "call_verify: server accept status: %x\n", n);
1358 /* Also retry */
1359 }
1360
Trond Myklebustabbcf282006-01-03 09:55:03 +01001361out_garbage:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 task->tk_client->cl_stats->rpcgarbage++;
1363 if (task->tk_garb_retry) {
1364 task->tk_garb_retry--;
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001365 dprintk("RPC %s: retrying %4d\n", __FUNCTION__, task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 task->tk_action = call_bind;
Trond Myklebustabbcf282006-01-03 09:55:03 +01001367out_retry:
1368 return ERR_PTR(-EAGAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 }
1370 printk(KERN_WARNING "RPC %s: retry failed, exit EIO\n", __FUNCTION__);
1371out_eio:
1372 error = -EIO;
1373out_err:
1374 rpc_exit(task, error);
Trond Myklebustabbcf282006-01-03 09:55:03 +01001375 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376out_overflow:
1377 printk(KERN_WARNING "RPC %s: server reply was truncated.\n", __FUNCTION__);
Trond Myklebustabbcf282006-01-03 09:55:03 +01001378 goto out_garbage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379}
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00001380
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001381static int rpcproc_encode_null(void *rqstp, __be32 *data, void *obj)
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00001382{
1383 return 0;
1384}
1385
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001386static int rpcproc_decode_null(void *rqstp, __be32 *data, void *obj)
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00001387{
1388 return 0;
1389}
1390
1391static struct rpc_procinfo rpcproc_null = {
1392 .p_encode = rpcproc_encode_null,
1393 .p_decode = rpcproc_decode_null,
1394};
1395
1396int rpc_ping(struct rpc_clnt *clnt, int flags)
1397{
1398 struct rpc_message msg = {
1399 .rpc_proc = &rpcproc_null,
1400 };
1401 int err;
1402 msg.rpc_cred = authnull_ops.lookup_cred(NULL, NULL, 0);
1403 err = rpc_call_sync(clnt, &msg, flags);
1404 put_rpccred(msg.rpc_cred);
1405 return err;
1406}