make nfs_automount_list static
[linux-2.6-block.git] / net / sunrpc / clnt.c
CommitLineData
1da177e4 1/*
55aa4f58 2 * linux/net/sunrpc/clnt.c
1da177e4
LT
3 *
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>
6d5fcb5a 30#include <linux/smp_lock.h>
1da177e4 31#include <linux/utsname.h>
11c556b3 32#include <linux/workqueue.h>
510deb0d 33#include <linux/in6.h>
1da177e4
LT
34
35#include <linux/sunrpc/clnt.h>
1da177e4 36#include <linux/sunrpc/rpc_pipe_fs.h>
11c556b3 37#include <linux/sunrpc/metrics.h>
1da177e4
LT
38
39
1da177e4
LT
40#ifdef RPC_DEBUG
41# define RPCDBG_FACILITY RPCDBG_CALL
42#endif
43
46121cf7
CL
44#define dprint_status(t) \
45 dprintk("RPC: %5u %s (status %d)\n", t->tk_pid, \
46 __FUNCTION__, t->tk_status)
47
188fef11
TM
48/*
49 * All RPC clients are linked into this list
50 */
51static LIST_HEAD(all_clients);
52static DEFINE_SPINLOCK(rpc_client_lock);
53
1da177e4
LT
54static DECLARE_WAIT_QUEUE_HEAD(destroy_wait);
55
56
57static void call_start(struct rpc_task *task);
58static void call_reserve(struct rpc_task *task);
59static void call_reserveresult(struct rpc_task *task);
60static void call_allocate(struct rpc_task *task);
61static void call_encode(struct rpc_task *task);
62static void call_decode(struct rpc_task *task);
63static void call_bind(struct rpc_task *task);
da351878 64static void call_bind_status(struct rpc_task *task);
1da177e4
LT
65static void call_transmit(struct rpc_task *task);
66static void call_status(struct rpc_task *task);
940e3318 67static void call_transmit_status(struct rpc_task *task);
1da177e4
LT
68static void call_refresh(struct rpc_task *task);
69static void call_refreshresult(struct rpc_task *task);
70static void call_timeout(struct rpc_task *task);
71static void call_connect(struct rpc_task *task);
72static void call_connect_status(struct rpc_task *task);
d8ed029d
AD
73static __be32 * call_header(struct rpc_task *task);
74static __be32 * call_verify(struct rpc_task *task);
1da177e4 75
64c91a1f
TM
76static int rpc_ping(struct rpc_clnt *clnt, int flags);
77
188fef11
TM
78static void rpc_register_client(struct rpc_clnt *clnt)
79{
80 spin_lock(&rpc_client_lock);
81 list_add(&clnt->cl_clients, &all_clients);
82 spin_unlock(&rpc_client_lock);
83}
84
85static void rpc_unregister_client(struct rpc_clnt *clnt)
86{
87 spin_lock(&rpc_client_lock);
88 list_del(&clnt->cl_clients);
89 spin_unlock(&rpc_client_lock);
90}
1da177e4
LT
91
92static int
93rpc_setup_pipedir(struct rpc_clnt *clnt, char *dir_name)
94{
f134585a 95 static uint32_t clntid;
1da177e4
LT
96 int error;
97
54281548
TM
98 clnt->cl_vfsmnt = ERR_PTR(-ENOENT);
99 clnt->cl_dentry = ERR_PTR(-ENOENT);
1da177e4
LT
100 if (dir_name == NULL)
101 return 0;
54281548
TM
102
103 clnt->cl_vfsmnt = rpc_get_mount();
104 if (IS_ERR(clnt->cl_vfsmnt))
105 return PTR_ERR(clnt->cl_vfsmnt);
106
f134585a
TM
107 for (;;) {
108 snprintf(clnt->cl_pathname, sizeof(clnt->cl_pathname),
109 "%s/clnt%x", dir_name,
110 (unsigned int)clntid++);
111 clnt->cl_pathname[sizeof(clnt->cl_pathname) - 1] = '\0';
112 clnt->cl_dentry = rpc_mkdir(clnt->cl_pathname, clnt);
113 if (!IS_ERR(clnt->cl_dentry))
114 return 0;
1da177e4 115 error = PTR_ERR(clnt->cl_dentry);
f134585a
TM
116 if (error != -EEXIST) {
117 printk(KERN_INFO "RPC: Couldn't create pipefs entry %s, error %d\n",
118 clnt->cl_pathname, error);
54281548 119 rpc_put_mount();
f134585a
TM
120 return error;
121 }
1da177e4
LT
122 }
123}
124
698b6d08 125static struct rpc_clnt * rpc_new_client(const struct rpc_create_args *args, struct rpc_xprt *xprt)
1da177e4 126{
698b6d08 127 struct rpc_program *program = args->program;
1da177e4
LT
128 struct rpc_version *version;
129 struct rpc_clnt *clnt = NULL;
6a19275a 130 struct rpc_auth *auth;
1da177e4 131 int err;
06b8d255
CL
132 size_t len;
133
134 /* sanity check the name before trying to print it */
135 err = -EINVAL;
698b6d08 136 len = strlen(args->servername);
06b8d255
CL
137 if (len > RPC_MAXNETNAMELEN)
138 goto out_no_rpciod;
139 len++;
1da177e4 140
46121cf7 141 dprintk("RPC: creating %s client for %s (xprt %p)\n",
698b6d08 142 program->name, args->servername, xprt);
1da177e4 143
4ada539e
TM
144 err = rpciod_up();
145 if (err)
146 goto out_no_rpciod;
1da177e4
LT
147 err = -EINVAL;
148 if (!xprt)
712917d1 149 goto out_no_xprt;
698b6d08
TM
150
151 if (args->version >= program->nrvers)
152 goto out_err;
153 version = program->version[args->version];
154 if (version == NULL)
1da177e4
LT
155 goto out_err;
156
157 err = -ENOMEM;
0da974f4 158 clnt = kzalloc(sizeof(*clnt), GFP_KERNEL);
1da177e4
LT
159 if (!clnt)
160 goto out_err;
1da177e4
LT
161 clnt->cl_parent = clnt;
162
163 clnt->cl_server = clnt->cl_inline_name;
1da177e4
LT
164 if (len > sizeof(clnt->cl_inline_name)) {
165 char *buf = kmalloc(len, GFP_KERNEL);
698b6d08 166 if (buf != NULL)
1da177e4
LT
167 clnt->cl_server = buf;
168 else
169 len = sizeof(clnt->cl_inline_name);
170 }
698b6d08 171 strlcpy(clnt->cl_server, args->servername, len);
1da177e4
LT
172
173 clnt->cl_xprt = xprt;
174 clnt->cl_procinfo = version->procs;
175 clnt->cl_maxproc = version->nrprocs;
176 clnt->cl_protname = program->name;
1da177e4
LT
177 clnt->cl_prog = program->number;
178 clnt->cl_vers = version->number;
1da177e4 179 clnt->cl_stats = program->stats;
11c556b3 180 clnt->cl_metrics = rpc_alloc_iostats(clnt);
23bf85ba
TM
181 err = -ENOMEM;
182 if (clnt->cl_metrics == NULL)
183 goto out_no_stats;
3e32a5d9 184 clnt->cl_program = program;
6529eba0 185 INIT_LIST_HEAD(&clnt->cl_tasks);
4bef61ff 186 spin_lock_init(&clnt->cl_lock);
1da177e4 187
ec739ef0 188 if (!xprt_bound(clnt->cl_xprt))
1da177e4
LT
189 clnt->cl_autobind = 1;
190
ba7392bb
TM
191 clnt->cl_timeout = xprt->timeout;
192 if (args->timeout != NULL) {
193 memcpy(&clnt->cl_timeout_default, args->timeout,
194 sizeof(clnt->cl_timeout_default));
195 clnt->cl_timeout = &clnt->cl_timeout_default;
196 }
197
1da177e4 198 clnt->cl_rtt = &clnt->cl_rtt_default;
ba7392bb 199 rpc_init_rtt(&clnt->cl_rtt_default, clnt->cl_timeout->to_initval);
1da177e4 200
34f52e35
TM
201 kref_init(&clnt->cl_kref);
202
1da177e4
LT
203 err = rpc_setup_pipedir(clnt, program->pipe_dir_name);
204 if (err < 0)
205 goto out_no_path;
206
698b6d08 207 auth = rpcauth_create(args->authflavor, clnt);
6a19275a 208 if (IS_ERR(auth)) {
1da177e4 209 printk(KERN_INFO "RPC: Couldn't create auth handle (flavor %u)\n",
698b6d08 210 args->authflavor);
6a19275a 211 err = PTR_ERR(auth);
1da177e4
LT
212 goto out_no_auth;
213 }
214
215 /* save the nodename */
e9ff3990 216 clnt->cl_nodelen = strlen(utsname()->nodename);
1da177e4
LT
217 if (clnt->cl_nodelen > UNX_MAXNODENAME)
218 clnt->cl_nodelen = UNX_MAXNODENAME;
e9ff3990 219 memcpy(clnt->cl_nodename, utsname()->nodename, clnt->cl_nodelen);
6529eba0 220 rpc_register_client(clnt);
1da177e4
LT
221 return clnt;
222
223out_no_auth:
54281548 224 if (!IS_ERR(clnt->cl_dentry)) {
dff02cc1 225 rpc_rmdir(clnt->cl_dentry);
54281548
TM
226 rpc_put_mount();
227 }
1da177e4 228out_no_path:
23bf85ba
TM
229 rpc_free_iostats(clnt->cl_metrics);
230out_no_stats:
1da177e4
LT
231 if (clnt->cl_server != clnt->cl_inline_name)
232 kfree(clnt->cl_server);
233 kfree(clnt);
234out_err:
6b6ca86b 235 xprt_put(xprt);
712917d1 236out_no_xprt:
4ada539e
TM
237 rpciod_down();
238out_no_rpciod:
1da177e4
LT
239 return ERR_PTR(err);
240}
241
c2866763
CL
242/*
243 * rpc_create - create an RPC client and transport with one call
244 * @args: rpc_clnt create argument structure
245 *
246 * Creates and initializes an RPC transport and an RPC client.
247 *
248 * It can ping the server in order to determine if it is up, and to see if
249 * it supports this program and version. RPC_CLNT_CREATE_NOPING disables
250 * this behavior so asynchronous tasks can also use rpc_create.
251 */
252struct rpc_clnt *rpc_create(struct rpc_create_args *args)
253{
254 struct rpc_xprt *xprt;
255 struct rpc_clnt *clnt;
3c341b0b 256 struct xprt_create xprtargs = {
4fa016eb 257 .ident = args->protocol,
d3bc9a1d 258 .srcaddr = args->saddress,
96802a09
FM
259 .dstaddr = args->address,
260 .addrlen = args->addrsize,
96802a09 261 };
510deb0d 262 char servername[48];
c2866763 263
96802a09 264 xprt = xprt_create_transport(&xprtargs);
c2866763
CL
265 if (IS_ERR(xprt))
266 return (struct rpc_clnt *)xprt;
267
43780b87
CL
268 /*
269 * If the caller chooses not to specify a hostname, whip
270 * up a string representation of the passed-in address.
271 */
272 if (args->servername == NULL) {
510deb0d
CL
273 servername[0] = '\0';
274 switch (args->address->sa_family) {
275 case AF_INET: {
276 struct sockaddr_in *sin =
277 (struct sockaddr_in *)args->address;
278 snprintf(servername, sizeof(servername), NIPQUAD_FMT,
279 NIPQUAD(sin->sin_addr.s_addr));
280 break;
281 }
282 case AF_INET6: {
283 struct sockaddr_in6 *sin =
284 (struct sockaddr_in6 *)args->address;
285 snprintf(servername, sizeof(servername), NIP6_FMT,
286 NIP6(sin->sin6_addr));
287 break;
288 }
289 default:
290 /* caller wants default server name, but
291 * address family isn't recognized. */
292 return ERR_PTR(-EINVAL);
293 }
43780b87
CL
294 args->servername = servername;
295 }
296
510deb0d
CL
297 xprt = xprt_create_transport(&xprtargs);
298 if (IS_ERR(xprt))
299 return (struct rpc_clnt *)xprt;
300
c2866763
CL
301 /*
302 * By default, kernel RPC client connects from a reserved port.
303 * CAP_NET_BIND_SERVICE will not be set for unprivileged requesters,
304 * but it is always enabled for rpciod, which handles the connect
305 * operation.
306 */
307 xprt->resvport = 1;
308 if (args->flags & RPC_CLNT_CREATE_NONPRIVPORT)
309 xprt->resvport = 0;
310
698b6d08 311 clnt = rpc_new_client(args, xprt);
c2866763
CL
312 if (IS_ERR(clnt))
313 return clnt;
314
315 if (!(args->flags & RPC_CLNT_CREATE_NOPING)) {
150030b7 316 int err = rpc_ping(clnt, RPC_TASK_SOFT);
c2866763
CL
317 if (err != 0) {
318 rpc_shutdown_client(clnt);
319 return ERR_PTR(err);
320 }
321 }
322
323 clnt->cl_softrtry = 1;
324 if (args->flags & RPC_CLNT_CREATE_HARDRTRY)
325 clnt->cl_softrtry = 0;
326
c2866763
CL
327 if (args->flags & RPC_CLNT_CREATE_AUTOBIND)
328 clnt->cl_autobind = 1;
43d78ef2
CL
329 if (args->flags & RPC_CLNT_CREATE_DISCRTRY)
330 clnt->cl_discrtry = 1;
c2866763
CL
331
332 return clnt;
333}
b86acd50 334EXPORT_SYMBOL_GPL(rpc_create);
c2866763 335
1da177e4
LT
336/*
337 * This function clones the RPC client structure. It allows us to share the
338 * same transport while varying parameters such as the authentication
339 * flavour.
340 */
341struct rpc_clnt *
342rpc_clone_client(struct rpc_clnt *clnt)
343{
344 struct rpc_clnt *new;
3e32a5d9 345 int err = -ENOMEM;
1da177e4 346
e69062b4 347 new = kmemdup(clnt, sizeof(*new), GFP_KERNEL);
1da177e4
LT
348 if (!new)
349 goto out_no_clnt;
d431a555
TM
350 new->cl_parent = clnt;
351 /* Turn off autobind on clones */
352 new->cl_autobind = 0;
353 INIT_LIST_HEAD(&new->cl_tasks);
354 spin_lock_init(&new->cl_lock);
ba7392bb 355 rpc_init_rtt(&new->cl_rtt_default, clnt->cl_timeout->to_initval);
23bf85ba
TM
356 new->cl_metrics = rpc_alloc_iostats(clnt);
357 if (new->cl_metrics == NULL)
358 goto out_no_stats;
34f52e35 359 kref_init(&new->cl_kref);
3e32a5d9
TM
360 err = rpc_setup_pipedir(new, clnt->cl_program->pipe_dir_name);
361 if (err != 0)
362 goto out_no_path;
1da177e4
LT
363 if (new->cl_auth)
364 atomic_inc(&new->cl_auth->au_count);
d431a555
TM
365 xprt_get(clnt->cl_xprt);
366 kref_get(&clnt->cl_kref);
6529eba0 367 rpc_register_client(new);
4ada539e 368 rpciod_up();
1da177e4 369 return new;
3e32a5d9
TM
370out_no_path:
371 rpc_free_iostats(new->cl_metrics);
23bf85ba
TM
372out_no_stats:
373 kfree(new);
1da177e4 374out_no_clnt:
46121cf7 375 dprintk("RPC: %s: returned error %d\n", __FUNCTION__, err);
3e32a5d9 376 return ERR_PTR(err);
1da177e4 377}
e8914c65 378EXPORT_SYMBOL_GPL(rpc_clone_client);
1da177e4
LT
379
380/*
381 * Properly shut down an RPC client, terminating all outstanding
90c5755f 382 * requests.
1da177e4 383 */
4c402b40 384void rpc_shutdown_client(struct rpc_clnt *clnt)
1da177e4 385{
34f52e35
TM
386 dprintk("RPC: shutting down %s client for %s\n",
387 clnt->cl_protname, clnt->cl_server);
1da177e4 388
34f52e35 389 while (!list_empty(&clnt->cl_tasks)) {
1da177e4 390 rpc_killall_tasks(clnt);
532347e2 391 wait_event_timeout(destroy_wait,
34f52e35 392 list_empty(&clnt->cl_tasks), 1*HZ);
1da177e4
LT
393 }
394
4c402b40 395 rpc_release_client(clnt);
1da177e4 396}
e8914c65 397EXPORT_SYMBOL_GPL(rpc_shutdown_client);
1da177e4
LT
398
399/*
34f52e35 400 * Free an RPC client
1da177e4 401 */
34f52e35
TM
402static void
403rpc_free_client(struct kref *kref)
1da177e4 404{
34f52e35 405 struct rpc_clnt *clnt = container_of(kref, struct rpc_clnt, cl_kref);
1da177e4 406
46121cf7 407 dprintk("RPC: destroying %s client for %s\n",
1da177e4 408 clnt->cl_protname, clnt->cl_server);
8f8e7a50 409 if (!IS_ERR(clnt->cl_dentry)) {
dff02cc1 410 rpc_rmdir(clnt->cl_dentry);
8f8e7a50
TM
411 rpc_put_mount();
412 }
3e32a5d9 413 if (clnt->cl_parent != clnt) {
8ad7c892 414 rpc_release_client(clnt->cl_parent);
3e32a5d9
TM
415 goto out_free;
416 }
1da177e4
LT
417 if (clnt->cl_server != clnt->cl_inline_name)
418 kfree(clnt->cl_server);
419out_free:
6529eba0 420 rpc_unregister_client(clnt);
11c556b3
CL
421 rpc_free_iostats(clnt->cl_metrics);
422 clnt->cl_metrics = NULL;
6b6ca86b 423 xprt_put(clnt->cl_xprt);
4ada539e 424 rpciod_down();
1da177e4 425 kfree(clnt);
1da177e4
LT
426}
427
1dd17ec6
TM
428/*
429 * Free an RPC client
430 */
431static void
432rpc_free_auth(struct kref *kref)
433{
434 struct rpc_clnt *clnt = container_of(kref, struct rpc_clnt, cl_kref);
435
436 if (clnt->cl_auth == NULL) {
437 rpc_free_client(kref);
438 return;
439 }
440
441 /*
442 * Note: RPCSEC_GSS may need to send NULL RPC calls in order to
443 * release remaining GSS contexts. This mechanism ensures
444 * that it can do so safely.
445 */
446 kref_init(kref);
447 rpcauth_release(clnt->cl_auth);
448 clnt->cl_auth = NULL;
449 kref_put(kref, rpc_free_client);
450}
451
1da177e4 452/*
34f52e35 453 * Release reference to the RPC client
1da177e4
LT
454 */
455void
456rpc_release_client(struct rpc_clnt *clnt)
457{
34f52e35 458 dprintk("RPC: rpc_release_client(%p)\n", clnt);
1da177e4 459
34f52e35
TM
460 if (list_empty(&clnt->cl_tasks))
461 wake_up(&destroy_wait);
1dd17ec6 462 kref_put(&clnt->cl_kref, rpc_free_auth);
34f52e35
TM
463}
464
007e251f
AG
465/**
466 * rpc_bind_new_program - bind a new RPC program to an existing client
65b6e42c
RD
467 * @old: old rpc_client
468 * @program: rpc program to set
469 * @vers: rpc program version
007e251f
AG
470 *
471 * Clones the rpc client and sets up a new RPC program. This is mainly
472 * of use for enabling different RPC programs to share the same transport.
473 * The Sun NFSv2/v3 ACL protocol can do this.
474 */
475struct rpc_clnt *rpc_bind_new_program(struct rpc_clnt *old,
476 struct rpc_program *program,
89eb21c3 477 u32 vers)
007e251f
AG
478{
479 struct rpc_clnt *clnt;
480 struct rpc_version *version;
481 int err;
482
483 BUG_ON(vers >= program->nrvers || !program->version[vers]);
484 version = program->version[vers];
485 clnt = rpc_clone_client(old);
486 if (IS_ERR(clnt))
487 goto out;
488 clnt->cl_procinfo = version->procs;
489 clnt->cl_maxproc = version->nrprocs;
490 clnt->cl_protname = program->name;
491 clnt->cl_prog = program->number;
492 clnt->cl_vers = version->number;
493 clnt->cl_stats = program->stats;
150030b7 494 err = rpc_ping(clnt, RPC_TASK_SOFT);
007e251f
AG
495 if (err != 0) {
496 rpc_shutdown_client(clnt);
497 clnt = ERR_PTR(err);
498 }
cca5172a 499out:
007e251f
AG
500 return clnt;
501}
e8914c65 502EXPORT_SYMBOL_GPL(rpc_bind_new_program);
007e251f 503
1da177e4
LT
504/*
505 * Default callback for async RPC calls
506 */
507static void
963d8fe5 508rpc_default_callback(struct rpc_task *task, void *data)
1da177e4
LT
509{
510}
511
963d8fe5
TM
512static const struct rpc_call_ops rpc_default_ops = {
513 .rpc_call_done = rpc_default_callback,
514};
515
c970aa85
TM
516/**
517 * rpc_run_task - Allocate a new RPC task, then run rpc_execute against it
518 * @task_setup_data: pointer to task initialisation data
519 */
520struct rpc_task *rpc_run_task(const struct rpc_task_setup *task_setup_data)
6e5b70e9
TM
521{
522 struct rpc_task *task, *ret;
6e5b70e9 523
84115e1c 524 task = rpc_new_task(task_setup_data);
6e5b70e9 525 if (task == NULL) {
84115e1c
TM
526 rpc_release_calldata(task_setup_data->callback_ops,
527 task_setup_data->callback_data);
50859259
TM
528 ret = ERR_PTR(-ENOMEM);
529 goto out;
6e5b70e9
TM
530 }
531
b3ef8b3b
TM
532 if (task->tk_status != 0) {
533 ret = ERR_PTR(task->tk_status);
534 rpc_put_task(task);
535 goto out;
6e5b70e9
TM
536 }
537 atomic_inc(&task->tk_count);
538 rpc_execute(task);
539 ret = task;
540out:
6e5b70e9
TM
541 return ret;
542}
c970aa85 543EXPORT_SYMBOL_GPL(rpc_run_task);
6e5b70e9
TM
544
545/**
546 * rpc_call_sync - Perform a synchronous RPC call
547 * @clnt: pointer to RPC client
548 * @msg: RPC call parameters
549 * @flags: RPC call flags
1da177e4 550 */
cbc20059 551int rpc_call_sync(struct rpc_clnt *clnt, const struct rpc_message *msg, int flags)
1da177e4
LT
552{
553 struct rpc_task *task;
84115e1c
TM
554 struct rpc_task_setup task_setup_data = {
555 .rpc_client = clnt,
556 .rpc_message = msg,
557 .callback_ops = &rpc_default_ops,
558 .flags = flags,
559 };
6e5b70e9 560 int status;
1da177e4 561
1da177e4
LT
562 BUG_ON(flags & RPC_TASK_ASYNC);
563
c970aa85 564 task = rpc_run_task(&task_setup_data);
6e5b70e9
TM
565 if (IS_ERR(task))
566 return PTR_ERR(task);
e60859ac 567 status = task->tk_status;
bde8f00c 568 rpc_put_task(task);
1da177e4
LT
569 return status;
570}
e8914c65 571EXPORT_SYMBOL_GPL(rpc_call_sync);
1da177e4 572
6e5b70e9
TM
573/**
574 * rpc_call_async - Perform an asynchronous RPC call
575 * @clnt: pointer to RPC client
576 * @msg: RPC call parameters
577 * @flags: RPC call flags
65b6e42c 578 * @tk_ops: RPC call ops
6e5b70e9 579 * @data: user call data
1da177e4
LT
580 */
581int
cbc20059 582rpc_call_async(struct rpc_clnt *clnt, const struct rpc_message *msg, int flags,
963d8fe5 583 const struct rpc_call_ops *tk_ops, void *data)
1da177e4
LT
584{
585 struct rpc_task *task;
84115e1c
TM
586 struct rpc_task_setup task_setup_data = {
587 .rpc_client = clnt,
588 .rpc_message = msg,
589 .callback_ops = tk_ops,
590 .callback_data = data,
591 .flags = flags|RPC_TASK_ASYNC,
592 };
1da177e4 593
c970aa85 594 task = rpc_run_task(&task_setup_data);
6e5b70e9
TM
595 if (IS_ERR(task))
596 return PTR_ERR(task);
597 rpc_put_task(task);
598 return 0;
1da177e4 599}
e8914c65 600EXPORT_SYMBOL_GPL(rpc_call_async);
1da177e4 601
77de2c59
TM
602void
603rpc_call_start(struct rpc_task *task)
604{
605 task->tk_action = call_start;
606}
607EXPORT_SYMBOL_GPL(rpc_call_start);
608
ed39440a
CL
609/**
610 * rpc_peeraddr - extract remote peer address from clnt's xprt
611 * @clnt: RPC client structure
612 * @buf: target buffer
65b6e42c 613 * @bufsize: length of target buffer
ed39440a
CL
614 *
615 * Returns the number of bytes that are actually in the stored address.
616 */
617size_t rpc_peeraddr(struct rpc_clnt *clnt, struct sockaddr *buf, size_t bufsize)
618{
619 size_t bytes;
620 struct rpc_xprt *xprt = clnt->cl_xprt;
621
622 bytes = sizeof(xprt->addr);
623 if (bytes > bufsize)
624 bytes = bufsize;
625 memcpy(buf, &clnt->cl_xprt->addr, bytes);
c4efcb1d 626 return xprt->addrlen;
ed39440a 627}
b86acd50 628EXPORT_SYMBOL_GPL(rpc_peeraddr);
ed39440a 629
f425eba4
CL
630/**
631 * rpc_peeraddr2str - return remote peer address in printable format
632 * @clnt: RPC client structure
633 * @format: address format
634 *
635 */
b454ae90
CL
636const char *rpc_peeraddr2str(struct rpc_clnt *clnt,
637 enum rpc_display_format_t format)
f425eba4
CL
638{
639 struct rpc_xprt *xprt = clnt->cl_xprt;
7559c7a2
CL
640
641 if (xprt->address_strings[format] != NULL)
642 return xprt->address_strings[format];
643 else
644 return "unprintable";
f425eba4 645}
b86acd50 646EXPORT_SYMBOL_GPL(rpc_peeraddr2str);
f425eba4 647
1da177e4
LT
648void
649rpc_setbufsize(struct rpc_clnt *clnt, unsigned int sndsize, unsigned int rcvsize)
650{
651 struct rpc_xprt *xprt = clnt->cl_xprt;
470056c2
CL
652 if (xprt->ops->set_buffer_size)
653 xprt->ops->set_buffer_size(xprt, sndsize, rcvsize);
1da177e4 654}
e8914c65 655EXPORT_SYMBOL_GPL(rpc_setbufsize);
1da177e4
LT
656
657/*
658 * Return size of largest payload RPC client can support, in bytes
659 *
660 * For stream transports, this is one RPC record fragment (see RFC
661 * 1831), as we don't support multi-record requests yet. For datagram
662 * transports, this is the size of an IP packet minus the IP, UDP, and
663 * RPC header sizes.
664 */
665size_t rpc_max_payload(struct rpc_clnt *clnt)
666{
667 return clnt->cl_xprt->max_payload;
668}
b86acd50 669EXPORT_SYMBOL_GPL(rpc_max_payload);
1da177e4 670
35f5a422
CL
671/**
672 * rpc_force_rebind - force transport to check that remote port is unchanged
673 * @clnt: client to rebind
674 *
675 */
676void rpc_force_rebind(struct rpc_clnt *clnt)
677{
678 if (clnt->cl_autobind)
ec739ef0 679 xprt_clear_bound(clnt->cl_xprt);
35f5a422 680}
b86acd50 681EXPORT_SYMBOL_GPL(rpc_force_rebind);
35f5a422 682
1da177e4
LT
683/*
684 * Restart an (async) RPC call. Usually called from within the
685 * exit handler.
686 */
687void
688rpc_restart_call(struct rpc_task *task)
689{
690 if (RPC_ASSASSINATED(task))
691 return;
692
693 task->tk_action = call_start;
694}
e8914c65 695EXPORT_SYMBOL_GPL(rpc_restart_call);
1da177e4
LT
696
697/*
698 * 0. Initial state
699 *
700 * Other FSM states can be visited zero or more times, but
701 * this state is visited exactly once for each RPC.
702 */
703static void
704call_start(struct rpc_task *task)
705{
706 struct rpc_clnt *clnt = task->tk_client;
707
46121cf7
CL
708 dprintk("RPC: %5u call_start %s%d proc %d (%s)\n", task->tk_pid,
709 clnt->cl_protname, clnt->cl_vers,
710 task->tk_msg.rpc_proc->p_proc,
711 (RPC_IS_ASYNC(task) ? "async" : "sync"));
1da177e4
LT
712
713 /* Increment call count */
714 task->tk_msg.rpc_proc->p_count++;
715 clnt->cl_stats->rpccnt++;
716 task->tk_action = call_reserve;
717}
718
719/*
720 * 1. Reserve an RPC call slot
721 */
722static void
723call_reserve(struct rpc_task *task)
724{
46121cf7 725 dprint_status(task);
1da177e4
LT
726
727 if (!rpcauth_uptodatecred(task)) {
728 task->tk_action = call_refresh;
729 return;
730 }
731
732 task->tk_status = 0;
733 task->tk_action = call_reserveresult;
734 xprt_reserve(task);
735}
736
737/*
738 * 1b. Grok the result of xprt_reserve()
739 */
740static void
741call_reserveresult(struct rpc_task *task)
742{
743 int status = task->tk_status;
744
46121cf7 745 dprint_status(task);
1da177e4
LT
746
747 /*
748 * After a call to xprt_reserve(), we must have either
749 * a request slot or else an error status.
750 */
751 task->tk_status = 0;
752 if (status >= 0) {
753 if (task->tk_rqstp) {
754 task->tk_action = call_allocate;
755 return;
756 }
757
758 printk(KERN_ERR "%s: status=%d, but no request slot, exiting\n",
759 __FUNCTION__, status);
760 rpc_exit(task, -EIO);
761 return;
762 }
763
764 /*
765 * Even though there was an error, we may have acquired
766 * a request slot somehow. Make sure not to leak it.
767 */
768 if (task->tk_rqstp) {
769 printk(KERN_ERR "%s: status=%d, request allocated anyway\n",
770 __FUNCTION__, status);
771 xprt_release(task);
772 }
773
774 switch (status) {
775 case -EAGAIN: /* woken up; retry */
776 task->tk_action = call_reserve;
777 return;
778 case -EIO: /* probably a shutdown */
779 break;
780 default:
781 printk(KERN_ERR "%s: unrecognized error %d, exiting\n",
782 __FUNCTION__, status);
783 break;
784 }
785 rpc_exit(task, status);
786}
787
788/*
789 * 2. Allocate the buffer. For details, see sched.c:rpc_malloc.
02107148 790 * (Note: buffer memory is freed in xprt_release).
1da177e4
LT
791 */
792static void
793call_allocate(struct rpc_task *task)
794{
1be27f36 795 unsigned int slack = task->tk_msg.rpc_cred->cr_auth->au_cslack;
02107148
CL
796 struct rpc_rqst *req = task->tk_rqstp;
797 struct rpc_xprt *xprt = task->tk_xprt;
2bea90d4 798 struct rpc_procinfo *proc = task->tk_msg.rpc_proc;
1da177e4 799
46121cf7
CL
800 dprint_status(task);
801
2bea90d4 802 task->tk_status = 0;
1da177e4 803 task->tk_action = call_bind;
2bea90d4 804
02107148 805 if (req->rq_buffer)
1da177e4
LT
806 return;
807
2bea90d4
CL
808 if (proc->p_proc != 0) {
809 BUG_ON(proc->p_arglen == 0);
810 if (proc->p_decode != NULL)
811 BUG_ON(proc->p_replen == 0);
812 }
1da177e4 813
2bea90d4
CL
814 /*
815 * Calculate the size (in quads) of the RPC call
816 * and reply headers, and convert both values
817 * to byte sizes.
818 */
819 req->rq_callsize = RPC_CALLHDRSIZE + (slack << 1) + proc->p_arglen;
820 req->rq_callsize <<= 2;
821 req->rq_rcvsize = RPC_REPHDRSIZE + slack + proc->p_replen;
822 req->rq_rcvsize <<= 2;
823
c5a4dd8b
CL
824 req->rq_buffer = xprt->ops->buf_alloc(task,
825 req->rq_callsize + req->rq_rcvsize);
2bea90d4 826 if (req->rq_buffer != NULL)
1da177e4 827 return;
46121cf7
CL
828
829 dprintk("RPC: %5u rpc_buffer allocation failed\n", task->tk_pid);
1da177e4 830
14b218a8 831 if (RPC_IS_ASYNC(task) || !signalled()) {
b6e9c713 832 task->tk_action = call_allocate;
1da177e4
LT
833 rpc_delay(task, HZ>>4);
834 return;
835 }
836
837 rpc_exit(task, -ERESTARTSYS);
838}
839
940e3318
TM
840static inline int
841rpc_task_need_encode(struct rpc_task *task)
842{
843 return task->tk_rqstp->rq_snd_buf.len == 0;
844}
845
846static inline void
847rpc_task_force_reencode(struct rpc_task *task)
848{
849 task->tk_rqstp->rq_snd_buf.len = 0;
850}
851
2bea90d4
CL
852static inline void
853rpc_xdr_buf_init(struct xdr_buf *buf, void *start, size_t len)
854{
855 buf->head[0].iov_base = start;
856 buf->head[0].iov_len = len;
857 buf->tail[0].iov_len = 0;
858 buf->page_len = 0;
4f22ccc3 859 buf->flags = 0;
2bea90d4
CL
860 buf->len = 0;
861 buf->buflen = len;
862}
863
1da177e4
LT
864/*
865 * 3. Encode arguments of an RPC call
866 */
867static void
868call_encode(struct rpc_task *task)
869{
1da177e4 870 struct rpc_rqst *req = task->tk_rqstp;
1da177e4 871 kxdrproc_t encode;
d8ed029d 872 __be32 *p;
1da177e4 873
46121cf7 874 dprint_status(task);
1da177e4 875
2bea90d4
CL
876 rpc_xdr_buf_init(&req->rq_snd_buf,
877 req->rq_buffer,
878 req->rq_callsize);
879 rpc_xdr_buf_init(&req->rq_rcv_buf,
880 (char *)req->rq_buffer + req->rq_callsize,
881 req->rq_rcvsize);
1da177e4
LT
882
883 /* Encode header and provided arguments */
884 encode = task->tk_msg.rpc_proc->p_encode;
885 if (!(p = call_header(task))) {
886 printk(KERN_INFO "RPC: call_header failed, exit EIO\n");
887 rpc_exit(task, -EIO);
888 return;
889 }
f3680312
BF
890 if (encode == NULL)
891 return;
892
893 task->tk_status = rpcauth_wrap_req(task, encode, req, p,
894 task->tk_msg.rpc_argp);
895 if (task->tk_status == -ENOMEM) {
896 /* XXX: Is this sane? */
897 rpc_delay(task, 3*HZ);
898 task->tk_status = -EAGAIN;
899 }
1da177e4
LT
900}
901
902/*
903 * 4. Get the server port number if not yet set
904 */
905static void
906call_bind(struct rpc_task *task)
907{
ec739ef0 908 struct rpc_xprt *xprt = task->tk_xprt;
1da177e4 909
46121cf7 910 dprint_status(task);
1da177e4 911
da351878 912 task->tk_action = call_connect;
ec739ef0 913 if (!xprt_bound(xprt)) {
da351878 914 task->tk_action = call_bind_status;
ec739ef0 915 task->tk_timeout = xprt->bind_timeout;
bbf7c1dd 916 xprt->ops->rpcbind(task);
1da177e4
LT
917 }
918}
919
920/*
da351878
CL
921 * 4a. Sort out bind result
922 */
923static void
924call_bind_status(struct rpc_task *task)
925{
906462af 926 int status = -EIO;
da351878
CL
927
928 if (task->tk_status >= 0) {
46121cf7 929 dprint_status(task);
da351878
CL
930 task->tk_status = 0;
931 task->tk_action = call_connect;
932 return;
933 }
934
935 switch (task->tk_status) {
2429cbf6
CL
936 case -EAGAIN:
937 dprintk("RPC: %5u rpcbind waiting for another request "
938 "to finish\n", task->tk_pid);
939 /* avoid busy-waiting here -- could be a network outage. */
940 rpc_delay(task, 5*HZ);
941 goto retry_timeout;
da351878 942 case -EACCES:
46121cf7
CL
943 dprintk("RPC: %5u remote rpcbind: RPC program/version "
944 "unavailable\n", task->tk_pid);
b79dc8ce
CL
945 /* fail immediately if this is an RPC ping */
946 if (task->tk_msg.rpc_proc->p_proc == 0) {
947 status = -EOPNOTSUPP;
948 break;
949 }
ea635a51 950 rpc_delay(task, 3*HZ);
da45828e 951 goto retry_timeout;
da351878 952 case -ETIMEDOUT:
46121cf7 953 dprintk("RPC: %5u rpcbind request timed out\n",
da351878 954 task->tk_pid);
da45828e 955 goto retry_timeout;
da351878 956 case -EPFNOSUPPORT:
906462af 957 /* server doesn't support any rpcbind version we know of */
46121cf7 958 dprintk("RPC: %5u remote rpcbind service unavailable\n",
da351878
CL
959 task->tk_pid);
960 break;
961 case -EPROTONOSUPPORT:
00a6e7bb 962 dprintk("RPC: %5u remote rpcbind version unavailable, retrying\n",
da351878 963 task->tk_pid);
00a6e7bb
CL
964 task->tk_status = 0;
965 task->tk_action = call_bind;
966 return;
da351878 967 default:
46121cf7 968 dprintk("RPC: %5u unrecognized rpcbind error (%d)\n",
da351878 969 task->tk_pid, -task->tk_status);
da351878
CL
970 }
971
972 rpc_exit(task, status);
973 return;
974
da45828e
TM
975retry_timeout:
976 task->tk_action = call_timeout;
da351878
CL
977}
978
979/*
980 * 4b. Connect to the RPC server
1da177e4
LT
981 */
982static void
983call_connect(struct rpc_task *task)
984{
da351878 985 struct rpc_xprt *xprt = task->tk_xprt;
1da177e4 986
46121cf7 987 dprintk("RPC: %5u call_connect xprt %p %s connected\n",
da351878
CL
988 task->tk_pid, xprt,
989 (xprt_connected(xprt) ? "is" : "is not"));
1da177e4 990
da351878
CL
991 task->tk_action = call_transmit;
992 if (!xprt_connected(xprt)) {
993 task->tk_action = call_connect_status;
994 if (task->tk_status < 0)
995 return;
996 xprt_connect(task);
1da177e4 997 }
1da177e4
LT
998}
999
1000/*
da351878 1001 * 4c. Sort out connect result
1da177e4
LT
1002 */
1003static void
1004call_connect_status(struct rpc_task *task)
1005{
1006 struct rpc_clnt *clnt = task->tk_client;
1007 int status = task->tk_status;
1008
46121cf7 1009 dprint_status(task);
da351878 1010
1da177e4
LT
1011 task->tk_status = 0;
1012 if (status >= 0) {
1013 clnt->cl_stats->netreconn++;
1014 task->tk_action = call_transmit;
1015 return;
1016 }
1017
da351878 1018 /* Something failed: remote service port may have changed */
35f5a422 1019 rpc_force_rebind(clnt);
da351878 1020
1da177e4
LT
1021 switch (status) {
1022 case -ENOTCONN:
1da177e4 1023 case -EAGAIN:
da351878 1024 task->tk_action = call_bind;
da45828e
TM
1025 if (!RPC_IS_SOFT(task))
1026 return;
1027 /* if soft mounted, test if we've timed out */
1028 case -ETIMEDOUT:
1029 task->tk_action = call_timeout;
1030 return;
1da177e4 1031 }
da45828e 1032 rpc_exit(task, -EIO);
1da177e4
LT
1033}
1034
1035/*
1036 * 5. Transmit the RPC request, and wait for reply
1037 */
1038static void
1039call_transmit(struct rpc_task *task)
1040{
46121cf7 1041 dprint_status(task);
1da177e4
LT
1042
1043 task->tk_action = call_status;
1044 if (task->tk_status < 0)
1045 return;
1046 task->tk_status = xprt_prepare_transmit(task);
1047 if (task->tk_status != 0)
1048 return;
e0ab53de 1049 task->tk_action = call_transmit_status;
1da177e4 1050 /* Encode here so that rpcsec_gss can use correct sequence number. */
940e3318 1051 if (rpc_task_need_encode(task)) {
e0ab53de 1052 BUG_ON(task->tk_rqstp->rq_bytes_sent != 0);
1da177e4 1053 call_encode(task);
5e5ce5be
TM
1054 /* Did the encode result in an error condition? */
1055 if (task->tk_status != 0)
e0ab53de 1056 return;
5e5ce5be 1057 }
1da177e4
LT
1058 xprt_transmit(task);
1059 if (task->tk_status < 0)
1060 return;
e0ab53de
TM
1061 /*
1062 * On success, ensure that we call xprt_end_transmit() before sleeping
1063 * in order to allow access to the socket to other RPC requests.
1064 */
1065 call_transmit_status(task);
1066 if (task->tk_msg.rpc_proc->p_decode != NULL)
1067 return;
1068 task->tk_action = rpc_exit_task;
fda13939 1069 rpc_wake_up_queued_task(&task->tk_xprt->pending, task);
e0ab53de
TM
1070}
1071
1072/*
1073 * 5a. Handle cleanup after a transmission
1074 */
1075static void
1076call_transmit_status(struct rpc_task *task)
1077{
1078 task->tk_action = call_status;
1079 /*
1080 * Special case: if we've been waiting on the socket's write_space()
1081 * callback, then don't call xprt_end_transmit().
1082 */
1083 if (task->tk_status == -EAGAIN)
1084 return;
1085 xprt_end_transmit(task);
940e3318 1086 rpc_task_force_reencode(task);
1da177e4
LT
1087}
1088
1089/*
1090 * 6. Sort out the RPC call status
1091 */
1092static void
1093call_status(struct rpc_task *task)
1094{
1095 struct rpc_clnt *clnt = task->tk_client;
1096 struct rpc_rqst *req = task->tk_rqstp;
1097 int status;
1098
1099 if (req->rq_received > 0 && !req->rq_bytes_sent)
1100 task->tk_status = req->rq_received;
1101
46121cf7 1102 dprint_status(task);
1da177e4
LT
1103
1104 status = task->tk_status;
1105 if (status >= 0) {
1106 task->tk_action = call_decode;
1107 return;
1108 }
1109
1110 task->tk_status = 0;
1111 switch(status) {
76303992
TM
1112 case -EHOSTDOWN:
1113 case -EHOSTUNREACH:
1114 case -ENETUNREACH:
1115 /*
1116 * Delay any retries for 3 seconds, then handle as if it
1117 * were a timeout.
1118 */
1119 rpc_delay(task, 3*HZ);
1da177e4
LT
1120 case -ETIMEDOUT:
1121 task->tk_action = call_timeout;
241c39b9 1122 if (task->tk_client->cl_discrtry)
7c1d71cf
TM
1123 xprt_conditional_disconnect(task->tk_xprt,
1124 req->rq_connect_cookie);
1da177e4
LT
1125 break;
1126 case -ECONNREFUSED:
1127 case -ENOTCONN:
35f5a422 1128 rpc_force_rebind(clnt);
1da177e4
LT
1129 task->tk_action = call_bind;
1130 break;
1131 case -EAGAIN:
1132 task->tk_action = call_transmit;
1133 break;
1134 case -EIO:
1135 /* shutdown or soft timeout */
1136 rpc_exit(task, status);
1137 break;
1138 default:
f518e35a 1139 printk("%s: RPC call returned error %d\n",
1da177e4
LT
1140 clnt->cl_protname, -status);
1141 rpc_exit(task, status);
1da177e4
LT
1142 }
1143}
1144
1145/*
e0ab53de 1146 * 6a. Handle RPC timeout
1da177e4
LT
1147 * We do not release the request slot, so we keep using the
1148 * same XID for all retransmits.
1149 */
1150static void
1151call_timeout(struct rpc_task *task)
1152{
1153 struct rpc_clnt *clnt = task->tk_client;
1154
1155 if (xprt_adjust_timeout(task->tk_rqstp) == 0) {
46121cf7 1156 dprintk("RPC: %5u call_timeout (minor)\n", task->tk_pid);
1da177e4
LT
1157 goto retry;
1158 }
1159
46121cf7 1160 dprintk("RPC: %5u call_timeout (major)\n", task->tk_pid);
ef759a2e
CL
1161 task->tk_timeouts++;
1162
1da177e4 1163 if (RPC_IS_SOFT(task)) {
f518e35a 1164 printk(KERN_NOTICE "%s: server %s not responding, timed out\n",
1da177e4
LT
1165 clnt->cl_protname, clnt->cl_server);
1166 rpc_exit(task, -EIO);
1167 return;
1168 }
1169
f518e35a 1170 if (!(task->tk_flags & RPC_CALL_MAJORSEEN)) {
1da177e4
LT
1171 task->tk_flags |= RPC_CALL_MAJORSEEN;
1172 printk(KERN_NOTICE "%s: server %s not responding, still trying\n",
1173 clnt->cl_protname, clnt->cl_server);
1174 }
35f5a422 1175 rpc_force_rebind(clnt);
1da177e4
LT
1176
1177retry:
1178 clnt->cl_stats->rpcretrans++;
1179 task->tk_action = call_bind;
1180 task->tk_status = 0;
1181}
1182
1183/*
1184 * 7. Decode the RPC reply
1185 */
1186static void
1187call_decode(struct rpc_task *task)
1188{
1189 struct rpc_clnt *clnt = task->tk_client;
1190 struct rpc_rqst *req = task->tk_rqstp;
1191 kxdrproc_t decode = task->tk_msg.rpc_proc->p_decode;
d8ed029d 1192 __be32 *p;
1da177e4 1193
46121cf7
CL
1194 dprintk("RPC: %5u call_decode (status %d)\n",
1195 task->tk_pid, task->tk_status);
1da177e4 1196
f518e35a 1197 if (task->tk_flags & RPC_CALL_MAJORSEEN) {
1da177e4
LT
1198 printk(KERN_NOTICE "%s: server %s OK\n",
1199 clnt->cl_protname, clnt->cl_server);
1200 task->tk_flags &= ~RPC_CALL_MAJORSEEN;
1201 }
1202
43ac3f29
TM
1203 /*
1204 * Ensure that we see all writes made by xprt_complete_rqst()
1205 * before it changed req->rq_received.
1206 */
1207 smp_rmb();
1da177e4
LT
1208 req->rq_rcv_buf.len = req->rq_private_buf.len;
1209
1210 /* Check that the softirq receive buffer is valid */
1211 WARN_ON(memcmp(&req->rq_rcv_buf, &req->rq_private_buf,
1212 sizeof(req->rq_rcv_buf)) != 0);
1213
1e799b67
TM
1214 if (req->rq_rcv_buf.len < 12) {
1215 if (!RPC_IS_SOFT(task)) {
1216 task->tk_action = call_bind;
1217 clnt->cl_stats->rpcretrans++;
1218 goto out_retry;
1219 }
1220 dprintk("RPC: %s: too small RPC reply size (%d bytes)\n",
1221 clnt->cl_protname, task->tk_status);
1222 task->tk_action = call_timeout;
1223 goto out_retry;
1224 }
1225
1da177e4 1226 /* Verify the RPC header */
abbcf28f
TM
1227 p = call_verify(task);
1228 if (IS_ERR(p)) {
1229 if (p == ERR_PTR(-EAGAIN))
1230 goto out_retry;
1231 return;
1da177e4
LT
1232 }
1233
abbcf28f 1234 task->tk_action = rpc_exit_task;
1da177e4 1235
6d5fcb5a 1236 if (decode) {
1da177e4
LT
1237 task->tk_status = rpcauth_unwrap_resp(task, decode, req, p,
1238 task->tk_msg.rpc_resp);
6d5fcb5a 1239 }
46121cf7
CL
1240 dprintk("RPC: %5u call_decode result %d\n", task->tk_pid,
1241 task->tk_status);
1da177e4
LT
1242 return;
1243out_retry:
1da177e4 1244 task->tk_status = 0;
24b74bf0
TM
1245 /* Note: call_verify() may have freed the RPC slot */
1246 if (task->tk_rqstp == req) {
1e799b67 1247 req->rq_received = req->rq_rcv_buf.len = 0;
24b74bf0 1248 if (task->tk_client->cl_discrtry)
7c1d71cf
TM
1249 xprt_conditional_disconnect(task->tk_xprt,
1250 req->rq_connect_cookie);
24b74bf0 1251 }
1da177e4
LT
1252}
1253
1254/*
1255 * 8. Refresh the credentials if rejected by the server
1256 */
1257static void
1258call_refresh(struct rpc_task *task)
1259{
46121cf7 1260 dprint_status(task);
1da177e4 1261
1da177e4
LT
1262 task->tk_action = call_refreshresult;
1263 task->tk_status = 0;
1264 task->tk_client->cl_stats->rpcauthrefresh++;
1265 rpcauth_refreshcred(task);
1266}
1267
1268/*
1269 * 8a. Process the results of a credential refresh
1270 */
1271static void
1272call_refreshresult(struct rpc_task *task)
1273{
1274 int status = task->tk_status;
46121cf7
CL
1275
1276 dprint_status(task);
1da177e4
LT
1277
1278 task->tk_status = 0;
1279 task->tk_action = call_reserve;
1280 if (status >= 0 && rpcauth_uptodatecred(task))
1281 return;
1282 if (status == -EACCES) {
1283 rpc_exit(task, -EACCES);
1284 return;
1285 }
1286 task->tk_action = call_refresh;
1287 if (status != -ETIMEDOUT)
1288 rpc_delay(task, 3*HZ);
1289 return;
1290}
1291
1292/*
1293 * Call header serialization
1294 */
d8ed029d 1295static __be32 *
1da177e4
LT
1296call_header(struct rpc_task *task)
1297{
1298 struct rpc_clnt *clnt = task->tk_client;
1da177e4 1299 struct rpc_rqst *req = task->tk_rqstp;
d8ed029d 1300 __be32 *p = req->rq_svec[0].iov_base;
1da177e4
LT
1301
1302 /* FIXME: check buffer size? */
808012fb
CL
1303
1304 p = xprt_skip_transport_header(task->tk_xprt, p);
1da177e4
LT
1305 *p++ = req->rq_xid; /* XID */
1306 *p++ = htonl(RPC_CALL); /* CALL */
1307 *p++ = htonl(RPC_VERSION); /* RPC version */
1308 *p++ = htonl(clnt->cl_prog); /* program number */
1309 *p++ = htonl(clnt->cl_vers); /* program version */
1310 *p++ = htonl(task->tk_msg.rpc_proc->p_proc); /* procedure */
334ccfd5
TM
1311 p = rpcauth_marshcred(task, p);
1312 req->rq_slen = xdr_adjust_iovec(&req->rq_svec[0], p);
1313 return p;
1da177e4
LT
1314}
1315
1316/*
1317 * Reply header verification
1318 */
d8ed029d 1319static __be32 *
1da177e4
LT
1320call_verify(struct rpc_task *task)
1321{
1322 struct kvec *iov = &task->tk_rqstp->rq_rcv_buf.head[0];
1323 int len = task->tk_rqstp->rq_rcv_buf.len >> 2;
d8ed029d
AD
1324 __be32 *p = iov->iov_base;
1325 u32 n;
1da177e4
LT
1326 int error = -EACCES;
1327
e8896495
DH
1328 if ((task->tk_rqstp->rq_rcv_buf.len & 3) != 0) {
1329 /* RFC-1014 says that the representation of XDR data must be a
1330 * multiple of four bytes
1331 * - if it isn't pointer subtraction in the NFS client may give
1332 * undefined results
1333 */
8a702bbb
TM
1334 dprintk("RPC: %5u %s: XDR representation not a multiple of"
1335 " 4 bytes: 0x%x\n", task->tk_pid, __FUNCTION__,
1336 task->tk_rqstp->rq_rcv_buf.len);
e8896495
DH
1337 goto out_eio;
1338 }
1da177e4
LT
1339 if ((len -= 3) < 0)
1340 goto out_overflow;
1341 p += 1; /* skip XID */
1342
1343 if ((n = ntohl(*p++)) != RPC_REPLY) {
8a702bbb
TM
1344 dprintk("RPC: %5u %s: not an RPC reply: %x\n",
1345 task->tk_pid, __FUNCTION__, n);
abbcf28f 1346 goto out_garbage;
1da177e4
LT
1347 }
1348 if ((n = ntohl(*p++)) != RPC_MSG_ACCEPTED) {
1349 if (--len < 0)
1350 goto out_overflow;
1351 switch ((n = ntohl(*p++))) {
1352 case RPC_AUTH_ERROR:
1353 break;
1354 case RPC_MISMATCH:
46121cf7
CL
1355 dprintk("RPC: %5u %s: RPC call version "
1356 "mismatch!\n",
1357 task->tk_pid, __FUNCTION__);
cdf47706
AG
1358 error = -EPROTONOSUPPORT;
1359 goto out_err;
1da177e4 1360 default:
46121cf7
CL
1361 dprintk("RPC: %5u %s: RPC call rejected, "
1362 "unknown error: %x\n",
1363 task->tk_pid, __FUNCTION__, n);
1da177e4
LT
1364 goto out_eio;
1365 }
1366 if (--len < 0)
1367 goto out_overflow;
1368 switch ((n = ntohl(*p++))) {
1369 case RPC_AUTH_REJECTEDCRED:
1370 case RPC_AUTH_REJECTEDVERF:
1371 case RPCSEC_GSS_CREDPROBLEM:
1372 case RPCSEC_GSS_CTXPROBLEM:
1373 if (!task->tk_cred_retry)
1374 break;
1375 task->tk_cred_retry--;
46121cf7
CL
1376 dprintk("RPC: %5u %s: retry stale creds\n",
1377 task->tk_pid, __FUNCTION__);
1da177e4 1378 rpcauth_invalcred(task);
220bcc2a
TM
1379 /* Ensure we obtain a new XID! */
1380 xprt_release(task);
1da177e4 1381 task->tk_action = call_refresh;
abbcf28f 1382 goto out_retry;
1da177e4
LT
1383 case RPC_AUTH_BADCRED:
1384 case RPC_AUTH_BADVERF:
1385 /* possibly garbled cred/verf? */
1386 if (!task->tk_garb_retry)
1387 break;
1388 task->tk_garb_retry--;
46121cf7
CL
1389 dprintk("RPC: %5u %s: retry garbled creds\n",
1390 task->tk_pid, __FUNCTION__);
1da177e4 1391 task->tk_action = call_bind;
abbcf28f 1392 goto out_retry;
1da177e4 1393 case RPC_AUTH_TOOWEAK:
1356b8c2
LS
1394 printk(KERN_NOTICE "call_verify: server %s requires stronger "
1395 "authentication.\n", task->tk_client->cl_server);
1da177e4
LT
1396 break;
1397 default:
8a702bbb
TM
1398 dprintk("RPC: %5u %s: unknown auth error: %x\n",
1399 task->tk_pid, __FUNCTION__, n);
1da177e4
LT
1400 error = -EIO;
1401 }
46121cf7
CL
1402 dprintk("RPC: %5u %s: call rejected %d\n",
1403 task->tk_pid, __FUNCTION__, n);
1da177e4
LT
1404 goto out_err;
1405 }
1406 if (!(p = rpcauth_checkverf(task, p))) {
8a702bbb
TM
1407 dprintk("RPC: %5u %s: auth check failed\n",
1408 task->tk_pid, __FUNCTION__);
abbcf28f 1409 goto out_garbage; /* bad verifier, retry */
1da177e4 1410 }
d8ed029d 1411 len = p - (__be32 *)iov->iov_base - 1;
1da177e4
LT
1412 if (len < 0)
1413 goto out_overflow;
1414 switch ((n = ntohl(*p++))) {
1415 case RPC_SUCCESS:
1416 return p;
1417 case RPC_PROG_UNAVAIL:
46121cf7
CL
1418 dprintk("RPC: %5u %s: program %u is unsupported by server %s\n",
1419 task->tk_pid, __FUNCTION__,
1da177e4
LT
1420 (unsigned int)task->tk_client->cl_prog,
1421 task->tk_client->cl_server);
cdf47706
AG
1422 error = -EPFNOSUPPORT;
1423 goto out_err;
1da177e4 1424 case RPC_PROG_MISMATCH:
46121cf7
CL
1425 dprintk("RPC: %5u %s: program %u, version %u unsupported by "
1426 "server %s\n", task->tk_pid, __FUNCTION__,
1da177e4
LT
1427 (unsigned int)task->tk_client->cl_prog,
1428 (unsigned int)task->tk_client->cl_vers,
1429 task->tk_client->cl_server);
cdf47706
AG
1430 error = -EPROTONOSUPPORT;
1431 goto out_err;
1da177e4 1432 case RPC_PROC_UNAVAIL:
46121cf7
CL
1433 dprintk("RPC: %5u %s: proc %p unsupported by program %u, "
1434 "version %u on server %s\n",
1435 task->tk_pid, __FUNCTION__,
1da177e4
LT
1436 task->tk_msg.rpc_proc,
1437 task->tk_client->cl_prog,
1438 task->tk_client->cl_vers,
1439 task->tk_client->cl_server);
cdf47706
AG
1440 error = -EOPNOTSUPP;
1441 goto out_err;
1da177e4 1442 case RPC_GARBAGE_ARGS:
46121cf7
CL
1443 dprintk("RPC: %5u %s: server saw garbage\n",
1444 task->tk_pid, __FUNCTION__);
1da177e4
LT
1445 break; /* retry */
1446 default:
8a702bbb
TM
1447 dprintk("RPC: %5u %s: server accept status: %x\n",
1448 task->tk_pid, __FUNCTION__, n);
1da177e4
LT
1449 /* Also retry */
1450 }
1451
abbcf28f 1452out_garbage:
1da177e4
LT
1453 task->tk_client->cl_stats->rpcgarbage++;
1454 if (task->tk_garb_retry) {
1455 task->tk_garb_retry--;
46121cf7
CL
1456 dprintk("RPC: %5u %s: retrying\n",
1457 task->tk_pid, __FUNCTION__);
1da177e4 1458 task->tk_action = call_bind;
abbcf28f
TM
1459out_retry:
1460 return ERR_PTR(-EAGAIN);
1da177e4 1461 }
1da177e4
LT
1462out_eio:
1463 error = -EIO;
1464out_err:
1465 rpc_exit(task, error);
8a702bbb
TM
1466 dprintk("RPC: %5u %s: call failed with error %d\n", task->tk_pid,
1467 __FUNCTION__, error);
abbcf28f 1468 return ERR_PTR(error);
1da177e4 1469out_overflow:
8a702bbb
TM
1470 dprintk("RPC: %5u %s: server reply was truncated.\n", task->tk_pid,
1471 __FUNCTION__);
abbcf28f 1472 goto out_garbage;
1da177e4 1473}
5ee0ed7d 1474
d8ed029d 1475static int rpcproc_encode_null(void *rqstp, __be32 *data, void *obj)
5ee0ed7d
TM
1476{
1477 return 0;
1478}
1479
d8ed029d 1480static int rpcproc_decode_null(void *rqstp, __be32 *data, void *obj)
5ee0ed7d
TM
1481{
1482 return 0;
1483}
1484
1485static struct rpc_procinfo rpcproc_null = {
1486 .p_encode = rpcproc_encode_null,
1487 .p_decode = rpcproc_decode_null,
1488};
1489
64c91a1f 1490static int rpc_ping(struct rpc_clnt *clnt, int flags)
5ee0ed7d
TM
1491{
1492 struct rpc_message msg = {
1493 .rpc_proc = &rpcproc_null,
1494 };
1495 int err;
1496 msg.rpc_cred = authnull_ops.lookup_cred(NULL, NULL, 0);
1497 err = rpc_call_sync(clnt, &msg, flags);
1498 put_rpccred(msg.rpc_cred);
1499 return err;
1500}
188fef11 1501
5e1550d6
TM
1502struct rpc_task *rpc_call_null(struct rpc_clnt *clnt, struct rpc_cred *cred, int flags)
1503{
1504 struct rpc_message msg = {
1505 .rpc_proc = &rpcproc_null,
1506 .rpc_cred = cred,
1507 };
84115e1c
TM
1508 struct rpc_task_setup task_setup_data = {
1509 .rpc_client = clnt,
1510 .rpc_message = &msg,
1511 .callback_ops = &rpc_default_ops,
1512 .flags = flags,
1513 };
c970aa85 1514 return rpc_run_task(&task_setup_data);
5e1550d6 1515}
e8914c65 1516EXPORT_SYMBOL_GPL(rpc_call_null);
5e1550d6 1517
188fef11
TM
1518#ifdef RPC_DEBUG
1519void rpc_show_tasks(void)
1520{
1521 struct rpc_clnt *clnt;
1522 struct rpc_task *t;
1523
1524 spin_lock(&rpc_client_lock);
1525 if (list_empty(&all_clients))
1526 goto out;
1527 printk("-pid- proc flgs status -client- -prog- --rqstp- -timeout "
1528 "-rpcwait -action- ---ops--\n");
1529 list_for_each_entry(clnt, &all_clients, cl_clients) {
1530 if (list_empty(&clnt->cl_tasks))
1531 continue;
1532 spin_lock(&clnt->cl_lock);
1533 list_for_each_entry(t, &clnt->cl_tasks, tk_task) {
1534 const char *rpc_waitq = "none";
d66968f2
CL
1535 int proc;
1536
1537 if (t->tk_msg.rpc_proc)
1538 proc = t->tk_msg.rpc_proc->p_proc;
1539 else
1540 proc = -1;
188fef11
TM
1541
1542 if (RPC_IS_QUEUED(t))
96ef13b2 1543 rpc_waitq = rpc_qname(t->tk_waitqueue);
188fef11
TM
1544
1545 printk("%5u %04d %04x %6d %8p %6d %8p %8ld %8s %8p %8p\n",
d66968f2 1546 t->tk_pid, proc,
188fef11
TM
1547 t->tk_flags, t->tk_status,
1548 t->tk_client,
1549 (t->tk_client ? t->tk_client->cl_prog : 0),
1550 t->tk_rqstp, t->tk_timeout,
1551 rpc_waitq,
1552 t->tk_action, t->tk_ops);
1553 }
1554 spin_unlock(&clnt->cl_lock);
1555 }
1556out:
1557 spin_unlock(&rpc_client_lock);
1558}
1559#endif