blob: 5a28ffac99eab1b73f153a34126142df9f5128d9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Chuck Lever55aa4f52005-08-11 16:25:47 -04002 * linux/net/sunrpc/clnt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * This file contains the high-level RPC interface.
5 * It is modeled as a finite state machine to support both synchronous
6 * and asynchronous requests.
7 *
8 * - RPC header generation and argument serialization.
9 * - Credential refresh.
10 * - TCP connect handling.
11 * - Retry of operation when it is suspected the operation failed because
12 * of uid squashing on the server, or when the credentials were stale
13 * and need to be refreshed, or when a packet was damaged in transit.
14 * This may be have to be moved to the VFS layer.
15 *
16 * NB: BSD uses a more intelligent approach to guessing when a request
17 * or reply has been lost by keeping the RTO estimate for each procedure.
18 * We currently make do with a constant timeout value.
19 *
20 * Copyright (C) 1992,1993 Rick Sladkey <jrs@world.std.com>
21 * Copyright (C) 1995,1996 Olaf Kirch <okir@monad.swb.de>
22 */
23
24#include <asm/system.h>
25
26#include <linux/module.h>
27#include <linux/types.h>
28#include <linux/mm.h>
29#include <linux/slab.h>
Trond Myklebust6d5fcb52006-10-18 16:01:06 -040030#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/utsname.h>
Chuck Lever11c556b2006-03-20 13:44:22 -050032#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <linux/sunrpc/clnt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/sunrpc/rpc_pipe_fs.h>
Chuck Lever11c556b2006-03-20 13:44:22 -050036#include <linux/sunrpc/metrics.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#ifdef RPC_DEBUG
40# define RPCDBG_FACILITY RPCDBG_CALL
41#endif
42
Chuck Lever46121cf2007-01-31 12:14:08 -050043#define dprint_status(t) \
44 dprintk("RPC: %5u %s (status %d)\n", t->tk_pid, \
45 __FUNCTION__, t->tk_status)
46
Trond Myklebust188fef12007-06-16 14:18:40 -040047/*
48 * All RPC clients are linked into this list
49 */
50static LIST_HEAD(all_clients);
51static DEFINE_SPINLOCK(rpc_client_lock);
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static DECLARE_WAIT_QUEUE_HEAD(destroy_wait);
54
55
56static void call_start(struct rpc_task *task);
57static void call_reserve(struct rpc_task *task);
58static void call_reserveresult(struct rpc_task *task);
59static void call_allocate(struct rpc_task *task);
60static void call_encode(struct rpc_task *task);
61static void call_decode(struct rpc_task *task);
62static void call_bind(struct rpc_task *task);
Chuck Leverda351872005-08-11 16:25:11 -040063static void call_bind_status(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static void call_transmit(struct rpc_task *task);
65static void call_status(struct rpc_task *task);
Trond Myklebust940e3312005-11-09 21:45:24 -050066static void call_transmit_status(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static void call_refresh(struct rpc_task *task);
68static void call_refreshresult(struct rpc_task *task);
69static void call_timeout(struct rpc_task *task);
70static void call_connect(struct rpc_task *task);
71static void call_connect_status(struct rpc_task *task);
Alexey Dobriyand8ed0292006-09-26 22:29:38 -070072static __be32 * call_header(struct rpc_task *task);
73static __be32 * call_verify(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Trond Myklebust64c91a12007-06-23 10:17:16 -040075static int rpc_ping(struct rpc_clnt *clnt, int flags);
76
Trond Myklebust188fef12007-06-16 14:18:40 -040077static void rpc_register_client(struct rpc_clnt *clnt)
78{
79 spin_lock(&rpc_client_lock);
80 list_add(&clnt->cl_clients, &all_clients);
81 spin_unlock(&rpc_client_lock);
82}
83
84static void rpc_unregister_client(struct rpc_clnt *clnt)
85{
86 spin_lock(&rpc_client_lock);
87 list_del(&clnt->cl_clients);
88 spin_unlock(&rpc_client_lock);
89}
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91static int
92rpc_setup_pipedir(struct rpc_clnt *clnt, char *dir_name)
93{
Trond Myklebustf1345852005-09-23 11:08:25 -040094 static uint32_t clntid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 int error;
96
Trond Myklebust54281542006-03-20 13:44:49 -050097 clnt->cl_vfsmnt = ERR_PTR(-ENOENT);
98 clnt->cl_dentry = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 if (dir_name == NULL)
100 return 0;
Trond Myklebust54281542006-03-20 13:44:49 -0500101
102 clnt->cl_vfsmnt = rpc_get_mount();
103 if (IS_ERR(clnt->cl_vfsmnt))
104 return PTR_ERR(clnt->cl_vfsmnt);
105
Trond Myklebustf1345852005-09-23 11:08:25 -0400106 for (;;) {
107 snprintf(clnt->cl_pathname, sizeof(clnt->cl_pathname),
108 "%s/clnt%x", dir_name,
109 (unsigned int)clntid++);
110 clnt->cl_pathname[sizeof(clnt->cl_pathname) - 1] = '\0';
111 clnt->cl_dentry = rpc_mkdir(clnt->cl_pathname, clnt);
112 if (!IS_ERR(clnt->cl_dentry))
113 return 0;
Christoph Hellwig278c9952005-07-24 23:53:01 +0100114 error = PTR_ERR(clnt->cl_dentry);
Trond Myklebustf1345852005-09-23 11:08:25 -0400115 if (error != -EEXIST) {
116 printk(KERN_INFO "RPC: Couldn't create pipefs entry %s, error %d\n",
117 clnt->cl_pathname, error);
Trond Myklebust54281542006-03-20 13:44:49 -0500118 rpc_put_mount();
Trond Myklebustf1345852005-09-23 11:08:25 -0400119 return error;
120 }
Christoph Hellwig278c9952005-07-24 23:53:01 +0100121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
Chuck Leverff9aa5e2006-08-22 20:06:21 -0400124static 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 -0700125{
126 struct rpc_version *version;
127 struct rpc_clnt *clnt = NULL;
J. Bruce Fields6a192752005-06-22 17:16:23 +0000128 struct rpc_auth *auth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 int err;
130 int len;
131
Chuck Lever46121cf2007-01-31 12:14:08 -0500132 dprintk("RPC: creating %s client for %s (xprt %p)\n",
133 program->name, servname, xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Trond Myklebust4ada5392007-06-14 17:26:17 -0400135 err = rpciod_up();
136 if (err)
137 goto out_no_rpciod;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 err = -EINVAL;
139 if (!xprt)
Adrian Bunk712917d2006-03-13 21:20:47 -0800140 goto out_no_xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 if (vers >= program->nrvers || !(version = program->version[vers]))
142 goto out_err;
143
144 err = -ENOMEM;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700145 clnt = kzalloc(sizeof(*clnt), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 if (!clnt)
147 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 clnt->cl_parent = clnt;
149
150 clnt->cl_server = clnt->cl_inline_name;
151 len = strlen(servname) + 1;
152 if (len > sizeof(clnt->cl_inline_name)) {
153 char *buf = kmalloc(len, GFP_KERNEL);
154 if (buf != 0)
155 clnt->cl_server = buf;
156 else
157 len = sizeof(clnt->cl_inline_name);
158 }
159 strlcpy(clnt->cl_server, servname, len);
160
161 clnt->cl_xprt = xprt;
162 clnt->cl_procinfo = version->procs;
163 clnt->cl_maxproc = version->nrprocs;
164 clnt->cl_protname = program->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 clnt->cl_prog = program->number;
166 clnt->cl_vers = version->number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 clnt->cl_stats = program->stats;
Chuck Lever11c556b2006-03-20 13:44:22 -0500168 clnt->cl_metrics = rpc_alloc_iostats(clnt);
Trond Myklebust23bf85b2006-11-21 10:40:23 -0500169 err = -ENOMEM;
170 if (clnt->cl_metrics == NULL)
171 goto out_no_stats;
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500172 clnt->cl_program = program;
Trond Myklebust6529eba2007-06-14 16:40:14 -0400173 INIT_LIST_HEAD(&clnt->cl_tasks);
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400174 spin_lock_init(&clnt->cl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Chuck Leverec739ef2006-08-22 20:06:15 -0400176 if (!xprt_bound(clnt->cl_xprt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 clnt->cl_autobind = 1;
178
179 clnt->cl_rtt = &clnt->cl_rtt_default;
180 rpc_init_rtt(&clnt->cl_rtt_default, xprt->timeout.to_initval);
181
Trond Myklebust34f52e32007-06-14 16:40:31 -0400182 kref_init(&clnt->cl_kref);
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 err = rpc_setup_pipedir(clnt, program->pipe_dir_name);
185 if (err < 0)
186 goto out_no_path;
187
J. Bruce Fields6a192752005-06-22 17:16:23 +0000188 auth = rpcauth_create(flavor, clnt);
189 if (IS_ERR(auth)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 printk(KERN_INFO "RPC: Couldn't create auth handle (flavor %u)\n",
191 flavor);
J. Bruce Fields6a192752005-06-22 17:16:23 +0000192 err = PTR_ERR(auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 goto out_no_auth;
194 }
195
196 /* save the nodename */
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700197 clnt->cl_nodelen = strlen(utsname()->nodename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 if (clnt->cl_nodelen > UNX_MAXNODENAME)
199 clnt->cl_nodelen = UNX_MAXNODENAME;
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700200 memcpy(clnt->cl_nodename, utsname()->nodename, clnt->cl_nodelen);
Trond Myklebust6529eba2007-06-14 16:40:14 -0400201 rpc_register_client(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return clnt;
203
204out_no_auth:
Trond Myklebust54281542006-03-20 13:44:49 -0500205 if (!IS_ERR(clnt->cl_dentry)) {
Trond Myklebustdff02cc2006-07-31 14:17:18 -0700206 rpc_rmdir(clnt->cl_dentry);
Trond Myklebust54281542006-03-20 13:44:49 -0500207 rpc_put_mount();
208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209out_no_path:
Trond Myklebust23bf85b2006-11-21 10:40:23 -0500210 rpc_free_iostats(clnt->cl_metrics);
211out_no_stats:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (clnt->cl_server != clnt->cl_inline_name)
213 kfree(clnt->cl_server);
214 kfree(clnt);
215out_err:
Trond Myklebust6b6ca862006-09-05 12:55:57 -0400216 xprt_put(xprt);
Adrian Bunk712917d2006-03-13 21:20:47 -0800217out_no_xprt:
Trond Myklebust4ada5392007-06-14 17:26:17 -0400218 rpciod_down();
219out_no_rpciod:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return ERR_PTR(err);
221}
222
Chuck Leverc2866762006-08-22 20:06:20 -0400223/*
224 * rpc_create - create an RPC client and transport with one call
225 * @args: rpc_clnt create argument structure
226 *
227 * Creates and initializes an RPC transport and an RPC client.
228 *
229 * It can ping the server in order to determine if it is up, and to see if
230 * it supports this program and version. RPC_CLNT_CREATE_NOPING disables
231 * this behavior so asynchronous tasks can also use rpc_create.
232 */
233struct rpc_clnt *rpc_create(struct rpc_create_args *args)
234{
235 struct rpc_xprt *xprt;
236 struct rpc_clnt *clnt;
237
238 xprt = xprt_create_transport(args->protocol, args->address,
239 args->addrsize, args->timeout);
240 if (IS_ERR(xprt))
241 return (struct rpc_clnt *)xprt;
242
243 /*
244 * By default, kernel RPC client connects from a reserved port.
245 * CAP_NET_BIND_SERVICE will not be set for unprivileged requesters,
246 * but it is always enabled for rpciod, which handles the connect
247 * operation.
248 */
249 xprt->resvport = 1;
250 if (args->flags & RPC_CLNT_CREATE_NONPRIVPORT)
251 xprt->resvport = 0;
252
253 dprintk("RPC: creating %s client for %s (xprt %p)\n",
Chuck Lever46121cf2007-01-31 12:14:08 -0500254 args->program->name, args->servername, xprt);
Chuck Leverc2866762006-08-22 20:06:20 -0400255
256 clnt = rpc_new_client(xprt, args->servername, args->program,
257 args->version, args->authflavor);
258 if (IS_ERR(clnt))
259 return clnt;
260
261 if (!(args->flags & RPC_CLNT_CREATE_NOPING)) {
262 int err = rpc_ping(clnt, RPC_TASK_SOFT|RPC_TASK_NOINTR);
263 if (err != 0) {
264 rpc_shutdown_client(clnt);
265 return ERR_PTR(err);
266 }
267 }
268
269 clnt->cl_softrtry = 1;
270 if (args->flags & RPC_CLNT_CREATE_HARDRTRY)
271 clnt->cl_softrtry = 0;
272
273 if (args->flags & RPC_CLNT_CREATE_INTR)
274 clnt->cl_intr = 1;
275 if (args->flags & RPC_CLNT_CREATE_AUTOBIND)
276 clnt->cl_autobind = 1;
Chuck Lever43d78ef2007-02-06 18:26:11 -0500277 if (args->flags & RPC_CLNT_CREATE_DISCRTRY)
278 clnt->cl_discrtry = 1;
Chuck Leverc2866762006-08-22 20:06:20 -0400279
280 return clnt;
281}
Chuck Leverb86acd52006-08-22 20:06:22 -0400282EXPORT_SYMBOL_GPL(rpc_create);
Chuck Leverc2866762006-08-22 20:06:20 -0400283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284/*
285 * This function clones the RPC client structure. It allows us to share the
286 * same transport while varying parameters such as the authentication
287 * flavour.
288 */
289struct rpc_clnt *
290rpc_clone_client(struct rpc_clnt *clnt)
291{
292 struct rpc_clnt *new;
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500293 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Arnaldo Carvalho de Meloe69062b2006-11-21 01:21:34 -0200295 new = kmemdup(clnt, sizeof(*new), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 if (!new)
297 goto out_no_clnt;
Trond Myklebustd431a5552007-06-17 17:07:54 -0400298 new->cl_parent = clnt;
299 /* Turn off autobind on clones */
300 new->cl_autobind = 0;
301 INIT_LIST_HEAD(&new->cl_tasks);
302 spin_lock_init(&new->cl_lock);
303 rpc_init_rtt(&new->cl_rtt_default, clnt->cl_xprt->timeout.to_initval);
Trond Myklebust23bf85b2006-11-21 10:40:23 -0500304 new->cl_metrics = rpc_alloc_iostats(clnt);
305 if (new->cl_metrics == NULL)
306 goto out_no_stats;
Trond Myklebust34f52e32007-06-14 16:40:31 -0400307 kref_init(&new->cl_kref);
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500308 err = rpc_setup_pipedir(new, clnt->cl_program->pipe_dir_name);
309 if (err != 0)
310 goto out_no_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 if (new->cl_auth)
312 atomic_inc(&new->cl_auth->au_count);
Trond Myklebustd431a5552007-06-17 17:07:54 -0400313 xprt_get(clnt->cl_xprt);
314 kref_get(&clnt->cl_kref);
Trond Myklebust6529eba2007-06-14 16:40:14 -0400315 rpc_register_client(new);
Trond Myklebust4ada5392007-06-14 17:26:17 -0400316 rpciod_up();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return new;
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500318out_no_path:
319 rpc_free_iostats(new->cl_metrics);
Trond Myklebust23bf85b2006-11-21 10:40:23 -0500320out_no_stats:
321 kfree(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322out_no_clnt:
Chuck Lever46121cf2007-01-31 12:14:08 -0500323 dprintk("RPC: %s: returned error %d\n", __FUNCTION__, err);
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500324 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
327/*
328 * Properly shut down an RPC client, terminating all outstanding
Trond Myklebust90c57552007-06-09 19:49:36 -0400329 * requests.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 */
Trond Myklebust4c402b42007-06-14 16:40:32 -0400331void rpc_shutdown_client(struct rpc_clnt *clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
Trond Myklebust34f52e32007-06-14 16:40:31 -0400333 dprintk("RPC: shutting down %s client for %s\n",
334 clnt->cl_protname, clnt->cl_server);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Trond Myklebust34f52e32007-06-14 16:40:31 -0400336 while (!list_empty(&clnt->cl_tasks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 rpc_killall_tasks(clnt);
Ingo Molnar532347e2006-01-09 20:52:53 -0800338 wait_event_timeout(destroy_wait,
Trond Myklebust34f52e32007-06-14 16:40:31 -0400339 list_empty(&clnt->cl_tasks), 1*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
341
Trond Myklebust4c402b42007-06-14 16:40:32 -0400342 rpc_release_client(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
345/*
Trond Myklebust34f52e32007-06-14 16:40:31 -0400346 * Free an RPC client
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 */
Trond Myklebust34f52e32007-06-14 16:40:31 -0400348static void
349rpc_free_client(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Trond Myklebust34f52e32007-06-14 16:40:31 -0400351 struct rpc_clnt *clnt = container_of(kref, struct rpc_clnt, cl_kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Chuck Lever46121cf2007-01-31 12:14:08 -0500353 dprintk("RPC: destroying %s client for %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 clnt->cl_protname, clnt->cl_server);
355 if (clnt->cl_auth) {
356 rpcauth_destroy(clnt->cl_auth);
357 clnt->cl_auth = NULL;
358 }
Trond Myklebust8f8e7a52006-08-14 13:11:15 -0400359 if (!IS_ERR(clnt->cl_dentry)) {
Trond Myklebustdff02cc2006-07-31 14:17:18 -0700360 rpc_rmdir(clnt->cl_dentry);
Trond Myklebust8f8e7a52006-08-14 13:11:15 -0400361 rpc_put_mount();
362 }
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500363 if (clnt->cl_parent != clnt) {
Trond Myklebust8ad7c892007-06-14 16:40:32 -0400364 rpc_release_client(clnt->cl_parent);
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500365 goto out_free;
366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (clnt->cl_server != clnt->cl_inline_name)
368 kfree(clnt->cl_server);
369out_free:
Trond Myklebust6529eba2007-06-14 16:40:14 -0400370 rpc_unregister_client(clnt);
Chuck Lever11c556b2006-03-20 13:44:22 -0500371 rpc_free_iostats(clnt->cl_metrics);
372 clnt->cl_metrics = NULL;
Trond Myklebust6b6ca862006-09-05 12:55:57 -0400373 xprt_put(clnt->cl_xprt);
Trond Myklebust4ada5392007-06-14 17:26:17 -0400374 rpciod_down();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 kfree(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
378/*
Trond Myklebust34f52e32007-06-14 16:40:31 -0400379 * Release reference to the RPC client
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 */
381void
382rpc_release_client(struct rpc_clnt *clnt)
383{
Trond Myklebust34f52e32007-06-14 16:40:31 -0400384 dprintk("RPC: rpc_release_client(%p)\n", clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Trond Myklebust34f52e32007-06-14 16:40:31 -0400386 if (list_empty(&clnt->cl_tasks))
387 wake_up(&destroy_wait);
Trond Myklebust34f52e32007-06-14 16:40:31 -0400388 kref_put(&clnt->cl_kref, rpc_free_client);
389}
390
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000391/**
392 * rpc_bind_new_program - bind a new RPC program to an existing client
393 * @old - old rpc_client
394 * @program - rpc program to set
395 * @vers - rpc program version
396 *
397 * Clones the rpc client and sets up a new RPC program. This is mainly
398 * of use for enabling different RPC programs to share the same transport.
399 * The Sun NFSv2/v3 ACL protocol can do this.
400 */
401struct rpc_clnt *rpc_bind_new_program(struct rpc_clnt *old,
402 struct rpc_program *program,
403 int vers)
404{
405 struct rpc_clnt *clnt;
406 struct rpc_version *version;
407 int err;
408
409 BUG_ON(vers >= program->nrvers || !program->version[vers]);
410 version = program->version[vers];
411 clnt = rpc_clone_client(old);
412 if (IS_ERR(clnt))
413 goto out;
414 clnt->cl_procinfo = version->procs;
415 clnt->cl_maxproc = version->nrprocs;
416 clnt->cl_protname = program->name;
417 clnt->cl_prog = program->number;
418 clnt->cl_vers = version->number;
419 clnt->cl_stats = program->stats;
420 err = rpc_ping(clnt, RPC_TASK_SOFT|RPC_TASK_NOINTR);
421 if (err != 0) {
422 rpc_shutdown_client(clnt);
423 clnt = ERR_PTR(err);
424 }
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800425out:
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000426 return clnt;
427}
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429/*
430 * Default callback for async RPC calls
431 */
432static void
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100433rpc_default_callback(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435}
436
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100437static const struct rpc_call_ops rpc_default_ops = {
438 .rpc_call_done = rpc_default_callback,
439};
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441/*
Trond Myklebust14b218a2005-06-22 17:16:28 +0000442 * Export the signal mask handling for synchronous code that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 * sleeps on RPC calls
444 */
Trond Myklebust2bd61572006-01-03 09:55:19 +0100445#define RPC_INTR_SIGNALS (sigmask(SIGHUP) | sigmask(SIGINT) | sigmask(SIGQUIT) | sigmask(SIGTERM))
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800446
Trond Myklebust14b218a2005-06-22 17:16:28 +0000447static void rpc_save_sigmask(sigset_t *oldset, int intr)
448{
Trond Myklebust2bd61572006-01-03 09:55:19 +0100449 unsigned long sigallow = sigmask(SIGKILL);
Trond Myklebust14b218a2005-06-22 17:16:28 +0000450 sigset_t sigmask;
451
452 /* Block all signals except those listed in sigallow */
453 if (intr)
454 sigallow |= RPC_INTR_SIGNALS;
455 siginitsetinv(&sigmask, sigallow);
456 sigprocmask(SIG_BLOCK, &sigmask, oldset);
457}
458
459static inline void rpc_task_sigmask(struct rpc_task *task, sigset_t *oldset)
460{
461 rpc_save_sigmask(oldset, !RPC_TASK_UNINTERRUPTIBLE(task));
462}
463
464static inline void rpc_restore_sigmask(sigset_t *oldset)
465{
466 sigprocmask(SIG_SETMASK, oldset, NULL);
467}
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469void rpc_clnt_sigmask(struct rpc_clnt *clnt, sigset_t *oldset)
470{
Trond Myklebust14b218a2005-06-22 17:16:28 +0000471 rpc_save_sigmask(oldset, clnt->cl_intr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
474void rpc_clnt_sigunmask(struct rpc_clnt *clnt, sigset_t *oldset)
475{
Trond Myklebust14b218a2005-06-22 17:16:28 +0000476 rpc_restore_sigmask(oldset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
Trond Myklebust6e5b70e2007-06-12 10:02:37 -0400479static
480struct rpc_task *rpc_do_run_task(struct rpc_clnt *clnt,
481 struct rpc_message *msg,
482 int flags,
483 const struct rpc_call_ops *ops,
484 void *data)
485{
486 struct rpc_task *task, *ret;
487 sigset_t oldset;
488
489 task = rpc_new_task(clnt, flags, ops, data);
490 if (task == NULL) {
491 rpc_release_calldata(ops, data);
492 return ERR_PTR(-ENOMEM);
493 }
494
495 /* Mask signals on synchronous RPC calls and RPCSEC_GSS upcalls */
496 rpc_task_sigmask(task, &oldset);
497 if (msg != NULL) {
498 rpc_call_setup(task, msg, 0);
499 if (task->tk_status != 0) {
500 ret = ERR_PTR(task->tk_status);
501 rpc_put_task(task);
502 goto out;
503 }
504 }
505 atomic_inc(&task->tk_count);
506 rpc_execute(task);
507 ret = task;
508out:
509 rpc_restore_sigmask(&oldset);
510 return ret;
511}
512
513/**
514 * rpc_call_sync - Perform a synchronous RPC call
515 * @clnt: pointer to RPC client
516 * @msg: RPC call parameters
517 * @flags: RPC call flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 */
519int rpc_call_sync(struct rpc_clnt *clnt, struct rpc_message *msg, int flags)
520{
521 struct rpc_task *task;
Trond Myklebust6e5b70e2007-06-12 10:02:37 -0400522 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 BUG_ON(flags & RPC_TASK_ASYNC);
525
Trond Myklebust6e5b70e2007-06-12 10:02:37 -0400526 task = rpc_do_run_task(clnt, msg, flags, &rpc_default_ops, NULL);
527 if (IS_ERR(task))
528 return PTR_ERR(task);
Trond Myklebuste60859a2006-01-03 09:55:10 +0100529 status = task->tk_status;
Trond Myklebustbde8f002007-01-24 11:54:53 -0800530 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return status;
532}
533
Trond Myklebust6e5b70e2007-06-12 10:02:37 -0400534/**
535 * rpc_call_async - Perform an asynchronous RPC call
536 * @clnt: pointer to RPC client
537 * @msg: RPC call parameters
538 * @flags: RPC call flags
539 * @ops: RPC call ops
540 * @data: user call data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 */
542int
543rpc_call_async(struct rpc_clnt *clnt, struct rpc_message *msg, int flags,
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100544 const struct rpc_call_ops *tk_ops, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
546 struct rpc_task *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Trond Myklebust6e5b70e2007-06-12 10:02:37 -0400548 task = rpc_do_run_task(clnt, msg, flags|RPC_TASK_ASYNC, tk_ops, data);
549 if (IS_ERR(task))
550 return PTR_ERR(task);
551 rpc_put_task(task);
552 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
Trond Myklebust6e5b70e2007-06-12 10:02:37 -0400555/**
556 * rpc_run_task - Allocate a new RPC task, then run rpc_execute against it
557 * @clnt: pointer to RPC client
558 * @flags: RPC flags
559 * @ops: RPC call ops
560 * @data: user call data
561 */
562struct rpc_task *rpc_run_task(struct rpc_clnt *clnt, int flags,
563 const struct rpc_call_ops *tk_ops,
564 void *data)
565{
566 return rpc_do_run_task(clnt, NULL, flags, tk_ops, data);
567}
568EXPORT_SYMBOL(rpc_run_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570void
571rpc_call_setup(struct rpc_task *task, struct rpc_message *msg, int flags)
572{
573 task->tk_msg = *msg;
574 task->tk_flags |= flags;
575 /* Bind the user cred */
576 if (task->tk_msg.rpc_cred != NULL)
577 rpcauth_holdcred(task);
578 else
579 rpcauth_bindcred(task);
580
581 if (task->tk_status == 0)
582 task->tk_action = call_start;
583 else
Trond Myklebustabbcf282006-01-03 09:55:03 +0100584 task->tk_action = rpc_exit_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586
Chuck Levered394402006-08-22 20:06:17 -0400587/**
588 * rpc_peeraddr - extract remote peer address from clnt's xprt
589 * @clnt: RPC client structure
590 * @buf: target buffer
591 * @size: length of target buffer
592 *
593 * Returns the number of bytes that are actually in the stored address.
594 */
595size_t rpc_peeraddr(struct rpc_clnt *clnt, struct sockaddr *buf, size_t bufsize)
596{
597 size_t bytes;
598 struct rpc_xprt *xprt = clnt->cl_xprt;
599
600 bytes = sizeof(xprt->addr);
601 if (bytes > bufsize)
602 bytes = bufsize;
603 memcpy(buf, &clnt->cl_xprt->addr, bytes);
Chuck Leverc4efcb12006-08-22 20:06:19 -0400604 return xprt->addrlen;
Chuck Levered394402006-08-22 20:06:17 -0400605}
Chuck Leverb86acd52006-08-22 20:06:22 -0400606EXPORT_SYMBOL_GPL(rpc_peeraddr);
Chuck Levered394402006-08-22 20:06:17 -0400607
Chuck Leverf425eba2006-08-22 20:06:18 -0400608/**
609 * rpc_peeraddr2str - return remote peer address in printable format
610 * @clnt: RPC client structure
611 * @format: address format
612 *
613 */
614char *rpc_peeraddr2str(struct rpc_clnt *clnt, enum rpc_display_format_t format)
615{
616 struct rpc_xprt *xprt = clnt->cl_xprt;
Chuck Lever7559c7a2006-12-05 16:35:37 -0500617
618 if (xprt->address_strings[format] != NULL)
619 return xprt->address_strings[format];
620 else
621 return "unprintable";
Chuck Leverf425eba2006-08-22 20:06:18 -0400622}
Chuck Leverb86acd52006-08-22 20:06:22 -0400623EXPORT_SYMBOL_GPL(rpc_peeraddr2str);
Chuck Leverf425eba2006-08-22 20:06:18 -0400624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625void
626rpc_setbufsize(struct rpc_clnt *clnt, unsigned int sndsize, unsigned int rcvsize)
627{
628 struct rpc_xprt *xprt = clnt->cl_xprt;
Chuck Lever470056c2005-08-25 16:25:56 -0700629 if (xprt->ops->set_buffer_size)
630 xprt->ops->set_buffer_size(xprt, sndsize, rcvsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
632
633/*
634 * Return size of largest payload RPC client can support, in bytes
635 *
636 * For stream transports, this is one RPC record fragment (see RFC
637 * 1831), as we don't support multi-record requests yet. For datagram
638 * transports, this is the size of an IP packet minus the IP, UDP, and
639 * RPC header sizes.
640 */
641size_t rpc_max_payload(struct rpc_clnt *clnt)
642{
643 return clnt->cl_xprt->max_payload;
644}
Chuck Leverb86acd52006-08-22 20:06:22 -0400645EXPORT_SYMBOL_GPL(rpc_max_payload);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Chuck Lever35f5a422006-01-03 09:55:50 +0100647/**
648 * rpc_force_rebind - force transport to check that remote port is unchanged
649 * @clnt: client to rebind
650 *
651 */
652void rpc_force_rebind(struct rpc_clnt *clnt)
653{
654 if (clnt->cl_autobind)
Chuck Leverec739ef2006-08-22 20:06:15 -0400655 xprt_clear_bound(clnt->cl_xprt);
Chuck Lever35f5a422006-01-03 09:55:50 +0100656}
Chuck Leverb86acd52006-08-22 20:06:22 -0400657EXPORT_SYMBOL_GPL(rpc_force_rebind);
Chuck Lever35f5a422006-01-03 09:55:50 +0100658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659/*
660 * Restart an (async) RPC call. Usually called from within the
661 * exit handler.
662 */
663void
664rpc_restart_call(struct rpc_task *task)
665{
666 if (RPC_ASSASSINATED(task))
667 return;
668
669 task->tk_action = call_start;
670}
671
672/*
673 * 0. Initial state
674 *
675 * Other FSM states can be visited zero or more times, but
676 * this state is visited exactly once for each RPC.
677 */
678static void
679call_start(struct rpc_task *task)
680{
681 struct rpc_clnt *clnt = task->tk_client;
682
Chuck Lever46121cf2007-01-31 12:14:08 -0500683 dprintk("RPC: %5u call_start %s%d proc %d (%s)\n", task->tk_pid,
684 clnt->cl_protname, clnt->cl_vers,
685 task->tk_msg.rpc_proc->p_proc,
686 (RPC_IS_ASYNC(task) ? "async" : "sync"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 /* Increment call count */
689 task->tk_msg.rpc_proc->p_count++;
690 clnt->cl_stats->rpccnt++;
691 task->tk_action = call_reserve;
692}
693
694/*
695 * 1. Reserve an RPC call slot
696 */
697static void
698call_reserve(struct rpc_task *task)
699{
Chuck Lever46121cf2007-01-31 12:14:08 -0500700 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 if (!rpcauth_uptodatecred(task)) {
703 task->tk_action = call_refresh;
704 return;
705 }
706
707 task->tk_status = 0;
708 task->tk_action = call_reserveresult;
709 xprt_reserve(task);
710}
711
712/*
713 * 1b. Grok the result of xprt_reserve()
714 */
715static void
716call_reserveresult(struct rpc_task *task)
717{
718 int status = task->tk_status;
719
Chuck Lever46121cf2007-01-31 12:14:08 -0500720 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722 /*
723 * After a call to xprt_reserve(), we must have either
724 * a request slot or else an error status.
725 */
726 task->tk_status = 0;
727 if (status >= 0) {
728 if (task->tk_rqstp) {
729 task->tk_action = call_allocate;
730 return;
731 }
732
733 printk(KERN_ERR "%s: status=%d, but no request slot, exiting\n",
734 __FUNCTION__, status);
735 rpc_exit(task, -EIO);
736 return;
737 }
738
739 /*
740 * Even though there was an error, we may have acquired
741 * a request slot somehow. Make sure not to leak it.
742 */
743 if (task->tk_rqstp) {
744 printk(KERN_ERR "%s: status=%d, request allocated anyway\n",
745 __FUNCTION__, status);
746 xprt_release(task);
747 }
748
749 switch (status) {
750 case -EAGAIN: /* woken up; retry */
751 task->tk_action = call_reserve;
752 return;
753 case -EIO: /* probably a shutdown */
754 break;
755 default:
756 printk(KERN_ERR "%s: unrecognized error %d, exiting\n",
757 __FUNCTION__, status);
758 break;
759 }
760 rpc_exit(task, status);
761}
762
763/*
764 * 2. Allocate the buffer. For details, see sched.c:rpc_malloc.
Chuck Lever02107142006-01-03 09:55:49 +0100765 * (Note: buffer memory is freed in xprt_release).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 */
767static void
768call_allocate(struct rpc_task *task)
769{
Chuck Lever2bea90d2007-03-29 16:47:53 -0400770 unsigned int slack = task->tk_auth->au_cslack;
Chuck Lever02107142006-01-03 09:55:49 +0100771 struct rpc_rqst *req = task->tk_rqstp;
772 struct rpc_xprt *xprt = task->tk_xprt;
Chuck Lever2bea90d2007-03-29 16:47:53 -0400773 struct rpc_procinfo *proc = task->tk_msg.rpc_proc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Chuck Lever46121cf2007-01-31 12:14:08 -0500775 dprint_status(task);
776
Chuck Lever2bea90d2007-03-29 16:47:53 -0400777 task->tk_status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 task->tk_action = call_bind;
Chuck Lever2bea90d2007-03-29 16:47:53 -0400779
Chuck Lever02107142006-01-03 09:55:49 +0100780 if (req->rq_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return;
782
Chuck Lever2bea90d2007-03-29 16:47:53 -0400783 if (proc->p_proc != 0) {
784 BUG_ON(proc->p_arglen == 0);
785 if (proc->p_decode != NULL)
786 BUG_ON(proc->p_replen == 0);
787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Chuck Lever2bea90d2007-03-29 16:47:53 -0400789 /*
790 * Calculate the size (in quads) of the RPC call
791 * and reply headers, and convert both values
792 * to byte sizes.
793 */
794 req->rq_callsize = RPC_CALLHDRSIZE + (slack << 1) + proc->p_arglen;
795 req->rq_callsize <<= 2;
796 req->rq_rcvsize = RPC_REPHDRSIZE + slack + proc->p_replen;
797 req->rq_rcvsize <<= 2;
798
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400799 req->rq_buffer = xprt->ops->buf_alloc(task,
800 req->rq_callsize + req->rq_rcvsize);
Chuck Lever2bea90d2007-03-29 16:47:53 -0400801 if (req->rq_buffer != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 return;
Chuck Lever46121cf2007-01-31 12:14:08 -0500803
804 dprintk("RPC: %5u rpc_buffer allocation failed\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Trond Myklebust14b218a2005-06-22 17:16:28 +0000806 if (RPC_IS_ASYNC(task) || !signalled()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 xprt_release(task);
808 task->tk_action = call_reserve;
809 rpc_delay(task, HZ>>4);
810 return;
811 }
812
813 rpc_exit(task, -ERESTARTSYS);
814}
815
Trond Myklebust940e3312005-11-09 21:45:24 -0500816static inline int
817rpc_task_need_encode(struct rpc_task *task)
818{
819 return task->tk_rqstp->rq_snd_buf.len == 0;
820}
821
822static inline void
823rpc_task_force_reencode(struct rpc_task *task)
824{
825 task->tk_rqstp->rq_snd_buf.len = 0;
826}
827
Chuck Lever2bea90d2007-03-29 16:47:53 -0400828static inline void
829rpc_xdr_buf_init(struct xdr_buf *buf, void *start, size_t len)
830{
831 buf->head[0].iov_base = start;
832 buf->head[0].iov_len = len;
833 buf->tail[0].iov_len = 0;
834 buf->page_len = 0;
835 buf->len = 0;
836 buf->buflen = len;
837}
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839/*
840 * 3. Encode arguments of an RPC call
841 */
842static void
843call_encode(struct rpc_task *task)
844{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 struct rpc_rqst *req = task->tk_rqstp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 kxdrproc_t encode;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700847 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Chuck Lever46121cf2007-01-31 12:14:08 -0500849 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Chuck Lever2bea90d2007-03-29 16:47:53 -0400851 rpc_xdr_buf_init(&req->rq_snd_buf,
852 req->rq_buffer,
853 req->rq_callsize);
854 rpc_xdr_buf_init(&req->rq_rcv_buf,
855 (char *)req->rq_buffer + req->rq_callsize,
856 req->rq_rcvsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 /* Encode header and provided arguments */
859 encode = task->tk_msg.rpc_proc->p_encode;
860 if (!(p = call_header(task))) {
861 printk(KERN_INFO "RPC: call_header failed, exit EIO\n");
862 rpc_exit(task, -EIO);
863 return;
864 }
J. Bruce Fieldsf3680312005-10-13 16:54:48 -0400865 if (encode == NULL)
866 return;
867
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400868 lock_kernel();
J. Bruce Fieldsf3680312005-10-13 16:54:48 -0400869 task->tk_status = rpcauth_wrap_req(task, encode, req, p,
870 task->tk_msg.rpc_argp);
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400871 unlock_kernel();
J. Bruce Fieldsf3680312005-10-13 16:54:48 -0400872 if (task->tk_status == -ENOMEM) {
873 /* XXX: Is this sane? */
874 rpc_delay(task, 3*HZ);
875 task->tk_status = -EAGAIN;
876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
879/*
880 * 4. Get the server port number if not yet set
881 */
882static void
883call_bind(struct rpc_task *task)
884{
Chuck Leverec739ef2006-08-22 20:06:15 -0400885 struct rpc_xprt *xprt = task->tk_xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Chuck Lever46121cf2007-01-31 12:14:08 -0500887 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Chuck Leverda351872005-08-11 16:25:11 -0400889 task->tk_action = call_connect;
Chuck Leverec739ef2006-08-22 20:06:15 -0400890 if (!xprt_bound(xprt)) {
Chuck Leverda351872005-08-11 16:25:11 -0400891 task->tk_action = call_bind_status;
Chuck Leverec739ef2006-08-22 20:06:15 -0400892 task->tk_timeout = xprt->bind_timeout;
Chuck Leverbbf7c1d2006-08-22 20:06:16 -0400893 xprt->ops->rpcbind(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
895}
896
897/*
Chuck Leverda351872005-08-11 16:25:11 -0400898 * 4a. Sort out bind result
899 */
900static void
901call_bind_status(struct rpc_task *task)
902{
903 int status = -EACCES;
904
905 if (task->tk_status >= 0) {
Chuck Lever46121cf2007-01-31 12:14:08 -0500906 dprint_status(task);
Chuck Leverda351872005-08-11 16:25:11 -0400907 task->tk_status = 0;
908 task->tk_action = call_connect;
909 return;
910 }
911
912 switch (task->tk_status) {
913 case -EACCES:
Chuck Lever46121cf2007-01-31 12:14:08 -0500914 dprintk("RPC: %5u remote rpcbind: RPC program/version "
915 "unavailable\n", task->tk_pid);
Chuck Leverea635a52005-10-06 23:12:58 -0400916 rpc_delay(task, 3*HZ);
Trond Myklebustda458282006-08-31 15:44:52 -0400917 goto retry_timeout;
Chuck Leverda351872005-08-11 16:25:11 -0400918 case -ETIMEDOUT:
Chuck Lever46121cf2007-01-31 12:14:08 -0500919 dprintk("RPC: %5u rpcbind request timed out\n",
Chuck Leverda351872005-08-11 16:25:11 -0400920 task->tk_pid);
Trond Myklebustda458282006-08-31 15:44:52 -0400921 goto retry_timeout;
Chuck Leverda351872005-08-11 16:25:11 -0400922 case -EPFNOSUPPORT:
Chuck Lever46121cf2007-01-31 12:14:08 -0500923 dprintk("RPC: %5u remote rpcbind service unavailable\n",
Chuck Leverda351872005-08-11 16:25:11 -0400924 task->tk_pid);
925 break;
926 case -EPROTONOSUPPORT:
Chuck Lever00a6e7b2007-03-29 16:48:33 -0400927 dprintk("RPC: %5u remote rpcbind version unavailable, retrying\n",
Chuck Leverda351872005-08-11 16:25:11 -0400928 task->tk_pid);
Chuck Lever00a6e7b2007-03-29 16:48:33 -0400929 task->tk_status = 0;
930 task->tk_action = call_bind;
931 return;
Chuck Leverda351872005-08-11 16:25:11 -0400932 default:
Chuck Lever46121cf2007-01-31 12:14:08 -0500933 dprintk("RPC: %5u unrecognized rpcbind error (%d)\n",
Chuck Leverda351872005-08-11 16:25:11 -0400934 task->tk_pid, -task->tk_status);
935 status = -EIO;
Chuck Leverda351872005-08-11 16:25:11 -0400936 }
937
938 rpc_exit(task, status);
939 return;
940
Trond Myklebustda458282006-08-31 15:44:52 -0400941retry_timeout:
942 task->tk_action = call_timeout;
Chuck Leverda351872005-08-11 16:25:11 -0400943}
944
945/*
946 * 4b. Connect to the RPC server
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 */
948static void
949call_connect(struct rpc_task *task)
950{
Chuck Leverda351872005-08-11 16:25:11 -0400951 struct rpc_xprt *xprt = task->tk_xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Chuck Lever46121cf2007-01-31 12:14:08 -0500953 dprintk("RPC: %5u call_connect xprt %p %s connected\n",
Chuck Leverda351872005-08-11 16:25:11 -0400954 task->tk_pid, xprt,
955 (xprt_connected(xprt) ? "is" : "is not"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Chuck Leverda351872005-08-11 16:25:11 -0400957 task->tk_action = call_transmit;
958 if (!xprt_connected(xprt)) {
959 task->tk_action = call_connect_status;
960 if (task->tk_status < 0)
961 return;
962 xprt_connect(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964}
965
966/*
Chuck Leverda351872005-08-11 16:25:11 -0400967 * 4c. Sort out connect result
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 */
969static void
970call_connect_status(struct rpc_task *task)
971{
972 struct rpc_clnt *clnt = task->tk_client;
973 int status = task->tk_status;
974
Chuck Lever46121cf2007-01-31 12:14:08 -0500975 dprint_status(task);
Chuck Leverda351872005-08-11 16:25:11 -0400976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 task->tk_status = 0;
978 if (status >= 0) {
979 clnt->cl_stats->netreconn++;
980 task->tk_action = call_transmit;
981 return;
982 }
983
Chuck Leverda351872005-08-11 16:25:11 -0400984 /* Something failed: remote service port may have changed */
Chuck Lever35f5a422006-01-03 09:55:50 +0100985 rpc_force_rebind(clnt);
Chuck Leverda351872005-08-11 16:25:11 -0400986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 switch (status) {
988 case -ENOTCONN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 case -EAGAIN:
Chuck Leverda351872005-08-11 16:25:11 -0400990 task->tk_action = call_bind;
Trond Myklebustda458282006-08-31 15:44:52 -0400991 if (!RPC_IS_SOFT(task))
992 return;
993 /* if soft mounted, test if we've timed out */
994 case -ETIMEDOUT:
995 task->tk_action = call_timeout;
996 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
Trond Myklebustda458282006-08-31 15:44:52 -0400998 rpc_exit(task, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999}
1000
1001/*
1002 * 5. Transmit the RPC request, and wait for reply
1003 */
1004static void
1005call_transmit(struct rpc_task *task)
1006{
Chuck Lever46121cf2007-01-31 12:14:08 -05001007 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
1009 task->tk_action = call_status;
1010 if (task->tk_status < 0)
1011 return;
1012 task->tk_status = xprt_prepare_transmit(task);
1013 if (task->tk_status != 0)
1014 return;
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04001015 task->tk_action = call_transmit_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 /* Encode here so that rpcsec_gss can use correct sequence number. */
Trond Myklebust940e3312005-11-09 21:45:24 -05001017 if (rpc_task_need_encode(task)) {
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04001018 BUG_ON(task->tk_rqstp->rq_bytes_sent != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 call_encode(task);
Trond Myklebust5e5ce5b2005-10-18 14:20:11 -07001020 /* Did the encode result in an error condition? */
1021 if (task->tk_status != 0)
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04001022 return;
Trond Myklebust5e5ce5b2005-10-18 14:20:11 -07001023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 xprt_transmit(task);
1025 if (task->tk_status < 0)
1026 return;
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04001027 /*
1028 * On success, ensure that we call xprt_end_transmit() before sleeping
1029 * in order to allow access to the socket to other RPC requests.
1030 */
1031 call_transmit_status(task);
1032 if (task->tk_msg.rpc_proc->p_decode != NULL)
1033 return;
1034 task->tk_action = rpc_exit_task;
1035 rpc_wake_up_task(task);
1036}
1037
1038/*
1039 * 5a. Handle cleanup after a transmission
1040 */
1041static void
1042call_transmit_status(struct rpc_task *task)
1043{
1044 task->tk_action = call_status;
1045 /*
1046 * Special case: if we've been waiting on the socket's write_space()
1047 * callback, then don't call xprt_end_transmit().
1048 */
1049 if (task->tk_status == -EAGAIN)
1050 return;
1051 xprt_end_transmit(task);
Trond Myklebust940e3312005-11-09 21:45:24 -05001052 rpc_task_force_reencode(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053}
1054
1055/*
1056 * 6. Sort out the RPC call status
1057 */
1058static void
1059call_status(struct rpc_task *task)
1060{
1061 struct rpc_clnt *clnt = task->tk_client;
1062 struct rpc_rqst *req = task->tk_rqstp;
1063 int status;
1064
1065 if (req->rq_received > 0 && !req->rq_bytes_sent)
1066 task->tk_status = req->rq_received;
1067
Chuck Lever46121cf2007-01-31 12:14:08 -05001068 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 status = task->tk_status;
1071 if (status >= 0) {
1072 task->tk_action = call_decode;
1073 return;
1074 }
1075
1076 task->tk_status = 0;
1077 switch(status) {
Trond Myklebust76303992006-08-30 14:32:49 -04001078 case -EHOSTDOWN:
1079 case -EHOSTUNREACH:
1080 case -ENETUNREACH:
1081 /*
1082 * Delay any retries for 3 seconds, then handle as if it
1083 * were a timeout.
1084 */
1085 rpc_delay(task, 3*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 case -ETIMEDOUT:
1087 task->tk_action = call_timeout;
Trond Myklebust241c39b2007-04-20 16:12:55 -04001088 if (task->tk_client->cl_discrtry)
1089 xprt_disconnect(task->tk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 break;
1091 case -ECONNREFUSED:
1092 case -ENOTCONN:
Chuck Lever35f5a422006-01-03 09:55:50 +01001093 rpc_force_rebind(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 task->tk_action = call_bind;
1095 break;
1096 case -EAGAIN:
1097 task->tk_action = call_transmit;
1098 break;
1099 case -EIO:
1100 /* shutdown or soft timeout */
1101 rpc_exit(task, status);
1102 break;
1103 default:
Chuck Leverf518e35a2006-01-03 09:55:52 +01001104 printk("%s: RPC call returned error %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 clnt->cl_protname, -status);
1106 rpc_exit(task, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 }
1108}
1109
1110/*
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04001111 * 6a. Handle RPC timeout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 * We do not release the request slot, so we keep using the
1113 * same XID for all retransmits.
1114 */
1115static void
1116call_timeout(struct rpc_task *task)
1117{
1118 struct rpc_clnt *clnt = task->tk_client;
1119
1120 if (xprt_adjust_timeout(task->tk_rqstp) == 0) {
Chuck Lever46121cf2007-01-31 12:14:08 -05001121 dprintk("RPC: %5u call_timeout (minor)\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 goto retry;
1123 }
1124
Chuck Lever46121cf2007-01-31 12:14:08 -05001125 dprintk("RPC: %5u call_timeout (major)\n", task->tk_pid);
Chuck Leveref759a22006-03-20 13:44:17 -05001126 task->tk_timeouts++;
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 if (RPC_IS_SOFT(task)) {
Chuck Leverf518e35a2006-01-03 09:55:52 +01001129 printk(KERN_NOTICE "%s: server %s not responding, timed out\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 clnt->cl_protname, clnt->cl_server);
1131 rpc_exit(task, -EIO);
1132 return;
1133 }
1134
Chuck Leverf518e35a2006-01-03 09:55:52 +01001135 if (!(task->tk_flags & RPC_CALL_MAJORSEEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 task->tk_flags |= RPC_CALL_MAJORSEEN;
1137 printk(KERN_NOTICE "%s: server %s not responding, still trying\n",
1138 clnt->cl_protname, clnt->cl_server);
1139 }
Chuck Lever35f5a422006-01-03 09:55:50 +01001140 rpc_force_rebind(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
1142retry:
1143 clnt->cl_stats->rpcretrans++;
1144 task->tk_action = call_bind;
1145 task->tk_status = 0;
1146}
1147
1148/*
1149 * 7. Decode the RPC reply
1150 */
1151static void
1152call_decode(struct rpc_task *task)
1153{
1154 struct rpc_clnt *clnt = task->tk_client;
1155 struct rpc_rqst *req = task->tk_rqstp;
1156 kxdrproc_t decode = task->tk_msg.rpc_proc->p_decode;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001157 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Chuck Lever46121cf2007-01-31 12:14:08 -05001159 dprintk("RPC: %5u call_decode (status %d)\n",
1160 task->tk_pid, task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Chuck Leverf518e35a2006-01-03 09:55:52 +01001162 if (task->tk_flags & RPC_CALL_MAJORSEEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 printk(KERN_NOTICE "%s: server %s OK\n",
1164 clnt->cl_protname, clnt->cl_server);
1165 task->tk_flags &= ~RPC_CALL_MAJORSEEN;
1166 }
1167
1168 if (task->tk_status < 12) {
1169 if (!RPC_IS_SOFT(task)) {
1170 task->tk_action = call_bind;
1171 clnt->cl_stats->rpcretrans++;
1172 goto out_retry;
1173 }
Chuck Lever46121cf2007-01-31 12:14:08 -05001174 dprintk("RPC: %s: too small RPC reply size (%d bytes)\n",
1175 clnt->cl_protname, task->tk_status);
Trond Myklebustda458282006-08-31 15:44:52 -04001176 task->tk_action = call_timeout;
1177 goto out_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
1179
Trond Myklebust43ac3f22006-03-20 13:44:51 -05001180 /*
1181 * Ensure that we see all writes made by xprt_complete_rqst()
1182 * before it changed req->rq_received.
1183 */
1184 smp_rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 req->rq_rcv_buf.len = req->rq_private_buf.len;
1186
1187 /* Check that the softirq receive buffer is valid */
1188 WARN_ON(memcmp(&req->rq_rcv_buf, &req->rq_private_buf,
1189 sizeof(req->rq_rcv_buf)) != 0);
1190
1191 /* Verify the RPC header */
Trond Myklebustabbcf282006-01-03 09:55:03 +01001192 p = call_verify(task);
1193 if (IS_ERR(p)) {
1194 if (p == ERR_PTR(-EAGAIN))
1195 goto out_retry;
1196 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 }
1198
Trond Myklebustabbcf282006-01-03 09:55:03 +01001199 task->tk_action = rpc_exit_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Trond Myklebust6d5fcb52006-10-18 16:01:06 -04001201 if (decode) {
1202 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 task->tk_status = rpcauth_unwrap_resp(task, decode, req, p,
1204 task->tk_msg.rpc_resp);
Trond Myklebust6d5fcb52006-10-18 16:01:06 -04001205 unlock_kernel();
1206 }
Chuck Lever46121cf2007-01-31 12:14:08 -05001207 dprintk("RPC: %5u call_decode result %d\n", task->tk_pid,
1208 task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 return;
1210out_retry:
1211 req->rq_received = req->rq_private_buf.len = 0;
1212 task->tk_status = 0;
Trond Myklebust241c39b2007-04-20 16:12:55 -04001213 if (task->tk_client->cl_discrtry)
1214 xprt_disconnect(task->tk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215}
1216
1217/*
1218 * 8. Refresh the credentials if rejected by the server
1219 */
1220static void
1221call_refresh(struct rpc_task *task)
1222{
Chuck Lever46121cf2007-01-31 12:14:08 -05001223 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 xprt_release(task); /* Must do to obtain new XID */
1226 task->tk_action = call_refreshresult;
1227 task->tk_status = 0;
1228 task->tk_client->cl_stats->rpcauthrefresh++;
1229 rpcauth_refreshcred(task);
1230}
1231
1232/*
1233 * 8a. Process the results of a credential refresh
1234 */
1235static void
1236call_refreshresult(struct rpc_task *task)
1237{
1238 int status = task->tk_status;
Chuck Lever46121cf2007-01-31 12:14:08 -05001239
1240 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242 task->tk_status = 0;
1243 task->tk_action = call_reserve;
1244 if (status >= 0 && rpcauth_uptodatecred(task))
1245 return;
1246 if (status == -EACCES) {
1247 rpc_exit(task, -EACCES);
1248 return;
1249 }
1250 task->tk_action = call_refresh;
1251 if (status != -ETIMEDOUT)
1252 rpc_delay(task, 3*HZ);
1253 return;
1254}
1255
1256/*
1257 * Call header serialization
1258 */
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001259static __be32 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260call_header(struct rpc_task *task)
1261{
1262 struct rpc_clnt *clnt = task->tk_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 struct rpc_rqst *req = task->tk_rqstp;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001264 __be32 *p = req->rq_svec[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 /* FIXME: check buffer size? */
Chuck Lever808012f2005-08-25 16:25:49 -07001267
1268 p = xprt_skip_transport_header(task->tk_xprt, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 *p++ = req->rq_xid; /* XID */
1270 *p++ = htonl(RPC_CALL); /* CALL */
1271 *p++ = htonl(RPC_VERSION); /* RPC version */
1272 *p++ = htonl(clnt->cl_prog); /* program number */
1273 *p++ = htonl(clnt->cl_vers); /* program version */
1274 *p++ = htonl(task->tk_msg.rpc_proc->p_proc); /* procedure */
Trond Myklebust334ccfd2005-06-22 17:16:19 +00001275 p = rpcauth_marshcred(task, p);
1276 req->rq_slen = xdr_adjust_iovec(&req->rq_svec[0], p);
1277 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
1280/*
1281 * Reply header verification
1282 */
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001283static __be32 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284call_verify(struct rpc_task *task)
1285{
1286 struct kvec *iov = &task->tk_rqstp->rq_rcv_buf.head[0];
1287 int len = task->tk_rqstp->rq_rcv_buf.len >> 2;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001288 __be32 *p = iov->iov_base;
1289 u32 n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 int error = -EACCES;
1291
David Howellse8896492006-08-24 15:44:19 -04001292 if ((task->tk_rqstp->rq_rcv_buf.len & 3) != 0) {
1293 /* RFC-1014 says that the representation of XDR data must be a
1294 * multiple of four bytes
1295 * - if it isn't pointer subtraction in the NFS client may give
1296 * undefined results
1297 */
1298 printk(KERN_WARNING
1299 "call_verify: XDR representation not a multiple of"
1300 " 4 bytes: 0x%x\n", task->tk_rqstp->rq_rcv_buf.len);
1301 goto out_eio;
1302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 if ((len -= 3) < 0)
1304 goto out_overflow;
1305 p += 1; /* skip XID */
1306
1307 if ((n = ntohl(*p++)) != RPC_REPLY) {
1308 printk(KERN_WARNING "call_verify: not an RPC reply: %x\n", n);
Trond Myklebustabbcf282006-01-03 09:55:03 +01001309 goto out_garbage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 }
1311 if ((n = ntohl(*p++)) != RPC_MSG_ACCEPTED) {
1312 if (--len < 0)
1313 goto out_overflow;
1314 switch ((n = ntohl(*p++))) {
1315 case RPC_AUTH_ERROR:
1316 break;
1317 case RPC_MISMATCH:
Chuck Lever46121cf2007-01-31 12:14:08 -05001318 dprintk("RPC: %5u %s: RPC call version "
1319 "mismatch!\n",
1320 task->tk_pid, __FUNCTION__);
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001321 error = -EPROTONOSUPPORT;
1322 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 default:
Chuck Lever46121cf2007-01-31 12:14:08 -05001324 dprintk("RPC: %5u %s: RPC call rejected, "
1325 "unknown error: %x\n",
1326 task->tk_pid, __FUNCTION__, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 goto out_eio;
1328 }
1329 if (--len < 0)
1330 goto out_overflow;
1331 switch ((n = ntohl(*p++))) {
1332 case RPC_AUTH_REJECTEDCRED:
1333 case RPC_AUTH_REJECTEDVERF:
1334 case RPCSEC_GSS_CREDPROBLEM:
1335 case RPCSEC_GSS_CTXPROBLEM:
1336 if (!task->tk_cred_retry)
1337 break;
1338 task->tk_cred_retry--;
Chuck Lever46121cf2007-01-31 12:14:08 -05001339 dprintk("RPC: %5u %s: retry stale creds\n",
1340 task->tk_pid, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 rpcauth_invalcred(task);
1342 task->tk_action = call_refresh;
Trond Myklebustabbcf282006-01-03 09:55:03 +01001343 goto out_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 case RPC_AUTH_BADCRED:
1345 case RPC_AUTH_BADVERF:
1346 /* possibly garbled cred/verf? */
1347 if (!task->tk_garb_retry)
1348 break;
1349 task->tk_garb_retry--;
Chuck Lever46121cf2007-01-31 12:14:08 -05001350 dprintk("RPC: %5u %s: retry garbled creds\n",
1351 task->tk_pid, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 task->tk_action = call_bind;
Trond Myklebustabbcf282006-01-03 09:55:03 +01001353 goto out_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 case RPC_AUTH_TOOWEAK:
Levent Serinol1356b8c2006-03-20 13:44:11 -05001355 printk(KERN_NOTICE "call_verify: server %s requires stronger "
1356 "authentication.\n", task->tk_client->cl_server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 break;
1358 default:
1359 printk(KERN_WARNING "call_verify: unknown auth error: %x\n", n);
1360 error = -EIO;
1361 }
Chuck Lever46121cf2007-01-31 12:14:08 -05001362 dprintk("RPC: %5u %s: call rejected %d\n",
1363 task->tk_pid, __FUNCTION__, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 goto out_err;
1365 }
1366 if (!(p = rpcauth_checkverf(task, p))) {
1367 printk(KERN_WARNING "call_verify: auth check failed\n");
Trond Myklebustabbcf282006-01-03 09:55:03 +01001368 goto out_garbage; /* bad verifier, retry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 }
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001370 len = p - (__be32 *)iov->iov_base - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 if (len < 0)
1372 goto out_overflow;
1373 switch ((n = ntohl(*p++))) {
1374 case RPC_SUCCESS:
1375 return p;
1376 case RPC_PROG_UNAVAIL:
Chuck Lever46121cf2007-01-31 12:14:08 -05001377 dprintk("RPC: %5u %s: program %u is unsupported by server %s\n",
1378 task->tk_pid, __FUNCTION__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 (unsigned int)task->tk_client->cl_prog,
1380 task->tk_client->cl_server);
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001381 error = -EPFNOSUPPORT;
1382 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 case RPC_PROG_MISMATCH:
Chuck Lever46121cf2007-01-31 12:14:08 -05001384 dprintk("RPC: %5u %s: program %u, version %u unsupported by "
1385 "server %s\n", task->tk_pid, __FUNCTION__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 (unsigned int)task->tk_client->cl_prog,
1387 (unsigned int)task->tk_client->cl_vers,
1388 task->tk_client->cl_server);
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001389 error = -EPROTONOSUPPORT;
1390 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 case RPC_PROC_UNAVAIL:
Chuck Lever46121cf2007-01-31 12:14:08 -05001392 dprintk("RPC: %5u %s: proc %p unsupported by program %u, "
1393 "version %u on server %s\n",
1394 task->tk_pid, __FUNCTION__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 task->tk_msg.rpc_proc,
1396 task->tk_client->cl_prog,
1397 task->tk_client->cl_vers,
1398 task->tk_client->cl_server);
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00001399 error = -EOPNOTSUPP;
1400 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 case RPC_GARBAGE_ARGS:
Chuck Lever46121cf2007-01-31 12:14:08 -05001402 dprintk("RPC: %5u %s: server saw garbage\n",
1403 task->tk_pid, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 break; /* retry */
1405 default:
1406 printk(KERN_WARNING "call_verify: server accept status: %x\n", n);
1407 /* Also retry */
1408 }
1409
Trond Myklebustabbcf282006-01-03 09:55:03 +01001410out_garbage:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 task->tk_client->cl_stats->rpcgarbage++;
1412 if (task->tk_garb_retry) {
1413 task->tk_garb_retry--;
Chuck Lever46121cf2007-01-31 12:14:08 -05001414 dprintk("RPC: %5u %s: retrying\n",
1415 task->tk_pid, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 task->tk_action = call_bind;
Trond Myklebustabbcf282006-01-03 09:55:03 +01001417out_retry:
1418 return ERR_PTR(-EAGAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 }
1420 printk(KERN_WARNING "RPC %s: retry failed, exit EIO\n", __FUNCTION__);
1421out_eio:
1422 error = -EIO;
1423out_err:
1424 rpc_exit(task, error);
Trond Myklebustabbcf282006-01-03 09:55:03 +01001425 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426out_overflow:
1427 printk(KERN_WARNING "RPC %s: server reply was truncated.\n", __FUNCTION__);
Trond Myklebustabbcf282006-01-03 09:55:03 +01001428 goto out_garbage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429}
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00001430
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001431static int rpcproc_encode_null(void *rqstp, __be32 *data, void *obj)
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00001432{
1433 return 0;
1434}
1435
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001436static int rpcproc_decode_null(void *rqstp, __be32 *data, void *obj)
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00001437{
1438 return 0;
1439}
1440
1441static struct rpc_procinfo rpcproc_null = {
1442 .p_encode = rpcproc_encode_null,
1443 .p_decode = rpcproc_decode_null,
1444};
1445
Trond Myklebust64c91a12007-06-23 10:17:16 -04001446static int rpc_ping(struct rpc_clnt *clnt, int flags)
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00001447{
1448 struct rpc_message msg = {
1449 .rpc_proc = &rpcproc_null,
1450 };
1451 int err;
1452 msg.rpc_cred = authnull_ops.lookup_cred(NULL, NULL, 0);
1453 err = rpc_call_sync(clnt, &msg, flags);
1454 put_rpccred(msg.rpc_cred);
1455 return err;
1456}
Trond Myklebust188fef12007-06-16 14:18:40 -04001457
Trond Myklebust5e1550d2007-06-23 10:17:16 -04001458struct rpc_task *rpc_call_null(struct rpc_clnt *clnt, struct rpc_cred *cred, int flags)
1459{
1460 struct rpc_message msg = {
1461 .rpc_proc = &rpcproc_null,
1462 .rpc_cred = cred,
1463 };
1464 return rpc_do_run_task(clnt, &msg, flags, &rpc_default_ops, NULL);
1465}
1466EXPORT_SYMBOL(rpc_call_null);
1467
Trond Myklebust188fef12007-06-16 14:18:40 -04001468#ifdef RPC_DEBUG
1469void rpc_show_tasks(void)
1470{
1471 struct rpc_clnt *clnt;
1472 struct rpc_task *t;
1473
1474 spin_lock(&rpc_client_lock);
1475 if (list_empty(&all_clients))
1476 goto out;
1477 printk("-pid- proc flgs status -client- -prog- --rqstp- -timeout "
1478 "-rpcwait -action- ---ops--\n");
1479 list_for_each_entry(clnt, &all_clients, cl_clients) {
1480 if (list_empty(&clnt->cl_tasks))
1481 continue;
1482 spin_lock(&clnt->cl_lock);
1483 list_for_each_entry(t, &clnt->cl_tasks, tk_task) {
1484 const char *rpc_waitq = "none";
1485
1486 if (RPC_IS_QUEUED(t))
1487 rpc_waitq = rpc_qname(t->u.tk_wait.rpc_waitq);
1488
1489 printk("%5u %04d %04x %6d %8p %6d %8p %8ld %8s %8p %8p\n",
1490 t->tk_pid,
1491 (t->tk_msg.rpc_proc ? t->tk_msg.rpc_proc->p_proc : -1),
1492 t->tk_flags, t->tk_status,
1493 t->tk_client,
1494 (t->tk_client ? t->tk_client->cl_prog : 0),
1495 t->tk_rqstp, t->tk_timeout,
1496 rpc_waitq,
1497 t->tk_action, t->tk_ops);
1498 }
1499 spin_unlock(&clnt->cl_lock);
1500 }
1501out:
1502 spin_unlock(&rpc_client_lock);
1503}
1504#endif