blob: 355e7863c0aa57a72bf933682ae2846b8323386a [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/utsname.h>
Chuck Lever11c556b2006-03-20 13:44:22 -050031#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include <linux/sunrpc/clnt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/sunrpc/rpc_pipe_fs.h>
Chuck Lever11c556b2006-03-20 13:44:22 -050035#include <linux/sunrpc/metrics.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37
38#define RPC_SLACK_SPACE (1024) /* total overkill */
39
40#ifdef RPC_DEBUG
41# define RPCDBG_FACILITY RPCDBG_CALL
42#endif
43
44static DECLARE_WAIT_QUEUE_HEAD(destroy_wait);
45
46
47static void call_start(struct rpc_task *task);
48static void call_reserve(struct rpc_task *task);
49static void call_reserveresult(struct rpc_task *task);
50static void call_allocate(struct rpc_task *task);
51static void call_encode(struct rpc_task *task);
52static void call_decode(struct rpc_task *task);
53static void call_bind(struct rpc_task *task);
Chuck Leverda351872005-08-11 16:25:11 -040054static void call_bind_status(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static void call_transmit(struct rpc_task *task);
56static void call_status(struct rpc_task *task);
Trond Myklebust940e3312005-11-09 21:45:24 -050057static void call_transmit_status(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static void call_refresh(struct rpc_task *task);
59static void call_refreshresult(struct rpc_task *task);
60static void call_timeout(struct rpc_task *task);
61static void call_connect(struct rpc_task *task);
62static void call_connect_status(struct rpc_task *task);
63static u32 * call_header(struct rpc_task *task);
64static u32 * call_verify(struct rpc_task *task);
65
66
67static int
68rpc_setup_pipedir(struct rpc_clnt *clnt, char *dir_name)
69{
Trond Myklebustf1345852005-09-23 11:08:25 -040070 static uint32_t clntid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 int error;
72
Trond Myklebust54281542006-03-20 13:44:49 -050073 clnt->cl_vfsmnt = ERR_PTR(-ENOENT);
74 clnt->cl_dentry = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 if (dir_name == NULL)
76 return 0;
Trond Myklebust54281542006-03-20 13:44:49 -050077
78 clnt->cl_vfsmnt = rpc_get_mount();
79 if (IS_ERR(clnt->cl_vfsmnt))
80 return PTR_ERR(clnt->cl_vfsmnt);
81
Trond Myklebustf1345852005-09-23 11:08:25 -040082 for (;;) {
83 snprintf(clnt->cl_pathname, sizeof(clnt->cl_pathname),
84 "%s/clnt%x", dir_name,
85 (unsigned int)clntid++);
86 clnt->cl_pathname[sizeof(clnt->cl_pathname) - 1] = '\0';
87 clnt->cl_dentry = rpc_mkdir(clnt->cl_pathname, clnt);
88 if (!IS_ERR(clnt->cl_dentry))
89 return 0;
Christoph Hellwig278c9952005-07-24 23:53:01 +010090 error = PTR_ERR(clnt->cl_dentry);
Trond Myklebustf1345852005-09-23 11:08:25 -040091 if (error != -EEXIST) {
92 printk(KERN_INFO "RPC: Couldn't create pipefs entry %s, error %d\n",
93 clnt->cl_pathname, error);
Trond Myklebust54281542006-03-20 13:44:49 -050094 rpc_put_mount();
Trond Myklebustf1345852005-09-23 11:08:25 -040095 return error;
96 }
Christoph Hellwig278c9952005-07-24 23:53:01 +010097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
Chuck Leverff9aa5e2006-08-22 20:06:21 -0400100static 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 -0700101{
102 struct rpc_version *version;
103 struct rpc_clnt *clnt = NULL;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000104 struct rpc_auth *auth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 int err;
106 int len;
107
108 dprintk("RPC: creating %s client for %s (xprt %p)\n",
109 program->name, servname, xprt);
110
111 err = -EINVAL;
112 if (!xprt)
Adrian Bunk712917d2006-03-13 21:20:47 -0800113 goto out_no_xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 if (vers >= program->nrvers || !(version = program->version[vers]))
115 goto out_err;
116
117 err = -ENOMEM;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700118 clnt = kzalloc(sizeof(*clnt), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 if (!clnt)
120 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 atomic_set(&clnt->cl_users, 0);
122 atomic_set(&clnt->cl_count, 1);
123 clnt->cl_parent = clnt;
124
125 clnt->cl_server = clnt->cl_inline_name;
126 len = strlen(servname) + 1;
127 if (len > sizeof(clnt->cl_inline_name)) {
128 char *buf = kmalloc(len, GFP_KERNEL);
129 if (buf != 0)
130 clnt->cl_server = buf;
131 else
132 len = sizeof(clnt->cl_inline_name);
133 }
134 strlcpy(clnt->cl_server, servname, len);
135
136 clnt->cl_xprt = xprt;
137 clnt->cl_procinfo = version->procs;
138 clnt->cl_maxproc = version->nrprocs;
139 clnt->cl_protname = program->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 clnt->cl_prog = program->number;
141 clnt->cl_vers = version->number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 clnt->cl_stats = program->stats;
Chuck Lever11c556b2006-03-20 13:44:22 -0500143 clnt->cl_metrics = rpc_alloc_iostats(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Chuck Leverec739ef2006-08-22 20:06:15 -0400145 if (!xprt_bound(clnt->cl_xprt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 clnt->cl_autobind = 1;
147
148 clnt->cl_rtt = &clnt->cl_rtt_default;
149 rpc_init_rtt(&clnt->cl_rtt_default, xprt->timeout.to_initval);
150
151 err = rpc_setup_pipedir(clnt, program->pipe_dir_name);
152 if (err < 0)
153 goto out_no_path;
154
J. Bruce Fields6a192752005-06-22 17:16:23 +0000155 auth = rpcauth_create(flavor, clnt);
156 if (IS_ERR(auth)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 printk(KERN_INFO "RPC: Couldn't create auth handle (flavor %u)\n",
158 flavor);
J. Bruce Fields6a192752005-06-22 17:16:23 +0000159 err = PTR_ERR(auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 goto out_no_auth;
161 }
162
163 /* save the nodename */
164 clnt->cl_nodelen = strlen(system_utsname.nodename);
165 if (clnt->cl_nodelen > UNX_MAXNODENAME)
166 clnt->cl_nodelen = UNX_MAXNODENAME;
167 memcpy(clnt->cl_nodename, system_utsname.nodename, clnt->cl_nodelen);
168 return clnt;
169
170out_no_auth:
Trond Myklebust54281542006-03-20 13:44:49 -0500171 if (!IS_ERR(clnt->cl_dentry)) {
Trond Myklebustdff02cc2006-07-31 14:17:18 -0700172 rpc_rmdir(clnt->cl_dentry);
Trond Myklebust54281542006-03-20 13:44:49 -0500173 rpc_put_mount();
174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175out_no_path:
176 if (clnt->cl_server != clnt->cl_inline_name)
177 kfree(clnt->cl_server);
178 kfree(clnt);
179out_err:
Trond Myklebust5b616f52005-06-22 17:16:20 +0000180 xprt_destroy(xprt);
Adrian Bunk712917d2006-03-13 21:20:47 -0800181out_no_xprt:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return ERR_PTR(err);
183}
184
Chuck Leverc2866762006-08-22 20:06:20 -0400185/*
186 * rpc_create - create an RPC client and transport with one call
187 * @args: rpc_clnt create argument structure
188 *
189 * Creates and initializes an RPC transport and an RPC client.
190 *
191 * It can ping the server in order to determine if it is up, and to see if
192 * it supports this program and version. RPC_CLNT_CREATE_NOPING disables
193 * this behavior so asynchronous tasks can also use rpc_create.
194 */
195struct rpc_clnt *rpc_create(struct rpc_create_args *args)
196{
197 struct rpc_xprt *xprt;
198 struct rpc_clnt *clnt;
199
200 xprt = xprt_create_transport(args->protocol, args->address,
201 args->addrsize, args->timeout);
202 if (IS_ERR(xprt))
203 return (struct rpc_clnt *)xprt;
204
205 /*
206 * By default, kernel RPC client connects from a reserved port.
207 * CAP_NET_BIND_SERVICE will not be set for unprivileged requesters,
208 * but it is always enabled for rpciod, which handles the connect
209 * operation.
210 */
211 xprt->resvport = 1;
212 if (args->flags & RPC_CLNT_CREATE_NONPRIVPORT)
213 xprt->resvport = 0;
214
215 dprintk("RPC: creating %s client for %s (xprt %p)\n",
216 args->program->name, args->servername, xprt);
217
218 clnt = rpc_new_client(xprt, args->servername, args->program,
219 args->version, args->authflavor);
220 if (IS_ERR(clnt))
221 return clnt;
222
223 if (!(args->flags & RPC_CLNT_CREATE_NOPING)) {
224 int err = rpc_ping(clnt, RPC_TASK_SOFT|RPC_TASK_NOINTR);
225 if (err != 0) {
226 rpc_shutdown_client(clnt);
227 return ERR_PTR(err);
228 }
229 }
230
231 clnt->cl_softrtry = 1;
232 if (args->flags & RPC_CLNT_CREATE_HARDRTRY)
233 clnt->cl_softrtry = 0;
234
235 if (args->flags & RPC_CLNT_CREATE_INTR)
236 clnt->cl_intr = 1;
237 if (args->flags & RPC_CLNT_CREATE_AUTOBIND)
238 clnt->cl_autobind = 1;
239 if (args->flags & RPC_CLNT_CREATE_ONESHOT)
240 clnt->cl_oneshot = 1;
241
242 return clnt;
243}
Chuck Leverb86acd52006-08-22 20:06:22 -0400244EXPORT_SYMBOL_GPL(rpc_create);
Chuck Leverc2866762006-08-22 20:06:20 -0400245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246/*
247 * This function clones the RPC client structure. It allows us to share the
248 * same transport while varying parameters such as the authentication
249 * flavour.
250 */
251struct rpc_clnt *
252rpc_clone_client(struct rpc_clnt *clnt)
253{
254 struct rpc_clnt *new;
255
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800256 new = kmalloc(sizeof(*new), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 if (!new)
258 goto out_no_clnt;
259 memcpy(new, clnt, sizeof(*new));
260 atomic_set(&new->cl_count, 1);
261 atomic_set(&new->cl_users, 0);
262 new->cl_parent = clnt;
263 atomic_inc(&clnt->cl_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /* Turn off autobind on clones */
265 new->cl_autobind = 0;
266 new->cl_oneshot = 0;
267 new->cl_dead = 0;
Trond Myklebust8f8e7a52006-08-14 13:11:15 -0400268 if (!IS_ERR(new->cl_dentry))
Trond Myklebust54281542006-03-20 13:44:49 -0500269 dget(new->cl_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 rpc_init_rtt(&new->cl_rtt_default, clnt->cl_xprt->timeout.to_initval);
271 if (new->cl_auth)
272 atomic_inc(&new->cl_auth->au_count);
Chuck Lever4a681792006-08-22 20:06:15 -0400273 new->cl_metrics = rpc_alloc_iostats(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 return new;
275out_no_clnt:
276 printk(KERN_INFO "RPC: out of memory in %s\n", __FUNCTION__);
277 return ERR_PTR(-ENOMEM);
278}
279
280/*
281 * Properly shut down an RPC client, terminating all outstanding
282 * requests. Note that we must be certain that cl_oneshot and
283 * cl_dead are cleared, or else the client would be destroyed
284 * when the last task releases it.
285 */
286int
287rpc_shutdown_client(struct rpc_clnt *clnt)
288{
289 dprintk("RPC: shutting down %s client for %s, tasks=%d\n",
290 clnt->cl_protname, clnt->cl_server,
291 atomic_read(&clnt->cl_users));
292
293 while (atomic_read(&clnt->cl_users) > 0) {
294 /* Don't let rpc_release_client destroy us */
295 clnt->cl_oneshot = 0;
296 clnt->cl_dead = 0;
297 rpc_killall_tasks(clnt);
Ingo Molnar532347e2006-01-09 20:52:53 -0800298 wait_event_timeout(destroy_wait,
Linus Torvalds4f477072006-01-10 08:56:39 -0800299 !atomic_read(&clnt->cl_users), 1*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
301
302 if (atomic_read(&clnt->cl_users) < 0) {
303 printk(KERN_ERR "RPC: rpc_shutdown_client clnt %p tasks=%d\n",
304 clnt, atomic_read(&clnt->cl_users));
305#ifdef RPC_DEBUG
306 rpc_show_tasks();
307#endif
308 BUG();
309 }
310
311 return rpc_destroy_client(clnt);
312}
313
314/*
315 * Delete an RPC client
316 */
317int
318rpc_destroy_client(struct rpc_clnt *clnt)
319{
320 if (!atomic_dec_and_test(&clnt->cl_count))
321 return 1;
322 BUG_ON(atomic_read(&clnt->cl_users) != 0);
323
324 dprintk("RPC: destroying %s client for %s\n",
325 clnt->cl_protname, clnt->cl_server);
326 if (clnt->cl_auth) {
327 rpcauth_destroy(clnt->cl_auth);
328 clnt->cl_auth = NULL;
329 }
330 if (clnt->cl_parent != clnt) {
Trond Myklebust8f8e7a52006-08-14 13:11:15 -0400331 if (!IS_ERR(clnt->cl_dentry))
332 dput(clnt->cl_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 rpc_destroy_client(clnt->cl_parent);
334 goto out_free;
335 }
Trond Myklebust8f8e7a52006-08-14 13:11:15 -0400336 if (!IS_ERR(clnt->cl_dentry)) {
Trond Myklebustdff02cc2006-07-31 14:17:18 -0700337 rpc_rmdir(clnt->cl_dentry);
Trond Myklebust8f8e7a52006-08-14 13:11:15 -0400338 rpc_put_mount();
339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 if (clnt->cl_xprt) {
341 xprt_destroy(clnt->cl_xprt);
342 clnt->cl_xprt = NULL;
343 }
344 if (clnt->cl_server != clnt->cl_inline_name)
345 kfree(clnt->cl_server);
346out_free:
Chuck Lever11c556b2006-03-20 13:44:22 -0500347 rpc_free_iostats(clnt->cl_metrics);
348 clnt->cl_metrics = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 kfree(clnt);
350 return 0;
351}
352
353/*
354 * Release an RPC client
355 */
356void
357rpc_release_client(struct rpc_clnt *clnt)
358{
359 dprintk("RPC: rpc_release_client(%p, %d)\n",
360 clnt, atomic_read(&clnt->cl_users));
361
362 if (!atomic_dec_and_test(&clnt->cl_users))
363 return;
364 wake_up(&destroy_wait);
365 if (clnt->cl_oneshot || clnt->cl_dead)
366 rpc_destroy_client(clnt);
367}
368
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000369/**
370 * rpc_bind_new_program - bind a new RPC program to an existing client
371 * @old - old rpc_client
372 * @program - rpc program to set
373 * @vers - rpc program version
374 *
375 * Clones the rpc client and sets up a new RPC program. This is mainly
376 * of use for enabling different RPC programs to share the same transport.
377 * The Sun NFSv2/v3 ACL protocol can do this.
378 */
379struct rpc_clnt *rpc_bind_new_program(struct rpc_clnt *old,
380 struct rpc_program *program,
381 int vers)
382{
383 struct rpc_clnt *clnt;
384 struct rpc_version *version;
385 int err;
386
387 BUG_ON(vers >= program->nrvers || !program->version[vers]);
388 version = program->version[vers];
389 clnt = rpc_clone_client(old);
390 if (IS_ERR(clnt))
391 goto out;
392 clnt->cl_procinfo = version->procs;
393 clnt->cl_maxproc = version->nrprocs;
394 clnt->cl_protname = program->name;
395 clnt->cl_prog = program->number;
396 clnt->cl_vers = version->number;
397 clnt->cl_stats = program->stats;
398 err = rpc_ping(clnt, RPC_TASK_SOFT|RPC_TASK_NOINTR);
399 if (err != 0) {
400 rpc_shutdown_client(clnt);
401 clnt = ERR_PTR(err);
402 }
403out:
404 return clnt;
405}
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407/*
408 * Default callback for async RPC calls
409 */
410static void
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100411rpc_default_callback(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
413}
414
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100415static const struct rpc_call_ops rpc_default_ops = {
416 .rpc_call_done = rpc_default_callback,
417};
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419/*
Trond Myklebust14b218a2005-06-22 17:16:28 +0000420 * Export the signal mask handling for synchronous code that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 * sleeps on RPC calls
422 */
Trond Myklebust2bd61572006-01-03 09:55:19 +0100423#define RPC_INTR_SIGNALS (sigmask(SIGHUP) | sigmask(SIGINT) | sigmask(SIGQUIT) | sigmask(SIGTERM))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Trond Myklebust14b218a2005-06-22 17:16:28 +0000425static void rpc_save_sigmask(sigset_t *oldset, int intr)
426{
Trond Myklebust2bd61572006-01-03 09:55:19 +0100427 unsigned long sigallow = sigmask(SIGKILL);
Trond Myklebust14b218a2005-06-22 17:16:28 +0000428 sigset_t sigmask;
429
430 /* Block all signals except those listed in sigallow */
431 if (intr)
432 sigallow |= RPC_INTR_SIGNALS;
433 siginitsetinv(&sigmask, sigallow);
434 sigprocmask(SIG_BLOCK, &sigmask, oldset);
435}
436
437static inline void rpc_task_sigmask(struct rpc_task *task, sigset_t *oldset)
438{
439 rpc_save_sigmask(oldset, !RPC_TASK_UNINTERRUPTIBLE(task));
440}
441
442static inline void rpc_restore_sigmask(sigset_t *oldset)
443{
444 sigprocmask(SIG_SETMASK, oldset, NULL);
445}
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447void rpc_clnt_sigmask(struct rpc_clnt *clnt, sigset_t *oldset)
448{
Trond Myklebust14b218a2005-06-22 17:16:28 +0000449 rpc_save_sigmask(oldset, clnt->cl_intr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
452void rpc_clnt_sigunmask(struct rpc_clnt *clnt, sigset_t *oldset)
453{
Trond Myklebust14b218a2005-06-22 17:16:28 +0000454 rpc_restore_sigmask(oldset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
457/*
458 * New rpc_call implementation
459 */
460int rpc_call_sync(struct rpc_clnt *clnt, struct rpc_message *msg, int flags)
461{
462 struct rpc_task *task;
463 sigset_t oldset;
464 int status;
465
466 /* If this client is slain all further I/O fails */
467 if (clnt->cl_dead)
468 return -EIO;
469
470 BUG_ON(flags & RPC_TASK_ASYNC);
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 status = -ENOMEM;
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100473 task = rpc_new_task(clnt, flags, &rpc_default_ops, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (task == NULL)
475 goto out;
476
Trond Myklebust14b218a2005-06-22 17:16:28 +0000477 /* Mask signals on RPC calls _and_ GSS_AUTH upcalls */
478 rpc_task_sigmask(task, &oldset);
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 rpc_call_setup(task, msg, 0);
481
482 /* Set up the call info struct and execute the task */
Trond Myklebuste60859a2006-01-03 09:55:10 +0100483 status = task->tk_status;
484 if (status == 0) {
485 atomic_inc(&task->tk_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 status = rpc_execute(task);
Trond Myklebuste60859a2006-01-03 09:55:10 +0100487 if (status == 0)
488 status = task->tk_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
Trond Myklebust14b218a2005-06-22 17:16:28 +0000490 rpc_restore_sigmask(&oldset);
Trond Myklebuste60859a2006-01-03 09:55:10 +0100491 rpc_release_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return status;
494}
495
496/*
497 * New rpc_call implementation
498 */
499int
500rpc_call_async(struct rpc_clnt *clnt, struct rpc_message *msg, int flags,
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100501 const struct rpc_call_ops *tk_ops, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
503 struct rpc_task *task;
504 sigset_t oldset;
505 int status;
506
507 /* If this client is slain all further I/O fails */
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500508 status = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if (clnt->cl_dead)
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500510 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 flags |= RPC_TASK_ASYNC;
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 /* Create/initialize a new RPC task */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 status = -ENOMEM;
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100516 if (!(task = rpc_new_task(clnt, flags, tk_ops, data)))
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500517 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Trond Myklebust14b218a2005-06-22 17:16:28 +0000519 /* Mask signals on GSS_AUTH upcalls */
520 rpc_task_sigmask(task, &oldset);
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 rpc_call_setup(task, msg, 0);
523
524 /* Set up the call info struct and execute the task */
525 status = task->tk_status;
526 if (status == 0)
527 rpc_execute(task);
528 else
529 rpc_release_task(task);
530
Trond Myklebust14b218a2005-06-22 17:16:28 +0000531 rpc_restore_sigmask(&oldset);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500532 return status;
533out_release:
534 if (tk_ops->rpc_release != NULL)
535 tk_ops->rpc_release(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 return status;
537}
538
539
540void
541rpc_call_setup(struct rpc_task *task, struct rpc_message *msg, int flags)
542{
543 task->tk_msg = *msg;
544 task->tk_flags |= flags;
545 /* Bind the user cred */
546 if (task->tk_msg.rpc_cred != NULL)
547 rpcauth_holdcred(task);
548 else
549 rpcauth_bindcred(task);
550
551 if (task->tk_status == 0)
552 task->tk_action = call_start;
553 else
Trond Myklebustabbcf282006-01-03 09:55:03 +0100554 task->tk_action = rpc_exit_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
Chuck Levered394402006-08-22 20:06:17 -0400557/**
558 * rpc_peeraddr - extract remote peer address from clnt's xprt
559 * @clnt: RPC client structure
560 * @buf: target buffer
561 * @size: length of target buffer
562 *
563 * Returns the number of bytes that are actually in the stored address.
564 */
565size_t rpc_peeraddr(struct rpc_clnt *clnt, struct sockaddr *buf, size_t bufsize)
566{
567 size_t bytes;
568 struct rpc_xprt *xprt = clnt->cl_xprt;
569
570 bytes = sizeof(xprt->addr);
571 if (bytes > bufsize)
572 bytes = bufsize;
573 memcpy(buf, &clnt->cl_xprt->addr, bytes);
Chuck Leverc4efcb12006-08-22 20:06:19 -0400574 return xprt->addrlen;
Chuck Levered394402006-08-22 20:06:17 -0400575}
Chuck Leverb86acd52006-08-22 20:06:22 -0400576EXPORT_SYMBOL_GPL(rpc_peeraddr);
Chuck Levered394402006-08-22 20:06:17 -0400577
Chuck Leverf425eba2006-08-22 20:06:18 -0400578/**
579 * rpc_peeraddr2str - return remote peer address in printable format
580 * @clnt: RPC client structure
581 * @format: address format
582 *
583 */
584char *rpc_peeraddr2str(struct rpc_clnt *clnt, enum rpc_display_format_t format)
585{
586 struct rpc_xprt *xprt = clnt->cl_xprt;
587 return xprt->ops->print_addr(xprt, format);
588}
Chuck Leverb86acd52006-08-22 20:06:22 -0400589EXPORT_SYMBOL_GPL(rpc_peeraddr2str);
Chuck Leverf425eba2006-08-22 20:06:18 -0400590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591void
592rpc_setbufsize(struct rpc_clnt *clnt, unsigned int sndsize, unsigned int rcvsize)
593{
594 struct rpc_xprt *xprt = clnt->cl_xprt;
Chuck Lever470056c2005-08-25 16:25:56 -0700595 if (xprt->ops->set_buffer_size)
596 xprt->ops->set_buffer_size(xprt, sndsize, rcvsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
599/*
600 * Return size of largest payload RPC client can support, in bytes
601 *
602 * For stream transports, this is one RPC record fragment (see RFC
603 * 1831), as we don't support multi-record requests yet. For datagram
604 * transports, this is the size of an IP packet minus the IP, UDP, and
605 * RPC header sizes.
606 */
607size_t rpc_max_payload(struct rpc_clnt *clnt)
608{
609 return clnt->cl_xprt->max_payload;
610}
Chuck Leverb86acd52006-08-22 20:06:22 -0400611EXPORT_SYMBOL_GPL(rpc_max_payload);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Chuck Lever35f5a422006-01-03 09:55:50 +0100613/**
614 * rpc_force_rebind - force transport to check that remote port is unchanged
615 * @clnt: client to rebind
616 *
617 */
618void rpc_force_rebind(struct rpc_clnt *clnt)
619{
620 if (clnt->cl_autobind)
Chuck Leverec739ef2006-08-22 20:06:15 -0400621 xprt_clear_bound(clnt->cl_xprt);
Chuck Lever35f5a422006-01-03 09:55:50 +0100622}
Chuck Leverb86acd52006-08-22 20:06:22 -0400623EXPORT_SYMBOL_GPL(rpc_force_rebind);
Chuck Lever35f5a422006-01-03 09:55:50 +0100624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625/*
626 * Restart an (async) RPC call. Usually called from within the
627 * exit handler.
628 */
629void
630rpc_restart_call(struct rpc_task *task)
631{
632 if (RPC_ASSASSINATED(task))
633 return;
634
635 task->tk_action = call_start;
636}
637
638/*
639 * 0. Initial state
640 *
641 * Other FSM states can be visited zero or more times, but
642 * this state is visited exactly once for each RPC.
643 */
644static void
645call_start(struct rpc_task *task)
646{
647 struct rpc_clnt *clnt = task->tk_client;
648
649 dprintk("RPC: %4d call_start %s%d proc %d (%s)\n", task->tk_pid,
650 clnt->cl_protname, clnt->cl_vers, task->tk_msg.rpc_proc->p_proc,
651 (RPC_IS_ASYNC(task) ? "async" : "sync"));
652
653 /* Increment call count */
654 task->tk_msg.rpc_proc->p_count++;
655 clnt->cl_stats->rpccnt++;
656 task->tk_action = call_reserve;
657}
658
659/*
660 * 1. Reserve an RPC call slot
661 */
662static void
663call_reserve(struct rpc_task *task)
664{
665 dprintk("RPC: %4d call_reserve\n", task->tk_pid);
666
667 if (!rpcauth_uptodatecred(task)) {
668 task->tk_action = call_refresh;
669 return;
670 }
671
672 task->tk_status = 0;
673 task->tk_action = call_reserveresult;
674 xprt_reserve(task);
675}
676
677/*
678 * 1b. Grok the result of xprt_reserve()
679 */
680static void
681call_reserveresult(struct rpc_task *task)
682{
683 int status = task->tk_status;
684
685 dprintk("RPC: %4d call_reserveresult (status %d)\n",
686 task->tk_pid, task->tk_status);
687
688 /*
689 * After a call to xprt_reserve(), we must have either
690 * a request slot or else an error status.
691 */
692 task->tk_status = 0;
693 if (status >= 0) {
694 if (task->tk_rqstp) {
695 task->tk_action = call_allocate;
696 return;
697 }
698
699 printk(KERN_ERR "%s: status=%d, but no request slot, exiting\n",
700 __FUNCTION__, status);
701 rpc_exit(task, -EIO);
702 return;
703 }
704
705 /*
706 * Even though there was an error, we may have acquired
707 * a request slot somehow. Make sure not to leak it.
708 */
709 if (task->tk_rqstp) {
710 printk(KERN_ERR "%s: status=%d, request allocated anyway\n",
711 __FUNCTION__, status);
712 xprt_release(task);
713 }
714
715 switch (status) {
716 case -EAGAIN: /* woken up; retry */
717 task->tk_action = call_reserve;
718 return;
719 case -EIO: /* probably a shutdown */
720 break;
721 default:
722 printk(KERN_ERR "%s: unrecognized error %d, exiting\n",
723 __FUNCTION__, status);
724 break;
725 }
726 rpc_exit(task, status);
727}
728
729/*
730 * 2. Allocate the buffer. For details, see sched.c:rpc_malloc.
Chuck Lever02107142006-01-03 09:55:49 +0100731 * (Note: buffer memory is freed in xprt_release).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 */
733static void
734call_allocate(struct rpc_task *task)
735{
Chuck Lever02107142006-01-03 09:55:49 +0100736 struct rpc_rqst *req = task->tk_rqstp;
737 struct rpc_xprt *xprt = task->tk_xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 unsigned int bufsiz;
739
740 dprintk("RPC: %4d call_allocate (status %d)\n",
741 task->tk_pid, task->tk_status);
742 task->tk_action = call_bind;
Chuck Lever02107142006-01-03 09:55:49 +0100743 if (req->rq_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 return;
745
746 /* FIXME: compute buffer requirements more exactly using
747 * auth->au_wslack */
748 bufsiz = task->tk_msg.rpc_proc->p_bufsiz + RPC_SLACK_SPACE;
749
Chuck Lever02107142006-01-03 09:55:49 +0100750 if (xprt->ops->buf_alloc(task, bufsiz << 1) != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 return;
752 printk(KERN_INFO "RPC: buffer allocation failed for task %p\n", task);
753
Trond Myklebust14b218a2005-06-22 17:16:28 +0000754 if (RPC_IS_ASYNC(task) || !signalled()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 xprt_release(task);
756 task->tk_action = call_reserve;
757 rpc_delay(task, HZ>>4);
758 return;
759 }
760
761 rpc_exit(task, -ERESTARTSYS);
762}
763
Trond Myklebust940e3312005-11-09 21:45:24 -0500764static inline int
765rpc_task_need_encode(struct rpc_task *task)
766{
767 return task->tk_rqstp->rq_snd_buf.len == 0;
768}
769
770static inline void
771rpc_task_force_reencode(struct rpc_task *task)
772{
773 task->tk_rqstp->rq_snd_buf.len = 0;
774}
775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776/*
777 * 3. Encode arguments of an RPC call
778 */
779static void
780call_encode(struct rpc_task *task)
781{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 struct rpc_rqst *req = task->tk_rqstp;
783 struct xdr_buf *sndbuf = &req->rq_snd_buf;
784 struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
785 unsigned int bufsiz;
786 kxdrproc_t encode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 u32 *p;
788
789 dprintk("RPC: %4d call_encode (status %d)\n",
790 task->tk_pid, task->tk_status);
791
792 /* Default buffer setup */
Chuck Lever02107142006-01-03 09:55:49 +0100793 bufsiz = req->rq_bufsize >> 1;
794 sndbuf->head[0].iov_base = (void *)req->rq_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 sndbuf->head[0].iov_len = bufsiz;
796 sndbuf->tail[0].iov_len = 0;
797 sndbuf->page_len = 0;
798 sndbuf->len = 0;
799 sndbuf->buflen = bufsiz;
Chuck Lever02107142006-01-03 09:55:49 +0100800 rcvbuf->head[0].iov_base = (void *)((char *)req->rq_buffer + bufsiz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 rcvbuf->head[0].iov_len = bufsiz;
802 rcvbuf->tail[0].iov_len = 0;
803 rcvbuf->page_len = 0;
804 rcvbuf->len = 0;
805 rcvbuf->buflen = bufsiz;
806
807 /* Encode header and provided arguments */
808 encode = task->tk_msg.rpc_proc->p_encode;
809 if (!(p = call_header(task))) {
810 printk(KERN_INFO "RPC: call_header failed, exit EIO\n");
811 rpc_exit(task, -EIO);
812 return;
813 }
J. Bruce Fieldsf3680312005-10-13 16:54:48 -0400814 if (encode == NULL)
815 return;
816
817 task->tk_status = rpcauth_wrap_req(task, encode, req, p,
818 task->tk_msg.rpc_argp);
819 if (task->tk_status == -ENOMEM) {
820 /* XXX: Is this sane? */
821 rpc_delay(task, 3*HZ);
822 task->tk_status = -EAGAIN;
823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
826/*
827 * 4. Get the server port number if not yet set
828 */
829static void
830call_bind(struct rpc_task *task)
831{
Chuck Leverec739ef2006-08-22 20:06:15 -0400832 struct rpc_xprt *xprt = task->tk_xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Chuck Leverda351872005-08-11 16:25:11 -0400834 dprintk("RPC: %4d call_bind (status %d)\n",
835 task->tk_pid, task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Chuck Leverda351872005-08-11 16:25:11 -0400837 task->tk_action = call_connect;
Chuck Leverec739ef2006-08-22 20:06:15 -0400838 if (!xprt_bound(xprt)) {
Chuck Leverda351872005-08-11 16:25:11 -0400839 task->tk_action = call_bind_status;
Chuck Leverec739ef2006-08-22 20:06:15 -0400840 task->tk_timeout = xprt->bind_timeout;
Chuck Leverbbf7c1d2006-08-22 20:06:16 -0400841 xprt->ops->rpcbind(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 }
843}
844
845/*
Chuck Leverda351872005-08-11 16:25:11 -0400846 * 4a. Sort out bind result
847 */
848static void
849call_bind_status(struct rpc_task *task)
850{
851 int status = -EACCES;
852
853 if (task->tk_status >= 0) {
854 dprintk("RPC: %4d call_bind_status (status %d)\n",
855 task->tk_pid, task->tk_status);
856 task->tk_status = 0;
857 task->tk_action = call_connect;
858 return;
859 }
860
861 switch (task->tk_status) {
862 case -EACCES:
863 dprintk("RPC: %4d remote rpcbind: RPC program/version unavailable\n",
864 task->tk_pid);
Chuck Leverea635a52005-10-06 23:12:58 -0400865 rpc_delay(task, 3*HZ);
866 goto retry_bind;
Chuck Leverda351872005-08-11 16:25:11 -0400867 case -ETIMEDOUT:
868 dprintk("RPC: %4d rpcbind request timed out\n",
869 task->tk_pid);
870 if (RPC_IS_SOFT(task)) {
871 status = -EIO;
872 break;
873 }
874 goto retry_bind;
875 case -EPFNOSUPPORT:
876 dprintk("RPC: %4d remote rpcbind service unavailable\n",
877 task->tk_pid);
878 break;
879 case -EPROTONOSUPPORT:
880 dprintk("RPC: %4d remote rpcbind version 2 unavailable\n",
881 task->tk_pid);
882 break;
883 default:
884 dprintk("RPC: %4d unrecognized rpcbind error (%d)\n",
885 task->tk_pid, -task->tk_status);
886 status = -EIO;
887 break;
888 }
889
890 rpc_exit(task, status);
891 return;
892
893retry_bind:
894 task->tk_status = 0;
895 task->tk_action = call_bind;
896 return;
897}
898
899/*
900 * 4b. Connect to the RPC server
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 */
902static void
903call_connect(struct rpc_task *task)
904{
Chuck Leverda351872005-08-11 16:25:11 -0400905 struct rpc_xprt *xprt = task->tk_xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Chuck Leverda351872005-08-11 16:25:11 -0400907 dprintk("RPC: %4d call_connect xprt %p %s connected\n",
908 task->tk_pid, xprt,
909 (xprt_connected(xprt) ? "is" : "is not"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Chuck Leverda351872005-08-11 16:25:11 -0400911 task->tk_action = call_transmit;
912 if (!xprt_connected(xprt)) {
913 task->tk_action = call_connect_status;
914 if (task->tk_status < 0)
915 return;
916 xprt_connect(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918}
919
920/*
Chuck Leverda351872005-08-11 16:25:11 -0400921 * 4c. Sort out connect result
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 */
923static void
924call_connect_status(struct rpc_task *task)
925{
926 struct rpc_clnt *clnt = task->tk_client;
927 int status = task->tk_status;
928
Chuck Leverda351872005-08-11 16:25:11 -0400929 dprintk("RPC: %5u call_connect_status (status %d)\n",
930 task->tk_pid, task->tk_status);
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 task->tk_status = 0;
933 if (status >= 0) {
934 clnt->cl_stats->netreconn++;
935 task->tk_action = call_transmit;
936 return;
937 }
938
Chuck Leverda351872005-08-11 16:25:11 -0400939 /* Something failed: remote service port may have changed */
Chuck Lever35f5a422006-01-03 09:55:50 +0100940 rpc_force_rebind(clnt);
Chuck Leverda351872005-08-11 16:25:11 -0400941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 switch (status) {
943 case -ENOTCONN:
944 case -ETIMEDOUT:
945 case -EAGAIN:
Chuck Leverda351872005-08-11 16:25:11 -0400946 task->tk_action = call_bind;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 break;
948 default:
949 rpc_exit(task, -EIO);
Chuck Leverda351872005-08-11 16:25:11 -0400950 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
952}
953
954/*
955 * 5. Transmit the RPC request, and wait for reply
956 */
957static void
958call_transmit(struct rpc_task *task)
959{
960 dprintk("RPC: %4d call_transmit (status %d)\n",
961 task->tk_pid, task->tk_status);
962
963 task->tk_action = call_status;
964 if (task->tk_status < 0)
965 return;
966 task->tk_status = xprt_prepare_transmit(task);
967 if (task->tk_status != 0)
968 return;
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400969 task->tk_action = call_transmit_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 /* Encode here so that rpcsec_gss can use correct sequence number. */
Trond Myklebust940e3312005-11-09 21:45:24 -0500971 if (rpc_task_need_encode(task)) {
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400972 BUG_ON(task->tk_rqstp->rq_bytes_sent != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 call_encode(task);
Trond Myklebust5e5ce5b2005-10-18 14:20:11 -0700974 /* Did the encode result in an error condition? */
975 if (task->tk_status != 0)
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400976 return;
Trond Myklebust5e5ce5b2005-10-18 14:20:11 -0700977 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 xprt_transmit(task);
979 if (task->tk_status < 0)
980 return;
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400981 /*
982 * On success, ensure that we call xprt_end_transmit() before sleeping
983 * in order to allow access to the socket to other RPC requests.
984 */
985 call_transmit_status(task);
986 if (task->tk_msg.rpc_proc->p_decode != NULL)
987 return;
988 task->tk_action = rpc_exit_task;
989 rpc_wake_up_task(task);
990}
991
992/*
993 * 5a. Handle cleanup after a transmission
994 */
995static void
996call_transmit_status(struct rpc_task *task)
997{
998 task->tk_action = call_status;
999 /*
1000 * Special case: if we've been waiting on the socket's write_space()
1001 * callback, then don't call xprt_end_transmit().
1002 */
1003 if (task->tk_status == -EAGAIN)
1004 return;
1005 xprt_end_transmit(task);
Trond Myklebust940e3312005-11-09 21:45:24 -05001006 rpc_task_force_reencode(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
1008
1009/*
1010 * 6. Sort out the RPC call status
1011 */
1012static void
1013call_status(struct rpc_task *task)
1014{
1015 struct rpc_clnt *clnt = task->tk_client;
1016 struct rpc_rqst *req = task->tk_rqstp;
1017 int status;
1018
1019 if (req->rq_received > 0 && !req->rq_bytes_sent)
1020 task->tk_status = req->rq_received;
1021
1022 dprintk("RPC: %4d call_status (status %d)\n",
1023 task->tk_pid, task->tk_status);
1024
1025 status = task->tk_status;
1026 if (status >= 0) {
1027 task->tk_action = call_decode;
1028 return;
1029 }
1030
1031 task->tk_status = 0;
1032 switch(status) {
Trond Myklebust76303992006-08-30 14:32:49 -04001033 case -EHOSTDOWN:
1034 case -EHOSTUNREACH:
1035 case -ENETUNREACH:
1036 /*
1037 * Delay any retries for 3 seconds, then handle as if it
1038 * were a timeout.
1039 */
1040 rpc_delay(task, 3*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 case -ETIMEDOUT:
1042 task->tk_action = call_timeout;
1043 break;
1044 case -ECONNREFUSED:
1045 case -ENOTCONN:
Chuck Lever35f5a422006-01-03 09:55:50 +01001046 rpc_force_rebind(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 task->tk_action = call_bind;
1048 break;
1049 case -EAGAIN:
1050 task->tk_action = call_transmit;
1051 break;
1052 case -EIO:
1053 /* shutdown or soft timeout */
1054 rpc_exit(task, status);
1055 break;
1056 default:
Chuck Leverf518e35a2006-01-03 09:55:52 +01001057 printk("%s: RPC call returned error %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 clnt->cl_protname, -status);
1059 rpc_exit(task, status);
1060 break;
1061 }
1062}
1063
1064/*
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04001065 * 6a. Handle RPC timeout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 * We do not release the request slot, so we keep using the
1067 * same XID for all retransmits.
1068 */
1069static void
1070call_timeout(struct rpc_task *task)
1071{
1072 struct rpc_clnt *clnt = task->tk_client;
1073
1074 if (xprt_adjust_timeout(task->tk_rqstp) == 0) {
1075 dprintk("RPC: %4d call_timeout (minor)\n", task->tk_pid);
1076 goto retry;
1077 }
1078
1079 dprintk("RPC: %4d call_timeout (major)\n", task->tk_pid);
Chuck Leveref759a22006-03-20 13:44:17 -05001080 task->tk_timeouts++;
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (RPC_IS_SOFT(task)) {
Chuck Leverf518e35a2006-01-03 09:55:52 +01001083 printk(KERN_NOTICE "%s: server %s not responding, timed out\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 clnt->cl_protname, clnt->cl_server);
1085 rpc_exit(task, -EIO);
1086 return;
1087 }
1088
Chuck Leverf518e35a2006-01-03 09:55:52 +01001089 if (!(task->tk_flags & RPC_CALL_MAJORSEEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 task->tk_flags |= RPC_CALL_MAJORSEEN;
1091 printk(KERN_NOTICE "%s: server %s not responding, still trying\n",
1092 clnt->cl_protname, clnt->cl_server);
1093 }
Chuck Lever35f5a422006-01-03 09:55:50 +01001094 rpc_force_rebind(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096retry:
1097 clnt->cl_stats->rpcretrans++;
1098 task->tk_action = call_bind;
1099 task->tk_status = 0;
1100}
1101
1102/*
1103 * 7. Decode the RPC reply
1104 */
1105static void
1106call_decode(struct rpc_task *task)
1107{
1108 struct rpc_clnt *clnt = task->tk_client;
1109 struct rpc_rqst *req = task->tk_rqstp;
1110 kxdrproc_t decode = task->tk_msg.rpc_proc->p_decode;
1111 u32 *p;
1112
1113 dprintk("RPC: %4d call_decode (status %d)\n",
1114 task->tk_pid, task->tk_status);
1115
Chuck Leverf518e35a2006-01-03 09:55:52 +01001116 if (task->tk_flags & RPC_CALL_MAJORSEEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 printk(KERN_NOTICE "%s: server %s OK\n",
1118 clnt->cl_protname, clnt->cl_server);
1119 task->tk_flags &= ~RPC_CALL_MAJORSEEN;
1120 }
1121
1122 if (task->tk_status < 12) {
1123 if (!RPC_IS_SOFT(task)) {
1124 task->tk_action = call_bind;
1125 clnt->cl_stats->rpcretrans++;
1126 goto out_retry;
1127 }
1128 printk(KERN_WARNING "%s: too small RPC reply size (%d bytes)\n",
1129 clnt->cl_protname, task->tk_status);
1130 rpc_exit(task, -EIO);
1131 return;
1132 }
1133
Trond Myklebust43ac3f22006-03-20 13:44:51 -05001134 /*
1135 * Ensure that we see all writes made by xprt_complete_rqst()
1136 * before it changed req->rq_received.
1137 */
1138 smp_rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 req->rq_rcv_buf.len = req->rq_private_buf.len;
1140
1141 /* Check that the softirq receive buffer is valid */
1142 WARN_ON(memcmp(&req->rq_rcv_buf, &req->rq_private_buf,
1143 sizeof(req->rq_rcv_buf)) != 0);
1144
1145 /* Verify the RPC header */
Trond Myklebustabbcf282006-01-03 09:55:03 +01001146 p = call_verify(task);
1147 if (IS_ERR(p)) {
1148 if (p == ERR_PTR(-EAGAIN))
1149 goto out_retry;
1150 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 }
1152
Trond Myklebustabbcf282006-01-03 09:55:03 +01001153 task->tk_action = rpc_exit_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155 if (decode)
1156 task->tk_status = rpcauth_unwrap_resp(task, decode, req, p,
1157 task->tk_msg.rpc_resp);
1158 dprintk("RPC: %4d call_decode result %d\n", task->tk_pid,
1159 task->tk_status);
1160 return;
1161out_retry:
1162 req->rq_received = req->rq_private_buf.len = 0;
1163 task->tk_status = 0;
1164}
1165
1166/*
1167 * 8. Refresh the credentials if rejected by the server
1168 */
1169static void
1170call_refresh(struct rpc_task *task)
1171{
1172 dprintk("RPC: %4d call_refresh\n", task->tk_pid);
1173
1174 xprt_release(task); /* Must do to obtain new XID */
1175 task->tk_action = call_refreshresult;
1176 task->tk_status = 0;
1177 task->tk_client->cl_stats->rpcauthrefresh++;
1178 rpcauth_refreshcred(task);
1179}
1180
1181/*
1182 * 8a. Process the results of a credential refresh
1183 */
1184static void
1185call_refreshresult(struct rpc_task *task)
1186{
1187 int status = task->tk_status;
1188 dprintk("RPC: %4d call_refreshresult (status %d)\n",
1189 task->tk_pid, task->tk_status);
1190
1191 task->tk_status = 0;
1192 task->tk_action = call_reserve;
1193 if (status >= 0 && rpcauth_uptodatecred(task))
1194 return;
1195 if (status == -EACCES) {
1196 rpc_exit(task, -EACCES);
1197 return;
1198 }
1199 task->tk_action = call_refresh;
1200 if (status != -ETIMEDOUT)
1201 rpc_delay(task, 3*HZ);
1202 return;
1203}
1204
1205/*
1206 * Call header serialization
1207 */
1208static u32 *
1209call_header(struct rpc_task *task)
1210{
1211 struct rpc_clnt *clnt = task->tk_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 struct rpc_rqst *req = task->tk_rqstp;
1213 u32 *p = req->rq_svec[0].iov_base;
1214
1215 /* FIXME: check buffer size? */
Chuck Lever808012f2005-08-25 16:25:49 -07001216
1217 p = xprt_skip_transport_header(task->tk_xprt, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 *p++ = req->rq_xid; /* XID */
1219 *p++ = htonl(RPC_CALL); /* CALL */
1220 *p++ = htonl(RPC_VERSION); /* RPC version */
1221 *p++ = htonl(clnt->cl_prog); /* program number */
1222 *p++ = htonl(clnt->cl_vers); /* program version */
1223 *p++ = htonl(task->tk_msg.rpc_proc->p_proc); /* procedure */
Trond Myklebust334ccfd2005-06-22 17:16:19 +00001224 p = rpcauth_marshcred(task, p);
1225 req->rq_slen = xdr_adjust_iovec(&req->rq_svec[0], p);
1226 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227}
1228
1229/*
1230 * Reply header verification
1231 */
1232static u32 *
1233call_verify(struct rpc_task *task)
1234{
1235 struct kvec *iov = &task->tk_rqstp->rq_rcv_buf.head[0];
1236 int len = task->tk_rqstp->rq_rcv_buf.len >> 2;
1237 u32 *p = iov->iov_base, n;
1238 int error = -EACCES;
1239
David Howellse8896492006-08-24 15:44:19 -04001240 if ((task->tk_rqstp->rq_rcv_buf.len & 3) != 0) {
1241 /* RFC-1014 says that the representation of XDR data must be a
1242 * multiple of four bytes
1243 * - if it isn't pointer subtraction in the NFS client may give
1244 * undefined results
1245 */
1246 printk(KERN_WARNING
1247 "call_verify: XDR representation not a multiple of"
1248 " 4 bytes: 0x%x\n", task->tk_rqstp->rq_rcv_buf.len);
1249 goto out_eio;
1250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 if ((len -= 3) < 0)
1252 goto out_overflow;
1253 p += 1; /* skip XID */
1254
1255 if ((n = ntohl(*p++)) != RPC_REPLY) {
1256 printk(KERN_WARNING "call_verify: not an RPC reply: %x\n", n);
Trond Myklebustabbcf282006-01-03 09:55:03 +01001257 goto out_garbage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 }
1259 if ((n = ntohl(*p++)) != RPC_MSG_ACCEPTED) {
1260 if (--len < 0)
1261 goto out_overflow;
1262 switch ((n = ntohl(*p++))) {
1263 case RPC_AUTH_ERROR:
1264 break;
1265 case RPC_MISMATCH:
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001266 dprintk("%s: RPC call version mismatch!\n", __FUNCTION__);
1267 error = -EPROTONOSUPPORT;
1268 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 default:
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001270 dprintk("%s: RPC call rejected, unknown error: %x\n", __FUNCTION__, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 goto out_eio;
1272 }
1273 if (--len < 0)
1274 goto out_overflow;
1275 switch ((n = ntohl(*p++))) {
1276 case RPC_AUTH_REJECTEDCRED:
1277 case RPC_AUTH_REJECTEDVERF:
1278 case RPCSEC_GSS_CREDPROBLEM:
1279 case RPCSEC_GSS_CTXPROBLEM:
1280 if (!task->tk_cred_retry)
1281 break;
1282 task->tk_cred_retry--;
1283 dprintk("RPC: %4d call_verify: retry stale creds\n",
1284 task->tk_pid);
1285 rpcauth_invalcred(task);
1286 task->tk_action = call_refresh;
Trond Myklebustabbcf282006-01-03 09:55:03 +01001287 goto out_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 case RPC_AUTH_BADCRED:
1289 case RPC_AUTH_BADVERF:
1290 /* possibly garbled cred/verf? */
1291 if (!task->tk_garb_retry)
1292 break;
1293 task->tk_garb_retry--;
1294 dprintk("RPC: %4d call_verify: retry garbled creds\n",
1295 task->tk_pid);
1296 task->tk_action = call_bind;
Trond Myklebustabbcf282006-01-03 09:55:03 +01001297 goto out_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 case RPC_AUTH_TOOWEAK:
Levent Serinol1356b8c2006-03-20 13:44:11 -05001299 printk(KERN_NOTICE "call_verify: server %s requires stronger "
1300 "authentication.\n", task->tk_client->cl_server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 break;
1302 default:
1303 printk(KERN_WARNING "call_verify: unknown auth error: %x\n", n);
1304 error = -EIO;
1305 }
1306 dprintk("RPC: %4d call_verify: call rejected %d\n",
1307 task->tk_pid, n);
1308 goto out_err;
1309 }
1310 if (!(p = rpcauth_checkverf(task, p))) {
1311 printk(KERN_WARNING "call_verify: auth check failed\n");
Trond Myklebustabbcf282006-01-03 09:55:03 +01001312 goto out_garbage; /* bad verifier, retry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 }
1314 len = p - (u32 *)iov->iov_base - 1;
1315 if (len < 0)
1316 goto out_overflow;
1317 switch ((n = ntohl(*p++))) {
1318 case RPC_SUCCESS:
1319 return p;
1320 case RPC_PROG_UNAVAIL:
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001321 dprintk("RPC: call_verify: program %u is unsupported by server %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 (unsigned int)task->tk_client->cl_prog,
1323 task->tk_client->cl_server);
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001324 error = -EPFNOSUPPORT;
1325 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 case RPC_PROG_MISMATCH:
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001327 dprintk("RPC: call_verify: program %u, version %u unsupported by server %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 (unsigned int)task->tk_client->cl_prog,
1329 (unsigned int)task->tk_client->cl_vers,
1330 task->tk_client->cl_server);
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001331 error = -EPROTONOSUPPORT;
1332 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 case RPC_PROC_UNAVAIL:
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001334 dprintk("RPC: call_verify: proc %p unsupported by program %u, version %u on server %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 task->tk_msg.rpc_proc,
1336 task->tk_client->cl_prog,
1337 task->tk_client->cl_vers,
1338 task->tk_client->cl_server);
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001339 error = -EOPNOTSUPP;
1340 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 case RPC_GARBAGE_ARGS:
1342 dprintk("RPC: %4d %s: server saw garbage\n", task->tk_pid, __FUNCTION__);
1343 break; /* retry */
1344 default:
1345 printk(KERN_WARNING "call_verify: server accept status: %x\n", n);
1346 /* Also retry */
1347 }
1348
Trond Myklebustabbcf282006-01-03 09:55:03 +01001349out_garbage:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 task->tk_client->cl_stats->rpcgarbage++;
1351 if (task->tk_garb_retry) {
1352 task->tk_garb_retry--;
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001353 dprintk("RPC %s: retrying %4d\n", __FUNCTION__, task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 task->tk_action = call_bind;
Trond Myklebustabbcf282006-01-03 09:55:03 +01001355out_retry:
1356 return ERR_PTR(-EAGAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 }
1358 printk(KERN_WARNING "RPC %s: retry failed, exit EIO\n", __FUNCTION__);
1359out_eio:
1360 error = -EIO;
1361out_err:
1362 rpc_exit(task, error);
Trond Myklebustabbcf282006-01-03 09:55:03 +01001363 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364out_overflow:
1365 printk(KERN_WARNING "RPC %s: server reply was truncated.\n", __FUNCTION__);
Trond Myklebustabbcf282006-01-03 09:55:03 +01001366 goto out_garbage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367}
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00001368
1369static int rpcproc_encode_null(void *rqstp, u32 *data, void *obj)
1370{
1371 return 0;
1372}
1373
1374static int rpcproc_decode_null(void *rqstp, u32 *data, void *obj)
1375{
1376 return 0;
1377}
1378
1379static struct rpc_procinfo rpcproc_null = {
1380 .p_encode = rpcproc_encode_null,
1381 .p_decode = rpcproc_decode_null,
1382};
1383
1384int rpc_ping(struct rpc_clnt *clnt, int flags)
1385{
1386 struct rpc_message msg = {
1387 .rpc_proc = &rpcproc_null,
1388 };
1389 int err;
1390 msg.rpc_cred = authnull_ops.lookup_cred(NULL, NULL, 0);
1391 err = rpc_call_sync(clnt, &msg, flags);
1392 put_rpccred(msg.rpc_cred);
1393 return err;
1394}