]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | /* |
55aa4f58 | 2 | * linux/net/sunrpc/clnt.c |
1da177e4 LT |
3 | * |
4 | * This file contains the high-level RPC interface. | |
5 | * It is modeled as a finite state machine to support both synchronous | |
6 | * and asynchronous requests. | |
7 | * | |
8 | * - RPC header generation and argument serialization. | |
9 | * - Credential refresh. | |
10 | * - TCP connect handling. | |
11 | * - Retry of operation when it is suspected the operation failed because | |
12 | * of uid squashing on the server, or when the credentials were stale | |
13 | * and need to be refreshed, or when a packet was damaged in transit. | |
14 | * This may be have to be moved to the VFS layer. | |
15 | * | |
1da177e4 LT |
16 | * Copyright (C) 1992,1993 Rick Sladkey <[email protected]> |
17 | * Copyright (C) 1995,1996 Olaf Kirch <[email protected]> | |
18 | */ | |
19 | ||
1da177e4 LT |
20 | |
21 | #include <linux/module.h> | |
22 | #include <linux/types.h> | |
cb3997b5 | 23 | #include <linux/kallsyms.h> |
1da177e4 | 24 | #include <linux/mm.h> |
23ac6581 TM |
25 | #include <linux/namei.h> |
26 | #include <linux/mount.h> | |
1da177e4 | 27 | #include <linux/slab.h> |
1da177e4 | 28 | #include <linux/utsname.h> |
11c556b3 | 29 | #include <linux/workqueue.h> |
176e21ee | 30 | #include <linux/in.h> |
510deb0d | 31 | #include <linux/in6.h> |
176e21ee | 32 | #include <linux/un.h> |
2446ab60 | 33 | #include <linux/rcupdate.h> |
1da177e4 LT |
34 | |
35 | #include <linux/sunrpc/clnt.h> | |
1da177e4 | 36 | #include <linux/sunrpc/rpc_pipe_fs.h> |
11c556b3 | 37 | #include <linux/sunrpc/metrics.h> |
55ae1aab | 38 | #include <linux/sunrpc/bc_xprt.h> |
5753cba1 | 39 | #include <trace/events/sunrpc.h> |
1da177e4 | 40 | |
55ae1aab | 41 | #include "sunrpc.h" |
70abc49b | 42 | #include "netns.h" |
1da177e4 | 43 | |
1da177e4 LT |
44 | #ifdef RPC_DEBUG |
45 | # define RPCDBG_FACILITY RPCDBG_CALL | |
46 | #endif | |
47 | ||
46121cf7 CL |
48 | #define dprint_status(t) \ |
49 | dprintk("RPC: %5u %s (status %d)\n", t->tk_pid, \ | |
0dc47877 | 50 | __func__, t->tk_status) |
46121cf7 | 51 | |
188fef11 TM |
52 | /* |
53 | * All RPC clients are linked into this list | |
54 | */ | |
188fef11 | 55 | |
1da177e4 LT |
56 | static DECLARE_WAIT_QUEUE_HEAD(destroy_wait); |
57 | ||
58 | ||
59 | static void call_start(struct rpc_task *task); | |
60 | static void call_reserve(struct rpc_task *task); | |
61 | static void call_reserveresult(struct rpc_task *task); | |
62 | static void call_allocate(struct rpc_task *task); | |
1da177e4 LT |
63 | static void call_decode(struct rpc_task *task); |
64 | static void call_bind(struct rpc_task *task); | |
da351878 | 65 | static void call_bind_status(struct rpc_task *task); |
1da177e4 | 66 | static void call_transmit(struct rpc_task *task); |
9e00abc3 | 67 | #if defined(CONFIG_SUNRPC_BACKCHANNEL) |
55ae1aab | 68 | static void call_bc_transmit(struct rpc_task *task); |
9e00abc3 | 69 | #endif /* CONFIG_SUNRPC_BACKCHANNEL */ |
1da177e4 | 70 | static void call_status(struct rpc_task *task); |
940e3318 | 71 | static void call_transmit_status(struct rpc_task *task); |
1da177e4 LT |
72 | static void call_refresh(struct rpc_task *task); |
73 | static void call_refreshresult(struct rpc_task *task); | |
74 | static void call_timeout(struct rpc_task *task); | |
75 | static void call_connect(struct rpc_task *task); | |
76 | static void call_connect_status(struct rpc_task *task); | |
1da177e4 | 77 | |
b0e1c57e CL |
78 | static __be32 *rpc_encode_header(struct rpc_task *task); |
79 | static __be32 *rpc_verify_header(struct rpc_task *task); | |
caabea8a | 80 | static int rpc_ping(struct rpc_clnt *clnt); |
64c91a1f | 81 | |
188fef11 TM |
82 | static void rpc_register_client(struct rpc_clnt *clnt) |
83 | { | |
2446ab60 TM |
84 | struct net *net = rpc_net_ns(clnt); |
85 | struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); | |
70abc49b SK |
86 | |
87 | spin_lock(&sn->rpc_client_lock); | |
88 | list_add(&clnt->cl_clients, &sn->all_clients); | |
89 | spin_unlock(&sn->rpc_client_lock); | |
188fef11 TM |
90 | } |
91 | ||
92 | static void rpc_unregister_client(struct rpc_clnt *clnt) | |
93 | { | |
2446ab60 TM |
94 | struct net *net = rpc_net_ns(clnt); |
95 | struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); | |
70abc49b SK |
96 | |
97 | spin_lock(&sn->rpc_client_lock); | |
188fef11 | 98 | list_del(&clnt->cl_clients); |
70abc49b | 99 | spin_unlock(&sn->rpc_client_lock); |
188fef11 | 100 | } |
1da177e4 | 101 | |
0157d021 SK |
102 | static void __rpc_clnt_remove_pipedir(struct rpc_clnt *clnt) |
103 | { | |
30507f58 | 104 | if (clnt->cl_dentry) { |
80df9d20 SK |
105 | if (clnt->cl_auth && clnt->cl_auth->au_ops->pipes_destroy) |
106 | clnt->cl_auth->au_ops->pipes_destroy(clnt->cl_auth); | |
30507f58 | 107 | rpc_remove_client_dir(clnt->cl_dentry); |
80df9d20 | 108 | } |
30507f58 | 109 | clnt->cl_dentry = NULL; |
0157d021 SK |
110 | } |
111 | ||
112 | static void rpc_clnt_remove_pipedir(struct rpc_clnt *clnt) | |
113 | { | |
2446ab60 | 114 | struct net *net = rpc_net_ns(clnt); |
0157d021 | 115 | struct super_block *pipefs_sb; |
0157d021 | 116 | |
2446ab60 | 117 | pipefs_sb = rpc_get_sb_net(net); |
0157d021 | 118 | if (pipefs_sb) { |
0157d021 | 119 | __rpc_clnt_remove_pipedir(clnt); |
2446ab60 | 120 | rpc_put_sb_net(net); |
0157d021 | 121 | } |
0157d021 SK |
122 | } |
123 | ||
124 | static struct dentry *rpc_setup_pipedir_sb(struct super_block *sb, | |
080b794c TM |
125 | struct rpc_clnt *clnt, |
126 | const char *dir_name) | |
1da177e4 | 127 | { |
f134585a | 128 | static uint32_t clntid; |
23ac6581 TM |
129 | char name[15]; |
130 | struct qstr q = { | |
131 | .name = name, | |
132 | }; | |
0157d021 | 133 | struct dentry *dir, *dentry; |
1da177e4 LT |
134 | int error; |
135 | ||
0157d021 SK |
136 | dir = rpc_d_lookup_sb(sb, dir_name); |
137 | if (dir == NULL) | |
138 | return dir; | |
f134585a | 139 | for (;;) { |
23ac6581 TM |
140 | q.len = snprintf(name, sizeof(name), "clnt%x", (unsigned int)clntid++); |
141 | name[sizeof(name) - 1] = '\0'; | |
142 | q.hash = full_name_hash(q.name, q.len); | |
0157d021 SK |
143 | dentry = rpc_create_client_dir(dir, &q, clnt); |
144 | if (!IS_ERR(dentry)) | |
23ac6581 | 145 | break; |
0157d021 | 146 | error = PTR_ERR(dentry); |
f134585a | 147 | if (error != -EEXIST) { |
23ac6581 TM |
148 | printk(KERN_INFO "RPC: Couldn't create pipefs entry" |
149 | " %s/%s, error %d\n", | |
150 | dir_name, name, error); | |
0157d021 | 151 | break; |
f134585a | 152 | } |
1da177e4 | 153 | } |
0157d021 SK |
154 | dput(dir); |
155 | return dentry; | |
156 | } | |
157 | ||
158 | static int | |
080b794c | 159 | rpc_setup_pipedir(struct rpc_clnt *clnt, const char *dir_name) |
0157d021 | 160 | { |
2446ab60 | 161 | struct net *net = rpc_net_ns(clnt); |
0157d021 | 162 | struct super_block *pipefs_sb; |
30507f58 | 163 | struct dentry *dentry; |
0157d021 | 164 | |
30507f58 | 165 | clnt->cl_dentry = NULL; |
0157d021 SK |
166 | if (dir_name == NULL) |
167 | return 0; | |
2446ab60 | 168 | pipefs_sb = rpc_get_sb_net(net); |
70fe25b6 SK |
169 | if (!pipefs_sb) |
170 | return 0; | |
30507f58 | 171 | dentry = rpc_setup_pipedir_sb(pipefs_sb, clnt, dir_name); |
2446ab60 | 172 | rpc_put_sb_net(net); |
30507f58 SK |
173 | if (IS_ERR(dentry)) |
174 | return PTR_ERR(dentry); | |
175 | clnt->cl_dentry = dentry; | |
23ac6581 | 176 | return 0; |
1da177e4 LT |
177 | } |
178 | ||
80df9d20 SK |
179 | static int __rpc_pipefs_event(struct rpc_clnt *clnt, unsigned long event, |
180 | struct super_block *sb) | |
181 | { | |
182 | struct dentry *dentry; | |
183 | int err = 0; | |
184 | ||
185 | switch (event) { | |
186 | case RPC_PIPEFS_MOUNT: | |
187 | if (clnt->cl_program->pipe_dir_name == NULL) | |
188 | break; | |
189 | dentry = rpc_setup_pipedir_sb(sb, clnt, | |
190 | clnt->cl_program->pipe_dir_name); | |
191 | BUG_ON(dentry == NULL); | |
192 | if (IS_ERR(dentry)) | |
193 | return PTR_ERR(dentry); | |
30507f58 | 194 | clnt->cl_dentry = dentry; |
80df9d20 SK |
195 | if (clnt->cl_auth->au_ops->pipes_create) { |
196 | err = clnt->cl_auth->au_ops->pipes_create(clnt->cl_auth); | |
197 | if (err) | |
198 | __rpc_clnt_remove_pipedir(clnt); | |
199 | } | |
200 | break; | |
201 | case RPC_PIPEFS_UMOUNT: | |
202 | __rpc_clnt_remove_pipedir(clnt); | |
203 | break; | |
204 | default: | |
205 | printk(KERN_ERR "%s: unknown event: %ld\n", __func__, event); | |
206 | return -ENOTSUPP; | |
207 | } | |
208 | return err; | |
209 | } | |
210 | ||
da3b4622 SK |
211 | static struct rpc_clnt *rpc_get_client_for_event(struct net *net, int event) |
212 | { | |
213 | struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); | |
214 | struct rpc_clnt *clnt; | |
215 | ||
216 | spin_lock(&sn->rpc_client_lock); | |
217 | list_for_each_entry(clnt, &sn->all_clients, cl_clients) { | |
218 | if (((event == RPC_PIPEFS_MOUNT) && clnt->cl_dentry) || | |
219 | ((event == RPC_PIPEFS_UMOUNT) && !clnt->cl_dentry)) | |
220 | continue; | |
221 | atomic_inc(&clnt->cl_count); | |
222 | spin_unlock(&sn->rpc_client_lock); | |
223 | return clnt; | |
224 | } | |
225 | spin_unlock(&sn->rpc_client_lock); | |
226 | return NULL; | |
227 | } | |
228 | ||
80df9d20 SK |
229 | static int rpc_pipefs_event(struct notifier_block *nb, unsigned long event, |
230 | void *ptr) | |
231 | { | |
232 | struct super_block *sb = ptr; | |
233 | struct rpc_clnt *clnt; | |
234 | int error = 0; | |
80df9d20 | 235 | |
da3b4622 | 236 | while ((clnt = rpc_get_client_for_event(sb->s_fs_info, event))) { |
80df9d20 | 237 | error = __rpc_pipefs_event(clnt, event, sb); |
da3b4622 | 238 | rpc_release_client(clnt); |
80df9d20 SK |
239 | if (error) |
240 | break; | |
241 | } | |
80df9d20 SK |
242 | return error; |
243 | } | |
244 | ||
245 | static struct notifier_block rpc_clients_block = { | |
246 | .notifier_call = rpc_pipefs_event, | |
eee17325 | 247 | .priority = SUNRPC_PIPEFS_RPC_PRIO, |
80df9d20 SK |
248 | }; |
249 | ||
250 | int rpc_clients_notifier_register(void) | |
251 | { | |
252 | return rpc_pipefs_notifier_register(&rpc_clients_block); | |
253 | } | |
254 | ||
255 | void rpc_clients_notifier_unregister(void) | |
256 | { | |
257 | return rpc_pipefs_notifier_unregister(&rpc_clients_block); | |
258 | } | |
259 | ||
698b6d08 | 260 | static struct rpc_clnt * rpc_new_client(const struct rpc_create_args *args, struct rpc_xprt *xprt) |
1da177e4 | 261 | { |
a613fa16 TM |
262 | const struct rpc_program *program = args->program; |
263 | const struct rpc_version *version; | |
1da177e4 | 264 | struct rpc_clnt *clnt = NULL; |
6a19275a | 265 | struct rpc_auth *auth; |
1da177e4 | 266 | int err; |
06b8d255 CL |
267 | |
268 | /* sanity check the name before trying to print it */ | |
46121cf7 | 269 | dprintk("RPC: creating %s client for %s (xprt %p)\n", |
698b6d08 | 270 | program->name, args->servername, xprt); |
1da177e4 | 271 | |
4ada539e TM |
272 | err = rpciod_up(); |
273 | if (err) | |
274 | goto out_no_rpciod; | |
1da177e4 LT |
275 | err = -EINVAL; |
276 | if (!xprt) | |
712917d1 | 277 | goto out_no_xprt; |
698b6d08 TM |
278 | |
279 | if (args->version >= program->nrvers) | |
280 | goto out_err; | |
281 | version = program->version[args->version]; | |
282 | if (version == NULL) | |
1da177e4 LT |
283 | goto out_err; |
284 | ||
285 | err = -ENOMEM; | |
0da974f4 | 286 | clnt = kzalloc(sizeof(*clnt), GFP_KERNEL); |
1da177e4 LT |
287 | if (!clnt) |
288 | goto out_err; | |
1da177e4 LT |
289 | clnt->cl_parent = clnt; |
290 | ||
2446ab60 | 291 | rcu_assign_pointer(clnt->cl_xprt, xprt); |
1da177e4 LT |
292 | clnt->cl_procinfo = version->procs; |
293 | clnt->cl_maxproc = version->nrprocs; | |
294 | clnt->cl_protname = program->name; | |
d5b337b4 | 295 | clnt->cl_prog = args->prognumber ? : program->number; |
1da177e4 | 296 | clnt->cl_vers = version->number; |
1da177e4 | 297 | clnt->cl_stats = program->stats; |
11c556b3 | 298 | clnt->cl_metrics = rpc_alloc_iostats(clnt); |
23bf85ba TM |
299 | err = -ENOMEM; |
300 | if (clnt->cl_metrics == NULL) | |
301 | goto out_no_stats; | |
3e32a5d9 | 302 | clnt->cl_program = program; |
6529eba0 | 303 | INIT_LIST_HEAD(&clnt->cl_tasks); |
4bef61ff | 304 | spin_lock_init(&clnt->cl_lock); |
1da177e4 | 305 | |
2446ab60 | 306 | if (!xprt_bound(xprt)) |
1da177e4 LT |
307 | clnt->cl_autobind = 1; |
308 | ||
ba7392bb TM |
309 | clnt->cl_timeout = xprt->timeout; |
310 | if (args->timeout != NULL) { | |
311 | memcpy(&clnt->cl_timeout_default, args->timeout, | |
312 | sizeof(clnt->cl_timeout_default)); | |
313 | clnt->cl_timeout = &clnt->cl_timeout_default; | |
314 | } | |
315 | ||
1da177e4 | 316 | clnt->cl_rtt = &clnt->cl_rtt_default; |
ba7392bb | 317 | rpc_init_rtt(&clnt->cl_rtt_default, clnt->cl_timeout->to_initval); |
608207e8 OK |
318 | clnt->cl_principal = NULL; |
319 | if (args->client_name) { | |
320 | clnt->cl_principal = kstrdup(args->client_name, GFP_KERNEL); | |
321 | if (!clnt->cl_principal) | |
322 | goto out_no_principal; | |
323 | } | |
1da177e4 | 324 | |
006abe88 | 325 | atomic_set(&clnt->cl_count, 1); |
34f52e35 | 326 | |
1da177e4 LT |
327 | err = rpc_setup_pipedir(clnt, program->pipe_dir_name); |
328 | if (err < 0) | |
329 | goto out_no_path; | |
330 | ||
698b6d08 | 331 | auth = rpcauth_create(args->authflavor, clnt); |
6a19275a | 332 | if (IS_ERR(auth)) { |
1da177e4 | 333 | printk(KERN_INFO "RPC: Couldn't create auth handle (flavor %u)\n", |
698b6d08 | 334 | args->authflavor); |
6a19275a | 335 | err = PTR_ERR(auth); |
1da177e4 LT |
336 | goto out_no_auth; |
337 | } | |
338 | ||
339 | /* save the nodename */ | |
63ffc23d | 340 | clnt->cl_nodelen = strlen(init_utsname()->nodename); |
1da177e4 LT |
341 | if (clnt->cl_nodelen > UNX_MAXNODENAME) |
342 | clnt->cl_nodelen = UNX_MAXNODENAME; | |
63ffc23d | 343 | memcpy(clnt->cl_nodename, init_utsname()->nodename, clnt->cl_nodelen); |
6529eba0 | 344 | rpc_register_client(clnt); |
1da177e4 LT |
345 | return clnt; |
346 | ||
347 | out_no_auth: | |
0157d021 | 348 | rpc_clnt_remove_pipedir(clnt); |
1da177e4 | 349 | out_no_path: |
608207e8 OK |
350 | kfree(clnt->cl_principal); |
351 | out_no_principal: | |
23bf85ba TM |
352 | rpc_free_iostats(clnt->cl_metrics); |
353 | out_no_stats: | |
1da177e4 LT |
354 | kfree(clnt); |
355 | out_err: | |
6b6ca86b | 356 | xprt_put(xprt); |
712917d1 | 357 | out_no_xprt: |
4ada539e TM |
358 | rpciod_down(); |
359 | out_no_rpciod: | |
1da177e4 LT |
360 | return ERR_PTR(err); |
361 | } | |
362 | ||
c2866763 CL |
363 | /* |
364 | * rpc_create - create an RPC client and transport with one call | |
365 | * @args: rpc_clnt create argument structure | |
366 | * | |
367 | * Creates and initializes an RPC transport and an RPC client. | |
368 | * | |
369 | * It can ping the server in order to determine if it is up, and to see if | |
370 | * it supports this program and version. RPC_CLNT_CREATE_NOPING disables | |
371 | * this behavior so asynchronous tasks can also use rpc_create. | |
372 | */ | |
373 | struct rpc_clnt *rpc_create(struct rpc_create_args *args) | |
374 | { | |
375 | struct rpc_xprt *xprt; | |
376 | struct rpc_clnt *clnt; | |
3c341b0b | 377 | struct xprt_create xprtargs = { |
9a23e332 | 378 | .net = args->net, |
4fa016eb | 379 | .ident = args->protocol, |
d3bc9a1d | 380 | .srcaddr = args->saddress, |
96802a09 FM |
381 | .dstaddr = args->address, |
382 | .addrlen = args->addrsize, | |
4e0038b6 | 383 | .servername = args->servername, |
f300baba | 384 | .bc_xprt = args->bc_xprt, |
96802a09 | 385 | }; |
510deb0d | 386 | char servername[48]; |
c2866763 | 387 | |
43780b87 CL |
388 | /* |
389 | * If the caller chooses not to specify a hostname, whip | |
390 | * up a string representation of the passed-in address. | |
391 | */ | |
4e0038b6 | 392 | if (xprtargs.servername == NULL) { |
176e21ee CL |
393 | struct sockaddr_un *sun = |
394 | (struct sockaddr_un *)args->address; | |
da09eb93 CL |
395 | struct sockaddr_in *sin = |
396 | (struct sockaddr_in *)args->address; | |
397 | struct sockaddr_in6 *sin6 = | |
398 | (struct sockaddr_in6 *)args->address; | |
399 | ||
510deb0d CL |
400 | servername[0] = '\0'; |
401 | switch (args->address->sa_family) { | |
176e21ee CL |
402 | case AF_LOCAL: |
403 | snprintf(servername, sizeof(servername), "%s", | |
404 | sun->sun_path); | |
405 | break; | |
da09eb93 | 406 | case AF_INET: |
21454aaa HH |
407 | snprintf(servername, sizeof(servername), "%pI4", |
408 | &sin->sin_addr.s_addr); | |
510deb0d | 409 | break; |
da09eb93 | 410 | case AF_INET6: |
5b095d98 | 411 | snprintf(servername, sizeof(servername), "%pI6", |
da09eb93 | 412 | &sin6->sin6_addr); |
510deb0d | 413 | break; |
510deb0d CL |
414 | default: |
415 | /* caller wants default server name, but | |
416 | * address family isn't recognized. */ | |
417 | return ERR_PTR(-EINVAL); | |
418 | } | |
4e0038b6 | 419 | xprtargs.servername = servername; |
43780b87 CL |
420 | } |
421 | ||
510deb0d CL |
422 | xprt = xprt_create_transport(&xprtargs); |
423 | if (IS_ERR(xprt)) | |
424 | return (struct rpc_clnt *)xprt; | |
425 | ||
c2866763 CL |
426 | /* |
427 | * By default, kernel RPC client connects from a reserved port. | |
428 | * CAP_NET_BIND_SERVICE will not be set for unprivileged requesters, | |
429 | * but it is always enabled for rpciod, which handles the connect | |
430 | * operation. | |
431 | */ | |
432 | xprt->resvport = 1; | |
433 | if (args->flags & RPC_CLNT_CREATE_NONPRIVPORT) | |
434 | xprt->resvport = 0; | |
435 | ||
698b6d08 | 436 | clnt = rpc_new_client(args, xprt); |
c2866763 CL |
437 | if (IS_ERR(clnt)) |
438 | return clnt; | |
439 | ||
440 | if (!(args->flags & RPC_CLNT_CREATE_NOPING)) { | |
caabea8a | 441 | int err = rpc_ping(clnt); |
c2866763 CL |
442 | if (err != 0) { |
443 | rpc_shutdown_client(clnt); | |
444 | return ERR_PTR(err); | |
445 | } | |
446 | } | |
447 | ||
448 | clnt->cl_softrtry = 1; | |
449 | if (args->flags & RPC_CLNT_CREATE_HARDRTRY) | |
450 | clnt->cl_softrtry = 0; | |
451 | ||
c2866763 CL |
452 | if (args->flags & RPC_CLNT_CREATE_AUTOBIND) |
453 | clnt->cl_autobind = 1; | |
43d78ef2 CL |
454 | if (args->flags & RPC_CLNT_CREATE_DISCRTRY) |
455 | clnt->cl_discrtry = 1; | |
b6b6152c OK |
456 | if (!(args->flags & RPC_CLNT_CREATE_QUIET)) |
457 | clnt->cl_chatty = 1; | |
c2866763 CL |
458 | |
459 | return clnt; | |
460 | } | |
b86acd50 | 461 | EXPORT_SYMBOL_GPL(rpc_create); |
c2866763 | 462 | |
1da177e4 LT |
463 | /* |
464 | * This function clones the RPC client structure. It allows us to share the | |
465 | * same transport while varying parameters such as the authentication | |
466 | * flavour. | |
467 | */ | |
468 | struct rpc_clnt * | |
469 | rpc_clone_client(struct rpc_clnt *clnt) | |
470 | { | |
471 | struct rpc_clnt *new; | |
2446ab60 | 472 | struct rpc_xprt *xprt; |
3e32a5d9 | 473 | int err = -ENOMEM; |
1da177e4 | 474 | |
e69062b4 | 475 | new = kmemdup(clnt, sizeof(*new), GFP_KERNEL); |
1da177e4 LT |
476 | if (!new) |
477 | goto out_no_clnt; | |
d431a555 TM |
478 | new->cl_parent = clnt; |
479 | /* Turn off autobind on clones */ | |
480 | new->cl_autobind = 0; | |
481 | INIT_LIST_HEAD(&new->cl_tasks); | |
482 | spin_lock_init(&new->cl_lock); | |
ba7392bb | 483 | rpc_init_rtt(&new->cl_rtt_default, clnt->cl_timeout->to_initval); |
23bf85ba TM |
484 | new->cl_metrics = rpc_alloc_iostats(clnt); |
485 | if (new->cl_metrics == NULL) | |
486 | goto out_no_stats; | |
608207e8 OK |
487 | if (clnt->cl_principal) { |
488 | new->cl_principal = kstrdup(clnt->cl_principal, GFP_KERNEL); | |
489 | if (new->cl_principal == NULL) | |
490 | goto out_no_principal; | |
491 | } | |
2446ab60 TM |
492 | rcu_read_lock(); |
493 | xprt = xprt_get(rcu_dereference(clnt->cl_xprt)); | |
494 | rcu_read_unlock(); | |
495 | if (xprt == NULL) | |
496 | goto out_no_transport; | |
497 | rcu_assign_pointer(new->cl_xprt, xprt); | |
006abe88 | 498 | atomic_set(&new->cl_count, 1); |
3e32a5d9 TM |
499 | err = rpc_setup_pipedir(new, clnt->cl_program->pipe_dir_name); |
500 | if (err != 0) | |
501 | goto out_no_path; | |
1da177e4 LT |
502 | if (new->cl_auth) |
503 | atomic_inc(&new->cl_auth->au_count); | |
006abe88 | 504 | atomic_inc(&clnt->cl_count); |
6529eba0 | 505 | rpc_register_client(new); |
4ada539e | 506 | rpciod_up(); |
1da177e4 | 507 | return new; |
3e32a5d9 | 508 | out_no_path: |
2446ab60 TM |
509 | xprt_put(xprt); |
510 | out_no_transport: | |
608207e8 OK |
511 | kfree(new->cl_principal); |
512 | out_no_principal: | |
3e32a5d9 | 513 | rpc_free_iostats(new->cl_metrics); |
23bf85ba TM |
514 | out_no_stats: |
515 | kfree(new); | |
1da177e4 | 516 | out_no_clnt: |
0dc47877 | 517 | dprintk("RPC: %s: returned error %d\n", __func__, err); |
3e32a5d9 | 518 | return ERR_PTR(err); |
1da177e4 | 519 | } |
e8914c65 | 520 | EXPORT_SYMBOL_GPL(rpc_clone_client); |
1da177e4 | 521 | |
58f9612c TM |
522 | /* |
523 | * Kill all tasks for the given client. | |
524 | * XXX: kill their descendants as well? | |
525 | */ | |
526 | void rpc_killall_tasks(struct rpc_clnt *clnt) | |
527 | { | |
528 | struct rpc_task *rovr; | |
529 | ||
530 | ||
531 | if (list_empty(&clnt->cl_tasks)) | |
532 | return; | |
533 | dprintk("RPC: killing all tasks for client %p\n", clnt); | |
534 | /* | |
535 | * Spin lock all_tasks to prevent changes... | |
536 | */ | |
537 | spin_lock(&clnt->cl_lock); | |
538 | list_for_each_entry(rovr, &clnt->cl_tasks, tk_task) { | |
539 | if (!RPC_IS_ACTIVATED(rovr)) | |
540 | continue; | |
541 | if (!(rovr->tk_flags & RPC_TASK_KILLED)) { | |
542 | rovr->tk_flags |= RPC_TASK_KILLED; | |
543 | rpc_exit(rovr, -EIO); | |
8e26de23 SK |
544 | if (RPC_IS_QUEUED(rovr)) |
545 | rpc_wake_up_queued_task(rovr->tk_waitqueue, | |
546 | rovr); | |
58f9612c TM |
547 | } |
548 | } | |
549 | spin_unlock(&clnt->cl_lock); | |
550 | } | |
551 | EXPORT_SYMBOL_GPL(rpc_killall_tasks); | |
552 | ||
1da177e4 LT |
553 | /* |
554 | * Properly shut down an RPC client, terminating all outstanding | |
90c5755f | 555 | * requests. |
1da177e4 | 556 | */ |
4c402b40 | 557 | void rpc_shutdown_client(struct rpc_clnt *clnt) |
1da177e4 | 558 | { |
4e0038b6 TM |
559 | dprintk_rcu("RPC: shutting down %s client for %s\n", |
560 | clnt->cl_protname, | |
561 | rcu_dereference(clnt->cl_xprt)->servername); | |
1da177e4 | 562 | |
34f52e35 | 563 | while (!list_empty(&clnt->cl_tasks)) { |
1da177e4 | 564 | rpc_killall_tasks(clnt); |
532347e2 | 565 | wait_event_timeout(destroy_wait, |
34f52e35 | 566 | list_empty(&clnt->cl_tasks), 1*HZ); |
1da177e4 LT |
567 | } |
568 | ||
4c402b40 | 569 | rpc_release_client(clnt); |
1da177e4 | 570 | } |
e8914c65 | 571 | EXPORT_SYMBOL_GPL(rpc_shutdown_client); |
1da177e4 LT |
572 | |
573 | /* | |
34f52e35 | 574 | * Free an RPC client |
1da177e4 | 575 | */ |
34f52e35 | 576 | static void |
006abe88 | 577 | rpc_free_client(struct rpc_clnt *clnt) |
1da177e4 | 578 | { |
4e0038b6 TM |
579 | dprintk_rcu("RPC: destroying %s client for %s\n", |
580 | clnt->cl_protname, | |
581 | rcu_dereference(clnt->cl_xprt)->servername); | |
6eac7d3f | 582 | if (clnt->cl_parent != clnt) |
8ad7c892 | 583 | rpc_release_client(clnt->cl_parent); |
6529eba0 | 584 | rpc_unregister_client(clnt); |
f5131257 | 585 | rpc_clnt_remove_pipedir(clnt); |
11c556b3 | 586 | rpc_free_iostats(clnt->cl_metrics); |
608207e8 | 587 | kfree(clnt->cl_principal); |
11c556b3 | 588 | clnt->cl_metrics = NULL; |
2446ab60 | 589 | xprt_put(rcu_dereference_raw(clnt->cl_xprt)); |
4ada539e | 590 | rpciod_down(); |
1da177e4 | 591 | kfree(clnt); |
1da177e4 LT |
592 | } |
593 | ||
1dd17ec6 TM |
594 | /* |
595 | * Free an RPC client | |
596 | */ | |
597 | static void | |
006abe88 | 598 | rpc_free_auth(struct rpc_clnt *clnt) |
1dd17ec6 | 599 | { |
1dd17ec6 | 600 | if (clnt->cl_auth == NULL) { |
006abe88 | 601 | rpc_free_client(clnt); |
1dd17ec6 TM |
602 | return; |
603 | } | |
604 | ||
605 | /* | |
606 | * Note: RPCSEC_GSS may need to send NULL RPC calls in order to | |
607 | * release remaining GSS contexts. This mechanism ensures | |
608 | * that it can do so safely. | |
609 | */ | |
006abe88 | 610 | atomic_inc(&clnt->cl_count); |
1dd17ec6 TM |
611 | rpcauth_release(clnt->cl_auth); |
612 | clnt->cl_auth = NULL; | |
006abe88 TM |
613 | if (atomic_dec_and_test(&clnt->cl_count)) |
614 | rpc_free_client(clnt); | |
1dd17ec6 TM |
615 | } |
616 | ||
1da177e4 | 617 | /* |
34f52e35 | 618 | * Release reference to the RPC client |
1da177e4 LT |
619 | */ |
620 | void | |
621 | rpc_release_client(struct rpc_clnt *clnt) | |
622 | { | |
34f52e35 | 623 | dprintk("RPC: rpc_release_client(%p)\n", clnt); |
1da177e4 | 624 | |
34f52e35 TM |
625 | if (list_empty(&clnt->cl_tasks)) |
626 | wake_up(&destroy_wait); | |
006abe88 TM |
627 | if (atomic_dec_and_test(&clnt->cl_count)) |
628 | rpc_free_auth(clnt); | |
34f52e35 TM |
629 | } |
630 | ||
007e251f AG |
631 | /** |
632 | * rpc_bind_new_program - bind a new RPC program to an existing client | |
65b6e42c RD |
633 | * @old: old rpc_client |
634 | * @program: rpc program to set | |
635 | * @vers: rpc program version | |
007e251f AG |
636 | * |
637 | * Clones the rpc client and sets up a new RPC program. This is mainly | |
638 | * of use for enabling different RPC programs to share the same transport. | |
639 | * The Sun NFSv2/v3 ACL protocol can do this. | |
640 | */ | |
641 | struct rpc_clnt *rpc_bind_new_program(struct rpc_clnt *old, | |
a613fa16 | 642 | const struct rpc_program *program, |
89eb21c3 | 643 | u32 vers) |
007e251f AG |
644 | { |
645 | struct rpc_clnt *clnt; | |
a613fa16 | 646 | const struct rpc_version *version; |
007e251f AG |
647 | int err; |
648 | ||
649 | BUG_ON(vers >= program->nrvers || !program->version[vers]); | |
650 | version = program->version[vers]; | |
651 | clnt = rpc_clone_client(old); | |
652 | if (IS_ERR(clnt)) | |
653 | goto out; | |
654 | clnt->cl_procinfo = version->procs; | |
655 | clnt->cl_maxproc = version->nrprocs; | |
656 | clnt->cl_protname = program->name; | |
657 | clnt->cl_prog = program->number; | |
658 | clnt->cl_vers = version->number; | |
659 | clnt->cl_stats = program->stats; | |
caabea8a | 660 | err = rpc_ping(clnt); |
007e251f AG |
661 | if (err != 0) { |
662 | rpc_shutdown_client(clnt); | |
663 | clnt = ERR_PTR(err); | |
664 | } | |
cca5172a | 665 | out: |
007e251f AG |
666 | return clnt; |
667 | } | |
e8914c65 | 668 | EXPORT_SYMBOL_GPL(rpc_bind_new_program); |
007e251f | 669 | |
58f9612c TM |
670 | void rpc_task_release_client(struct rpc_task *task) |
671 | { | |
672 | struct rpc_clnt *clnt = task->tk_client; | |
673 | ||
674 | if (clnt != NULL) { | |
675 | /* Remove from client task list */ | |
676 | spin_lock(&clnt->cl_lock); | |
677 | list_del(&task->tk_task); | |
678 | spin_unlock(&clnt->cl_lock); | |
679 | task->tk_client = NULL; | |
680 | ||
681 | rpc_release_client(clnt); | |
682 | } | |
683 | } | |
684 | ||
685 | static | |
686 | void rpc_task_set_client(struct rpc_task *task, struct rpc_clnt *clnt) | |
687 | { | |
688 | if (clnt != NULL) { | |
689 | rpc_task_release_client(task); | |
690 | task->tk_client = clnt; | |
006abe88 | 691 | atomic_inc(&clnt->cl_count); |
58f9612c TM |
692 | if (clnt->cl_softrtry) |
693 | task->tk_flags |= RPC_TASK_SOFT; | |
694 | /* Add to the client's list of all tasks */ | |
695 | spin_lock(&clnt->cl_lock); | |
696 | list_add_tail(&task->tk_task, &clnt->cl_tasks); | |
697 | spin_unlock(&clnt->cl_lock); | |
698 | } | |
699 | } | |
700 | ||
cbdabc7f AA |
701 | void rpc_task_reset_client(struct rpc_task *task, struct rpc_clnt *clnt) |
702 | { | |
703 | rpc_task_release_client(task); | |
704 | rpc_task_set_client(task, clnt); | |
705 | } | |
706 | EXPORT_SYMBOL_GPL(rpc_task_reset_client); | |
707 | ||
708 | ||
58f9612c TM |
709 | static void |
710 | rpc_task_set_rpc_message(struct rpc_task *task, const struct rpc_message *msg) | |
711 | { | |
712 | if (msg != NULL) { | |
713 | task->tk_msg.rpc_proc = msg->rpc_proc; | |
714 | task->tk_msg.rpc_argp = msg->rpc_argp; | |
715 | task->tk_msg.rpc_resp = msg->rpc_resp; | |
a17c2153 TM |
716 | if (msg->rpc_cred != NULL) |
717 | task->tk_msg.rpc_cred = get_rpccred(msg->rpc_cred); | |
58f9612c TM |
718 | } |
719 | } | |
720 | ||
1da177e4 LT |
721 | /* |
722 | * Default callback for async RPC calls | |
723 | */ | |
724 | static void | |
963d8fe5 | 725 | rpc_default_callback(struct rpc_task *task, void *data) |
1da177e4 LT |
726 | { |
727 | } | |
728 | ||
963d8fe5 TM |
729 | static const struct rpc_call_ops rpc_default_ops = { |
730 | .rpc_call_done = rpc_default_callback, | |
731 | }; | |
732 | ||
c970aa85 TM |
733 | /** |
734 | * rpc_run_task - Allocate a new RPC task, then run rpc_execute against it | |
735 | * @task_setup_data: pointer to task initialisation data | |
736 | */ | |
737 | struct rpc_task *rpc_run_task(const struct rpc_task_setup *task_setup_data) | |
6e5b70e9 | 738 | { |
19445b99 | 739 | struct rpc_task *task; |
6e5b70e9 | 740 | |
84115e1c | 741 | task = rpc_new_task(task_setup_data); |
19445b99 | 742 | if (IS_ERR(task)) |
50859259 | 743 | goto out; |
6e5b70e9 | 744 | |
58f9612c TM |
745 | rpc_task_set_client(task, task_setup_data->rpc_client); |
746 | rpc_task_set_rpc_message(task, task_setup_data->rpc_message); | |
747 | ||
58f9612c TM |
748 | if (task->tk_action == NULL) |
749 | rpc_call_start(task); | |
750 | ||
6e5b70e9 TM |
751 | atomic_inc(&task->tk_count); |
752 | rpc_execute(task); | |
6e5b70e9 | 753 | out: |
19445b99 | 754 | return task; |
6e5b70e9 | 755 | } |
c970aa85 | 756 | EXPORT_SYMBOL_GPL(rpc_run_task); |
6e5b70e9 TM |
757 | |
758 | /** | |
759 | * rpc_call_sync - Perform a synchronous RPC call | |
760 | * @clnt: pointer to RPC client | |
761 | * @msg: RPC call parameters | |
762 | * @flags: RPC call flags | |
1da177e4 | 763 | */ |
cbc20059 | 764 | int rpc_call_sync(struct rpc_clnt *clnt, const struct rpc_message *msg, int flags) |
1da177e4 LT |
765 | { |
766 | struct rpc_task *task; | |
84115e1c TM |
767 | struct rpc_task_setup task_setup_data = { |
768 | .rpc_client = clnt, | |
769 | .rpc_message = msg, | |
770 | .callback_ops = &rpc_default_ops, | |
771 | .flags = flags, | |
772 | }; | |
6e5b70e9 | 773 | int status; |
1da177e4 | 774 | |
1da177e4 LT |
775 | BUG_ON(flags & RPC_TASK_ASYNC); |
776 | ||
c970aa85 | 777 | task = rpc_run_task(&task_setup_data); |
6e5b70e9 TM |
778 | if (IS_ERR(task)) |
779 | return PTR_ERR(task); | |
e60859ac | 780 | status = task->tk_status; |
bde8f00c | 781 | rpc_put_task(task); |
1da177e4 LT |
782 | return status; |
783 | } | |
e8914c65 | 784 | EXPORT_SYMBOL_GPL(rpc_call_sync); |
1da177e4 | 785 | |
6e5b70e9 TM |
786 | /** |
787 | * rpc_call_async - Perform an asynchronous RPC call | |
788 | * @clnt: pointer to RPC client | |
789 | * @msg: RPC call parameters | |
790 | * @flags: RPC call flags | |
65b6e42c | 791 | * @tk_ops: RPC call ops |
6e5b70e9 | 792 | * @data: user call data |
1da177e4 LT |
793 | */ |
794 | int | |
cbc20059 | 795 | rpc_call_async(struct rpc_clnt *clnt, const struct rpc_message *msg, int flags, |
963d8fe5 | 796 | const struct rpc_call_ops *tk_ops, void *data) |
1da177e4 LT |
797 | { |
798 | struct rpc_task *task; | |
84115e1c TM |
799 | struct rpc_task_setup task_setup_data = { |
800 | .rpc_client = clnt, | |
801 | .rpc_message = msg, | |
802 | .callback_ops = tk_ops, | |
803 | .callback_data = data, | |
804 | .flags = flags|RPC_TASK_ASYNC, | |
805 | }; | |
1da177e4 | 806 | |
c970aa85 | 807 | task = rpc_run_task(&task_setup_data); |
6e5b70e9 TM |
808 | if (IS_ERR(task)) |
809 | return PTR_ERR(task); | |
810 | rpc_put_task(task); | |
811 | return 0; | |
1da177e4 | 812 | } |
e8914c65 | 813 | EXPORT_SYMBOL_GPL(rpc_call_async); |
1da177e4 | 814 | |
9e00abc3 | 815 | #if defined(CONFIG_SUNRPC_BACKCHANNEL) |
55ae1aab RL |
816 | /** |
817 | * rpc_run_bc_task - Allocate a new RPC task for backchannel use, then run | |
818 | * rpc_execute against it | |
7a73fdde JSR |
819 | * @req: RPC request |
820 | * @tk_ops: RPC call ops | |
55ae1aab RL |
821 | */ |
822 | struct rpc_task *rpc_run_bc_task(struct rpc_rqst *req, | |
7a73fdde | 823 | const struct rpc_call_ops *tk_ops) |
55ae1aab RL |
824 | { |
825 | struct rpc_task *task; | |
826 | struct xdr_buf *xbufp = &req->rq_snd_buf; | |
827 | struct rpc_task_setup task_setup_data = { | |
828 | .callback_ops = tk_ops, | |
829 | }; | |
830 | ||
831 | dprintk("RPC: rpc_run_bc_task req= %p\n", req); | |
832 | /* | |
833 | * Create an rpc_task to send the data | |
834 | */ | |
835 | task = rpc_new_task(&task_setup_data); | |
19445b99 | 836 | if (IS_ERR(task)) { |
55ae1aab RL |
837 | xprt_free_bc_request(req); |
838 | goto out; | |
839 | } | |
840 | task->tk_rqstp = req; | |
841 | ||
842 | /* | |
843 | * Set up the xdr_buf length. | |
844 | * This also indicates that the buffer is XDR encoded already. | |
845 | */ | |
846 | xbufp->len = xbufp->head[0].iov_len + xbufp->page_len + | |
847 | xbufp->tail[0].iov_len; | |
848 | ||
849 | task->tk_action = call_bc_transmit; | |
850 | atomic_inc(&task->tk_count); | |
851 | BUG_ON(atomic_read(&task->tk_count) != 2); | |
852 | rpc_execute(task); | |
853 | ||
854 | out: | |
855 | dprintk("RPC: rpc_run_bc_task: task= %p\n", task); | |
856 | return task; | |
857 | } | |
9e00abc3 | 858 | #endif /* CONFIG_SUNRPC_BACKCHANNEL */ |
55ae1aab | 859 | |
77de2c59 TM |
860 | void |
861 | rpc_call_start(struct rpc_task *task) | |
862 | { | |
863 | task->tk_action = call_start; | |
864 | } | |
865 | EXPORT_SYMBOL_GPL(rpc_call_start); | |
866 | ||
ed39440a CL |
867 | /** |
868 | * rpc_peeraddr - extract remote peer address from clnt's xprt | |
869 | * @clnt: RPC client structure | |
870 | * @buf: target buffer | |
65b6e42c | 871 | * @bufsize: length of target buffer |
ed39440a CL |
872 | * |
873 | * Returns the number of bytes that are actually in the stored address. | |
874 | */ | |
875 | size_t rpc_peeraddr(struct rpc_clnt *clnt, struct sockaddr *buf, size_t bufsize) | |
876 | { | |
877 | size_t bytes; | |
2446ab60 TM |
878 | struct rpc_xprt *xprt; |
879 | ||
880 | rcu_read_lock(); | |
881 | xprt = rcu_dereference(clnt->cl_xprt); | |
ed39440a | 882 | |
2446ab60 | 883 | bytes = xprt->addrlen; |
ed39440a CL |
884 | if (bytes > bufsize) |
885 | bytes = bufsize; | |
2446ab60 TM |
886 | memcpy(buf, &xprt->addr, bytes); |
887 | rcu_read_unlock(); | |
888 | ||
889 | return bytes; | |
ed39440a | 890 | } |
b86acd50 | 891 | EXPORT_SYMBOL_GPL(rpc_peeraddr); |
ed39440a | 892 | |
f425eba4 CL |
893 | /** |
894 | * rpc_peeraddr2str - return remote peer address in printable format | |
895 | * @clnt: RPC client structure | |
896 | * @format: address format | |
897 | * | |
2446ab60 TM |
898 | * NB: the lifetime of the memory referenced by the returned pointer is |
899 | * the same as the rpc_xprt itself. As long as the caller uses this | |
900 | * pointer, it must hold the RCU read lock. | |
f425eba4 | 901 | */ |
b454ae90 CL |
902 | const char *rpc_peeraddr2str(struct rpc_clnt *clnt, |
903 | enum rpc_display_format_t format) | |
f425eba4 | 904 | { |
2446ab60 TM |
905 | struct rpc_xprt *xprt; |
906 | ||
907 | xprt = rcu_dereference(clnt->cl_xprt); | |
7559c7a2 CL |
908 | |
909 | if (xprt->address_strings[format] != NULL) | |
910 | return xprt->address_strings[format]; | |
911 | else | |
912 | return "unprintable"; | |
f425eba4 | 913 | } |
b86acd50 | 914 | EXPORT_SYMBOL_GPL(rpc_peeraddr2str); |
f425eba4 | 915 | |
2e738fdc CL |
916 | static const struct sockaddr_in rpc_inaddr_loopback = { |
917 | .sin_family = AF_INET, | |
918 | .sin_addr.s_addr = htonl(INADDR_ANY), | |
919 | }; | |
920 | ||
921 | static const struct sockaddr_in6 rpc_in6addr_loopback = { | |
922 | .sin6_family = AF_INET6, | |
923 | .sin6_addr = IN6ADDR_ANY_INIT, | |
924 | }; | |
925 | ||
926 | /* | |
927 | * Try a getsockname() on a connected datagram socket. Using a | |
928 | * connected datagram socket prevents leaving a socket in TIME_WAIT. | |
929 | * This conserves the ephemeral port number space. | |
930 | * | |
931 | * Returns zero and fills in "buf" if successful; otherwise, a | |
932 | * negative errno is returned. | |
933 | */ | |
934 | static int rpc_sockname(struct net *net, struct sockaddr *sap, size_t salen, | |
935 | struct sockaddr *buf, int buflen) | |
936 | { | |
937 | struct socket *sock; | |
938 | int err; | |
939 | ||
940 | err = __sock_create(net, sap->sa_family, | |
941 | SOCK_DGRAM, IPPROTO_UDP, &sock, 1); | |
942 | if (err < 0) { | |
943 | dprintk("RPC: can't create UDP socket (%d)\n", err); | |
944 | goto out; | |
945 | } | |
946 | ||
947 | switch (sap->sa_family) { | |
948 | case AF_INET: | |
949 | err = kernel_bind(sock, | |
950 | (struct sockaddr *)&rpc_inaddr_loopback, | |
951 | sizeof(rpc_inaddr_loopback)); | |
952 | break; | |
953 | case AF_INET6: | |
954 | err = kernel_bind(sock, | |
955 | (struct sockaddr *)&rpc_in6addr_loopback, | |
956 | sizeof(rpc_in6addr_loopback)); | |
957 | break; | |
958 | default: | |
959 | err = -EAFNOSUPPORT; | |
960 | goto out; | |
961 | } | |
962 | if (err < 0) { | |
963 | dprintk("RPC: can't bind UDP socket (%d)\n", err); | |
964 | goto out_release; | |
965 | } | |
966 | ||
967 | err = kernel_connect(sock, sap, salen, 0); | |
968 | if (err < 0) { | |
969 | dprintk("RPC: can't connect UDP socket (%d)\n", err); | |
970 | goto out_release; | |
971 | } | |
972 | ||
973 | err = kernel_getsockname(sock, buf, &buflen); | |
974 | if (err < 0) { | |
975 | dprintk("RPC: getsockname failed (%d)\n", err); | |
976 | goto out_release; | |
977 | } | |
978 | ||
979 | err = 0; | |
980 | if (buf->sa_family == AF_INET6) { | |
981 | struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)buf; | |
982 | sin6->sin6_scope_id = 0; | |
983 | } | |
984 | dprintk("RPC: %s succeeded\n", __func__); | |
985 | ||
986 | out_release: | |
987 | sock_release(sock); | |
988 | out: | |
989 | return err; | |
990 | } | |
991 | ||
992 | /* | |
993 | * Scraping a connected socket failed, so we don't have a useable | |
994 | * local address. Fallback: generate an address that will prevent | |
995 | * the server from calling us back. | |
996 | * | |
997 | * Returns zero and fills in "buf" if successful; otherwise, a | |
998 | * negative errno is returned. | |
999 | */ | |
1000 | static int rpc_anyaddr(int family, struct sockaddr *buf, size_t buflen) | |
1001 | { | |
1002 | switch (family) { | |
1003 | case AF_INET: | |
1004 | if (buflen < sizeof(rpc_inaddr_loopback)) | |
1005 | return -EINVAL; | |
1006 | memcpy(buf, &rpc_inaddr_loopback, | |
1007 | sizeof(rpc_inaddr_loopback)); | |
1008 | break; | |
1009 | case AF_INET6: | |
1010 | if (buflen < sizeof(rpc_in6addr_loopback)) | |
1011 | return -EINVAL; | |
1012 | memcpy(buf, &rpc_in6addr_loopback, | |
1013 | sizeof(rpc_in6addr_loopback)); | |
1014 | default: | |
1015 | dprintk("RPC: %s: address family not supported\n", | |
1016 | __func__); | |
1017 | return -EAFNOSUPPORT; | |
1018 | } | |
1019 | dprintk("RPC: %s: succeeded\n", __func__); | |
1020 | return 0; | |
1021 | } | |
1022 | ||
1023 | /** | |
1024 | * rpc_localaddr - discover local endpoint address for an RPC client | |
1025 | * @clnt: RPC client structure | |
1026 | * @buf: target buffer | |
1027 | * @buflen: size of target buffer, in bytes | |
1028 | * | |
1029 | * Returns zero and fills in "buf" and "buflen" if successful; | |
1030 | * otherwise, a negative errno is returned. | |
1031 | * | |
1032 | * This works even if the underlying transport is not currently connected, | |
1033 | * or if the upper layer never previously provided a source address. | |
1034 | * | |
1035 | * The result of this function call is transient: multiple calls in | |
1036 | * succession may give different results, depending on how local | |
1037 | * networking configuration changes over time. | |
1038 | */ | |
1039 | int rpc_localaddr(struct rpc_clnt *clnt, struct sockaddr *buf, size_t buflen) | |
1040 | { | |
1041 | struct sockaddr_storage address; | |
1042 | struct sockaddr *sap = (struct sockaddr *)&address; | |
1043 | struct rpc_xprt *xprt; | |
1044 | struct net *net; | |
1045 | size_t salen; | |
1046 | int err; | |
1047 | ||
1048 | rcu_read_lock(); | |
1049 | xprt = rcu_dereference(clnt->cl_xprt); | |
1050 | salen = xprt->addrlen; | |
1051 | memcpy(sap, &xprt->addr, salen); | |
1052 | net = get_net(xprt->xprt_net); | |
1053 | rcu_read_unlock(); | |
1054 | ||
1055 | rpc_set_port(sap, 0); | |
1056 | err = rpc_sockname(net, sap, salen, buf, buflen); | |
1057 | put_net(net); | |
1058 | if (err != 0) | |
1059 | /* Couldn't discover local address, return ANYADDR */ | |
1060 | return rpc_anyaddr(sap->sa_family, buf, buflen); | |
1061 | return 0; | |
1062 | } | |
1063 | EXPORT_SYMBOL_GPL(rpc_localaddr); | |
1064 | ||
1da177e4 LT |
1065 | void |
1066 | rpc_setbufsize(struct rpc_clnt *clnt, unsigned int sndsize, unsigned int rcvsize) | |
1067 | { | |
2446ab60 TM |
1068 | struct rpc_xprt *xprt; |
1069 | ||
1070 | rcu_read_lock(); | |
1071 | xprt = rcu_dereference(clnt->cl_xprt); | |
470056c2 CL |
1072 | if (xprt->ops->set_buffer_size) |
1073 | xprt->ops->set_buffer_size(xprt, sndsize, rcvsize); | |
2446ab60 | 1074 | rcu_read_unlock(); |
1da177e4 | 1075 | } |
e8914c65 | 1076 | EXPORT_SYMBOL_GPL(rpc_setbufsize); |
1da177e4 | 1077 | |
2446ab60 TM |
1078 | /** |
1079 | * rpc_protocol - Get transport protocol number for an RPC client | |
1080 | * @clnt: RPC client to query | |
1081 | * | |
1082 | */ | |
1083 | int rpc_protocol(struct rpc_clnt *clnt) | |
1084 | { | |
1085 | int protocol; | |
1086 | ||
1087 | rcu_read_lock(); | |
1088 | protocol = rcu_dereference(clnt->cl_xprt)->prot; | |
1089 | rcu_read_unlock(); | |
1090 | return protocol; | |
1091 | } | |
1092 | EXPORT_SYMBOL_GPL(rpc_protocol); | |
1093 | ||
1094 | /** | |
1095 | * rpc_net_ns - Get the network namespace for this RPC client | |
1096 | * @clnt: RPC client to query | |
1097 | * | |
1098 | */ | |
1099 | struct net *rpc_net_ns(struct rpc_clnt *clnt) | |
1100 | { | |
1101 | struct net *ret; | |
1102 | ||
1103 | rcu_read_lock(); | |
1104 | ret = rcu_dereference(clnt->cl_xprt)->xprt_net; | |
1105 | rcu_read_unlock(); | |
1106 | return ret; | |
1107 | } | |
1108 | EXPORT_SYMBOL_GPL(rpc_net_ns); | |
1109 | ||
1110 | /** | |
1111 | * rpc_max_payload - Get maximum payload size for a transport, in bytes | |
1112 | * @clnt: RPC client to query | |
1da177e4 LT |
1113 | * |
1114 | * For stream transports, this is one RPC record fragment (see RFC | |
1115 | * 1831), as we don't support multi-record requests yet. For datagram | |
1116 | * transports, this is the size of an IP packet minus the IP, UDP, and | |
1117 | * RPC header sizes. | |
1118 | */ | |
1119 | size_t rpc_max_payload(struct rpc_clnt *clnt) | |
1120 | { | |
2446ab60 TM |
1121 | size_t ret; |
1122 | ||
1123 | rcu_read_lock(); | |
1124 | ret = rcu_dereference(clnt->cl_xprt)->max_payload; | |
1125 | rcu_read_unlock(); | |
1126 | return ret; | |
1da177e4 | 1127 | } |
b86acd50 | 1128 | EXPORT_SYMBOL_GPL(rpc_max_payload); |
1da177e4 | 1129 | |
35f5a422 CL |
1130 | /** |
1131 | * rpc_force_rebind - force transport to check that remote port is unchanged | |
1132 | * @clnt: client to rebind | |
1133 | * | |
1134 | */ | |
1135 | void rpc_force_rebind(struct rpc_clnt *clnt) | |
1136 | { | |
2446ab60 TM |
1137 | if (clnt->cl_autobind) { |
1138 | rcu_read_lock(); | |
1139 | xprt_clear_bound(rcu_dereference(clnt->cl_xprt)); | |
1140 | rcu_read_unlock(); | |
1141 | } | |
35f5a422 | 1142 | } |
b86acd50 | 1143 | EXPORT_SYMBOL_GPL(rpc_force_rebind); |
35f5a422 | 1144 | |
aae2006e AA |
1145 | /* |
1146 | * Restart an (async) RPC call from the call_prepare state. | |
1147 | * Usually called from within the exit handler. | |
1148 | */ | |
f1f88fc7 | 1149 | int |
aae2006e AA |
1150 | rpc_restart_call_prepare(struct rpc_task *task) |
1151 | { | |
1152 | if (RPC_ASSASSINATED(task)) | |
f1f88fc7 | 1153 | return 0; |
d00c5d43 TM |
1154 | task->tk_action = call_start; |
1155 | if (task->tk_ops->rpc_call_prepare != NULL) | |
1156 | task->tk_action = rpc_prepare_task; | |
f1f88fc7 | 1157 | return 1; |
aae2006e AA |
1158 | } |
1159 | EXPORT_SYMBOL_GPL(rpc_restart_call_prepare); | |
1160 | ||
1da177e4 LT |
1161 | /* |
1162 | * Restart an (async) RPC call. Usually called from within the | |
1163 | * exit handler. | |
1164 | */ | |
f1f88fc7 | 1165 | int |
1da177e4 LT |
1166 | rpc_restart_call(struct rpc_task *task) |
1167 | { | |
1168 | if (RPC_ASSASSINATED(task)) | |
f1f88fc7 | 1169 | return 0; |
1da177e4 | 1170 | task->tk_action = call_start; |
f1f88fc7 | 1171 | return 1; |
1da177e4 | 1172 | } |
e8914c65 | 1173 | EXPORT_SYMBOL_GPL(rpc_restart_call); |
1da177e4 | 1174 | |
3748f1e4 CL |
1175 | #ifdef RPC_DEBUG |
1176 | static const char *rpc_proc_name(const struct rpc_task *task) | |
1177 | { | |
1178 | const struct rpc_procinfo *proc = task->tk_msg.rpc_proc; | |
1179 | ||
1180 | if (proc) { | |
1181 | if (proc->p_name) | |
1182 | return proc->p_name; | |
1183 | else | |
1184 | return "NULL"; | |
1185 | } else | |
1186 | return "no proc"; | |
1187 | } | |
1188 | #endif | |
1189 | ||
1da177e4 LT |
1190 | /* |
1191 | * 0. Initial state | |
1192 | * | |
1193 | * Other FSM states can be visited zero or more times, but | |
1194 | * this state is visited exactly once for each RPC. | |
1195 | */ | |
1196 | static void | |
1197 | call_start(struct rpc_task *task) | |
1198 | { | |
1199 | struct rpc_clnt *clnt = task->tk_client; | |
1200 | ||
3748f1e4 | 1201 | dprintk("RPC: %5u call_start %s%d proc %s (%s)\n", task->tk_pid, |
46121cf7 | 1202 | clnt->cl_protname, clnt->cl_vers, |
3748f1e4 | 1203 | rpc_proc_name(task), |
46121cf7 | 1204 | (RPC_IS_ASYNC(task) ? "async" : "sync")); |
1da177e4 LT |
1205 | |
1206 | /* Increment call count */ | |
1207 | task->tk_msg.rpc_proc->p_count++; | |
1208 | clnt->cl_stats->rpccnt++; | |
1209 | task->tk_action = call_reserve; | |
1210 | } | |
1211 | ||
1212 | /* | |
1213 | * 1. Reserve an RPC call slot | |
1214 | */ | |
1215 | static void | |
1216 | call_reserve(struct rpc_task *task) | |
1217 | { | |
46121cf7 | 1218 | dprint_status(task); |
1da177e4 | 1219 | |
1da177e4 LT |
1220 | task->tk_status = 0; |
1221 | task->tk_action = call_reserveresult; | |
1222 | xprt_reserve(task); | |
1223 | } | |
1224 | ||
1225 | /* | |
1226 | * 1b. Grok the result of xprt_reserve() | |
1227 | */ | |
1228 | static void | |
1229 | call_reserveresult(struct rpc_task *task) | |
1230 | { | |
1231 | int status = task->tk_status; | |
1232 | ||
46121cf7 | 1233 | dprint_status(task); |
1da177e4 LT |
1234 | |
1235 | /* | |
1236 | * After a call to xprt_reserve(), we must have either | |
1237 | * a request slot or else an error status. | |
1238 | */ | |
1239 | task->tk_status = 0; | |
1240 | if (status >= 0) { | |
1241 | if (task->tk_rqstp) { | |
f2d47d02 | 1242 | task->tk_action = call_refresh; |
1da177e4 LT |
1243 | return; |
1244 | } | |
1245 | ||
1246 | printk(KERN_ERR "%s: status=%d, but no request slot, exiting\n", | |
0dc47877 | 1247 | __func__, status); |
1da177e4 LT |
1248 | rpc_exit(task, -EIO); |
1249 | return; | |
1250 | } | |
1251 | ||
1252 | /* | |
1253 | * Even though there was an error, we may have acquired | |
1254 | * a request slot somehow. Make sure not to leak it. | |
1255 | */ | |
1256 | if (task->tk_rqstp) { | |
1257 | printk(KERN_ERR "%s: status=%d, request allocated anyway\n", | |
0dc47877 | 1258 | __func__, status); |
1da177e4 LT |
1259 | xprt_release(task); |
1260 | } | |
1261 | ||
1262 | switch (status) { | |
1263 | case -EAGAIN: /* woken up; retry */ | |
1264 | task->tk_action = call_reserve; | |
1265 | return; | |
1266 | case -EIO: /* probably a shutdown */ | |
1267 | break; | |
1268 | default: | |
1269 | printk(KERN_ERR "%s: unrecognized error %d, exiting\n", | |
0dc47877 | 1270 | __func__, status); |
1da177e4 LT |
1271 | break; |
1272 | } | |
1273 | rpc_exit(task, status); | |
1274 | } | |
1275 | ||
1276 | /* | |
55576244 BF |
1277 | * 2. Bind and/or refresh the credentials |
1278 | */ | |
1279 | static void | |
1280 | call_refresh(struct rpc_task *task) | |
1281 | { | |
1282 | dprint_status(task); | |
1283 | ||
1284 | task->tk_action = call_refreshresult; | |
1285 | task->tk_status = 0; | |
1286 | task->tk_client->cl_stats->rpcauthrefresh++; | |
1287 | rpcauth_refreshcred(task); | |
1288 | } | |
1289 | ||
1290 | /* | |
1291 | * 2a. Process the results of a credential refresh | |
1292 | */ | |
1293 | static void | |
1294 | call_refreshresult(struct rpc_task *task) | |
1295 | { | |
1296 | int status = task->tk_status; | |
1297 | ||
1298 | dprint_status(task); | |
1299 | ||
1300 | task->tk_status = 0; | |
5fc43978 | 1301 | task->tk_action = call_refresh; |
55576244 | 1302 | switch (status) { |
5fc43978 TM |
1303 | case 0: |
1304 | if (rpcauth_uptodatecred(task)) | |
1305 | task->tk_action = call_allocate; | |
55576244 BF |
1306 | return; |
1307 | case -ETIMEDOUT: | |
1308 | rpc_delay(task, 3*HZ); | |
5fc43978 TM |
1309 | case -EAGAIN: |
1310 | status = -EACCES; | |
1311 | if (!task->tk_cred_retry) | |
1312 | break; | |
1313 | task->tk_cred_retry--; | |
1314 | dprintk("RPC: %5u %s: retry refresh creds\n", | |
1315 | task->tk_pid, __func__); | |
1316 | return; | |
55576244 | 1317 | } |
5fc43978 TM |
1318 | dprintk("RPC: %5u %s: refresh creds failed with error %d\n", |
1319 | task->tk_pid, __func__, status); | |
1320 | rpc_exit(task, status); | |
55576244 BF |
1321 | } |
1322 | ||
1323 | /* | |
1324 | * 2b. Allocate the buffer. For details, see sched.c:rpc_malloc. | |
02107148 | 1325 | * (Note: buffer memory is freed in xprt_release). |
1da177e4 LT |
1326 | */ |
1327 | static void | |
1328 | call_allocate(struct rpc_task *task) | |
1329 | { | |
f2d47d02 | 1330 | unsigned int slack = task->tk_rqstp->rq_cred->cr_auth->au_cslack; |
02107148 CL |
1331 | struct rpc_rqst *req = task->tk_rqstp; |
1332 | struct rpc_xprt *xprt = task->tk_xprt; | |
2bea90d4 | 1333 | struct rpc_procinfo *proc = task->tk_msg.rpc_proc; |
1da177e4 | 1334 | |
46121cf7 CL |
1335 | dprint_status(task); |
1336 | ||
2bea90d4 | 1337 | task->tk_status = 0; |
f2d47d02 | 1338 | task->tk_action = call_bind; |
2bea90d4 | 1339 | |
02107148 | 1340 | if (req->rq_buffer) |
1da177e4 LT |
1341 | return; |
1342 | ||
2bea90d4 CL |
1343 | if (proc->p_proc != 0) { |
1344 | BUG_ON(proc->p_arglen == 0); | |
1345 | if (proc->p_decode != NULL) | |
1346 | BUG_ON(proc->p_replen == 0); | |
1347 | } | |
1da177e4 | 1348 | |
2bea90d4 CL |
1349 | /* |
1350 | * Calculate the size (in quads) of the RPC call | |
1351 | * and reply headers, and convert both values | |
1352 | * to byte sizes. | |
1353 | */ | |
1354 | req->rq_callsize = RPC_CALLHDRSIZE + (slack << 1) + proc->p_arglen; | |
1355 | req->rq_callsize <<= 2; | |
1356 | req->rq_rcvsize = RPC_REPHDRSIZE + slack + proc->p_replen; | |
1357 | req->rq_rcvsize <<= 2; | |
1358 | ||
c5a4dd8b CL |
1359 | req->rq_buffer = xprt->ops->buf_alloc(task, |
1360 | req->rq_callsize + req->rq_rcvsize); | |
2bea90d4 | 1361 | if (req->rq_buffer != NULL) |
1da177e4 | 1362 | return; |
46121cf7 CL |
1363 | |
1364 | dprintk("RPC: %5u rpc_buffer allocation failed\n", task->tk_pid); | |
1da177e4 | 1365 | |
5afa9133 | 1366 | if (RPC_IS_ASYNC(task) || !fatal_signal_pending(current)) { |
b6e9c713 | 1367 | task->tk_action = call_allocate; |
1da177e4 LT |
1368 | rpc_delay(task, HZ>>4); |
1369 | return; | |
1370 | } | |
1371 | ||
1372 | rpc_exit(task, -ERESTARTSYS); | |
1373 | } | |
1374 | ||
940e3318 TM |
1375 | static inline int |
1376 | rpc_task_need_encode(struct rpc_task *task) | |
1377 | { | |
1378 | return task->tk_rqstp->rq_snd_buf.len == 0; | |
1379 | } | |
1380 | ||
1381 | static inline void | |
1382 | rpc_task_force_reencode(struct rpc_task *task) | |
1383 | { | |
1384 | task->tk_rqstp->rq_snd_buf.len = 0; | |
2574cc9f | 1385 | task->tk_rqstp->rq_bytes_sent = 0; |
940e3318 TM |
1386 | } |
1387 | ||
2bea90d4 CL |
1388 | static inline void |
1389 | rpc_xdr_buf_init(struct xdr_buf *buf, void *start, size_t len) | |
1390 | { | |
1391 | buf->head[0].iov_base = start; | |
1392 | buf->head[0].iov_len = len; | |
1393 | buf->tail[0].iov_len = 0; | |
1394 | buf->page_len = 0; | |
4f22ccc3 | 1395 | buf->flags = 0; |
2bea90d4 CL |
1396 | buf->len = 0; |
1397 | buf->buflen = len; | |
1398 | } | |
1399 | ||
1da177e4 LT |
1400 | /* |
1401 | * 3. Encode arguments of an RPC call | |
1402 | */ | |
1403 | static void | |
b0e1c57e | 1404 | rpc_xdr_encode(struct rpc_task *task) |
1da177e4 | 1405 | { |
1da177e4 | 1406 | struct rpc_rqst *req = task->tk_rqstp; |
9f06c719 | 1407 | kxdreproc_t encode; |
d8ed029d | 1408 | __be32 *p; |
1da177e4 | 1409 | |
46121cf7 | 1410 | dprint_status(task); |
1da177e4 | 1411 | |
2bea90d4 CL |
1412 | rpc_xdr_buf_init(&req->rq_snd_buf, |
1413 | req->rq_buffer, | |
1414 | req->rq_callsize); | |
1415 | rpc_xdr_buf_init(&req->rq_rcv_buf, | |
1416 | (char *)req->rq_buffer + req->rq_callsize, | |
1417 | req->rq_rcvsize); | |
1da177e4 | 1418 | |
b0e1c57e CL |
1419 | p = rpc_encode_header(task); |
1420 | if (p == NULL) { | |
1421 | printk(KERN_INFO "RPC: couldn't encode RPC header, exit EIO\n"); | |
1da177e4 LT |
1422 | rpc_exit(task, -EIO); |
1423 | return; | |
1424 | } | |
b0e1c57e CL |
1425 | |
1426 | encode = task->tk_msg.rpc_proc->p_encode; | |
f3680312 BF |
1427 | if (encode == NULL) |
1428 | return; | |
1429 | ||
1430 | task->tk_status = rpcauth_wrap_req(task, encode, req, p, | |
1431 | task->tk_msg.rpc_argp); | |
1da177e4 LT |
1432 | } |
1433 | ||
1434 | /* | |
1435 | * 4. Get the server port number if not yet set | |
1436 | */ | |
1437 | static void | |
1438 | call_bind(struct rpc_task *task) | |
1439 | { | |
ec739ef0 | 1440 | struct rpc_xprt *xprt = task->tk_xprt; |
1da177e4 | 1441 | |
46121cf7 | 1442 | dprint_status(task); |
1da177e4 | 1443 | |
da351878 | 1444 | task->tk_action = call_connect; |
ec739ef0 | 1445 | if (!xprt_bound(xprt)) { |
da351878 | 1446 | task->tk_action = call_bind_status; |
ec739ef0 | 1447 | task->tk_timeout = xprt->bind_timeout; |
bbf7c1dd | 1448 | xprt->ops->rpcbind(task); |
1da177e4 LT |
1449 | } |
1450 | } | |
1451 | ||
1452 | /* | |
da351878 CL |
1453 | * 4a. Sort out bind result |
1454 | */ | |
1455 | static void | |
1456 | call_bind_status(struct rpc_task *task) | |
1457 | { | |
906462af | 1458 | int status = -EIO; |
da351878 CL |
1459 | |
1460 | if (task->tk_status >= 0) { | |
46121cf7 | 1461 | dprint_status(task); |
da351878 CL |
1462 | task->tk_status = 0; |
1463 | task->tk_action = call_connect; | |
1464 | return; | |
1465 | } | |
1466 | ||
5753cba1 | 1467 | trace_rpc_bind_status(task); |
da351878 | 1468 | switch (task->tk_status) { |
381ba74a TM |
1469 | case -ENOMEM: |
1470 | dprintk("RPC: %5u rpcbind out of memory\n", task->tk_pid); | |
1471 | rpc_delay(task, HZ >> 2); | |
2429cbf6 | 1472 | goto retry_timeout; |
da351878 | 1473 | case -EACCES: |
46121cf7 CL |
1474 | dprintk("RPC: %5u remote rpcbind: RPC program/version " |
1475 | "unavailable\n", task->tk_pid); | |
b79dc8ce CL |
1476 | /* fail immediately if this is an RPC ping */ |
1477 | if (task->tk_msg.rpc_proc->p_proc == 0) { | |
1478 | status = -EOPNOTSUPP; | |
1479 | break; | |
1480 | } | |
0b760113 TM |
1481 | if (task->tk_rebind_retry == 0) |
1482 | break; | |
1483 | task->tk_rebind_retry--; | |
ea635a51 | 1484 | rpc_delay(task, 3*HZ); |
da45828e | 1485 | goto retry_timeout; |
da351878 | 1486 | case -ETIMEDOUT: |
46121cf7 | 1487 | dprintk("RPC: %5u rpcbind request timed out\n", |
da351878 | 1488 | task->tk_pid); |
da45828e | 1489 | goto retry_timeout; |
da351878 | 1490 | case -EPFNOSUPPORT: |
906462af | 1491 | /* server doesn't support any rpcbind version we know of */ |
012da158 | 1492 | dprintk("RPC: %5u unrecognized remote rpcbind service\n", |
da351878 CL |
1493 | task->tk_pid); |
1494 | break; | |
1495 | case -EPROTONOSUPPORT: | |
00a6e7bb | 1496 | dprintk("RPC: %5u remote rpcbind version unavailable, retrying\n", |
da351878 | 1497 | task->tk_pid); |
00a6e7bb CL |
1498 | task->tk_status = 0; |
1499 | task->tk_action = call_bind; | |
1500 | return; | |
012da158 CL |
1501 | case -ECONNREFUSED: /* connection problems */ |
1502 | case -ECONNRESET: | |
1503 | case -ENOTCONN: | |
1504 | case -EHOSTDOWN: | |
1505 | case -EHOSTUNREACH: | |
1506 | case -ENETUNREACH: | |
1507 | case -EPIPE: | |
1508 | dprintk("RPC: %5u remote rpcbind unreachable: %d\n", | |
1509 | task->tk_pid, task->tk_status); | |
1510 | if (!RPC_IS_SOFTCONN(task)) { | |
1511 | rpc_delay(task, 5*HZ); | |
1512 | goto retry_timeout; | |
1513 | } | |
1514 | status = task->tk_status; | |
1515 | break; | |
da351878 | 1516 | default: |
46121cf7 | 1517 | dprintk("RPC: %5u unrecognized rpcbind error (%d)\n", |
da351878 | 1518 | task->tk_pid, -task->tk_status); |
da351878 CL |
1519 | } |
1520 | ||
1521 | rpc_exit(task, status); | |
1522 | return; | |
1523 | ||
da45828e TM |
1524 | retry_timeout: |
1525 | task->tk_action = call_timeout; | |
da351878 CL |
1526 | } |
1527 | ||
1528 | /* | |
1529 | * 4b. Connect to the RPC server | |
1da177e4 LT |
1530 | */ |
1531 | static void | |
1532 | call_connect(struct rpc_task *task) | |
1533 | { | |
da351878 | 1534 | struct rpc_xprt *xprt = task->tk_xprt; |
1da177e4 | 1535 | |
46121cf7 | 1536 | dprintk("RPC: %5u call_connect xprt %p %s connected\n", |
da351878 CL |
1537 | task->tk_pid, xprt, |
1538 | (xprt_connected(xprt) ? "is" : "is not")); | |
1da177e4 | 1539 | |
da351878 CL |
1540 | task->tk_action = call_transmit; |
1541 | if (!xprt_connected(xprt)) { | |
1542 | task->tk_action = call_connect_status; | |
1543 | if (task->tk_status < 0) | |
1544 | return; | |
1545 | xprt_connect(task); | |
1da177e4 | 1546 | } |
1da177e4 LT |
1547 | } |
1548 | ||
1549 | /* | |
da351878 | 1550 | * 4c. Sort out connect result |
1da177e4 LT |
1551 | */ |
1552 | static void | |
1553 | call_connect_status(struct rpc_task *task) | |
1554 | { | |
1555 | struct rpc_clnt *clnt = task->tk_client; | |
1556 | int status = task->tk_status; | |
1557 | ||
46121cf7 | 1558 | dprint_status(task); |
da351878 | 1559 | |
1da177e4 | 1560 | task->tk_status = 0; |
2a491991 | 1561 | if (status >= 0 || status == -EAGAIN) { |
1da177e4 LT |
1562 | clnt->cl_stats->netreconn++; |
1563 | task->tk_action = call_transmit; | |
1564 | return; | |
1565 | } | |
1566 | ||
5753cba1 | 1567 | trace_rpc_connect_status(task, status); |
1da177e4 | 1568 | switch (status) { |
da45828e TM |
1569 | /* if soft mounted, test if we've timed out */ |
1570 | case -ETIMEDOUT: | |
1571 | task->tk_action = call_timeout; | |
2a491991 TM |
1572 | break; |
1573 | default: | |
1574 | rpc_exit(task, -EIO); | |
1da177e4 LT |
1575 | } |
1576 | } | |
1577 | ||
1578 | /* | |
1579 | * 5. Transmit the RPC request, and wait for reply | |
1580 | */ | |
1581 | static void | |
1582 | call_transmit(struct rpc_task *task) | |
1583 | { | |
46121cf7 | 1584 | dprint_status(task); |
1da177e4 LT |
1585 | |
1586 | task->tk_action = call_status; | |
1587 | if (task->tk_status < 0) | |
1588 | return; | |
1589 | task->tk_status = xprt_prepare_transmit(task); | |
1590 | if (task->tk_status != 0) | |
1591 | return; | |
e0ab53de | 1592 | task->tk_action = call_transmit_status; |
1da177e4 | 1593 | /* Encode here so that rpcsec_gss can use correct sequence number. */ |
940e3318 | 1594 | if (rpc_task_need_encode(task)) { |
e0ab53de | 1595 | BUG_ON(task->tk_rqstp->rq_bytes_sent != 0); |
b0e1c57e | 1596 | rpc_xdr_encode(task); |
5e5ce5be | 1597 | /* Did the encode result in an error condition? */ |
8b39f2b4 TM |
1598 | if (task->tk_status != 0) { |
1599 | /* Was the error nonfatal? */ | |
1600 | if (task->tk_status == -EAGAIN) | |
1601 | rpc_delay(task, HZ >> 4); | |
1602 | else | |
1603 | rpc_exit(task, task->tk_status); | |
e0ab53de | 1604 | return; |
8b39f2b4 | 1605 | } |
5e5ce5be | 1606 | } |
1da177e4 LT |
1607 | xprt_transmit(task); |
1608 | if (task->tk_status < 0) | |
1609 | return; | |
e0ab53de TM |
1610 | /* |
1611 | * On success, ensure that we call xprt_end_transmit() before sleeping | |
1612 | * in order to allow access to the socket to other RPC requests. | |
1613 | */ | |
1614 | call_transmit_status(task); | |
55ae1aab | 1615 | if (rpc_reply_expected(task)) |
e0ab53de TM |
1616 | return; |
1617 | task->tk_action = rpc_exit_task; | |
fda13939 | 1618 | rpc_wake_up_queued_task(&task->tk_xprt->pending, task); |
e0ab53de TM |
1619 | } |
1620 | ||
1621 | /* | |
1622 | * 5a. Handle cleanup after a transmission | |
1623 | */ | |
1624 | static void | |
1625 | call_transmit_status(struct rpc_task *task) | |
1626 | { | |
1627 | task->tk_action = call_status; | |
206a134b CL |
1628 | |
1629 | /* | |
1630 | * Common case: success. Force the compiler to put this | |
1631 | * test first. | |
1632 | */ | |
1633 | if (task->tk_status == 0) { | |
1634 | xprt_end_transmit(task); | |
1635 | rpc_task_force_reencode(task); | |
1636 | return; | |
1637 | } | |
1638 | ||
15f081ca TM |
1639 | switch (task->tk_status) { |
1640 | case -EAGAIN: | |
1641 | break; | |
1642 | default: | |
206a134b | 1643 | dprint_status(task); |
15f081ca | 1644 | xprt_end_transmit(task); |
09a21c41 CL |
1645 | rpc_task_force_reencode(task); |
1646 | break; | |
15f081ca TM |
1647 | /* |
1648 | * Special cases: if we've been waiting on the | |
1649 | * socket's write_space() callback, or if the | |
1650 | * socket just returned a connection error, | |
1651 | * then hold onto the transport lock. | |
1652 | */ | |
1653 | case -ECONNREFUSED: | |
15f081ca TM |
1654 | case -EHOSTDOWN: |
1655 | case -EHOSTUNREACH: | |
1656 | case -ENETUNREACH: | |
09a21c41 CL |
1657 | if (RPC_IS_SOFTCONN(task)) { |
1658 | xprt_end_transmit(task); | |
1659 | rpc_exit(task, task->tk_status); | |
1660 | break; | |
1661 | } | |
1662 | case -ECONNRESET: | |
1663 | case -ENOTCONN: | |
c8485e4d | 1664 | case -EPIPE: |
15f081ca TM |
1665 | rpc_task_force_reencode(task); |
1666 | } | |
1da177e4 LT |
1667 | } |
1668 | ||
9e00abc3 | 1669 | #if defined(CONFIG_SUNRPC_BACKCHANNEL) |
55ae1aab RL |
1670 | /* |
1671 | * 5b. Send the backchannel RPC reply. On error, drop the reply. In | |
1672 | * addition, disconnect on connectivity errors. | |
1673 | */ | |
1674 | static void | |
1675 | call_bc_transmit(struct rpc_task *task) | |
1676 | { | |
1677 | struct rpc_rqst *req = task->tk_rqstp; | |
1678 | ||
1679 | BUG_ON(task->tk_status != 0); | |
1680 | task->tk_status = xprt_prepare_transmit(task); | |
1681 | if (task->tk_status == -EAGAIN) { | |
1682 | /* | |
1683 | * Could not reserve the transport. Try again after the | |
1684 | * transport is released. | |
1685 | */ | |
1686 | task->tk_status = 0; | |
1687 | task->tk_action = call_bc_transmit; | |
1688 | return; | |
1689 | } | |
1690 | ||
1691 | task->tk_action = rpc_exit_task; | |
1692 | if (task->tk_status < 0) { | |
1693 | printk(KERN_NOTICE "RPC: Could not send backchannel reply " | |
1694 | "error: %d\n", task->tk_status); | |
1695 | return; | |
1696 | } | |
1697 | ||
1698 | xprt_transmit(task); | |
1699 | xprt_end_transmit(task); | |
1700 | dprint_status(task); | |
1701 | switch (task->tk_status) { | |
1702 | case 0: | |
1703 | /* Success */ | |
1704 | break; | |
1705 | case -EHOSTDOWN: | |
1706 | case -EHOSTUNREACH: | |
1707 | case -ENETUNREACH: | |
1708 | case -ETIMEDOUT: | |
1709 | /* | |
1710 | * Problem reaching the server. Disconnect and let the | |
1711 | * forechannel reestablish the connection. The server will | |
1712 | * have to retransmit the backchannel request and we'll | |
1713 | * reprocess it. Since these ops are idempotent, there's no | |
1714 | * need to cache our reply at this time. | |
1715 | */ | |
1716 | printk(KERN_NOTICE "RPC: Could not send backchannel reply " | |
1717 | "error: %d\n", task->tk_status); | |
1718 | xprt_conditional_disconnect(task->tk_xprt, | |
1719 | req->rq_connect_cookie); | |
1720 | break; | |
1721 | default: | |
1722 | /* | |
1723 | * We were unable to reply and will have to drop the | |
1724 | * request. The server should reconnect and retransmit. | |
1725 | */ | |
1726 | BUG_ON(task->tk_status == -EAGAIN); | |
1727 | printk(KERN_NOTICE "RPC: Could not send backchannel reply " | |
1728 | "error: %d\n", task->tk_status); | |
1729 | break; | |
1730 | } | |
1731 | rpc_wake_up_queued_task(&req->rq_xprt->pending, task); | |
1732 | } | |
9e00abc3 | 1733 | #endif /* CONFIG_SUNRPC_BACKCHANNEL */ |
55ae1aab | 1734 | |
1da177e4 LT |
1735 | /* |
1736 | * 6. Sort out the RPC call status | |
1737 | */ | |
1738 | static void | |
1739 | call_status(struct rpc_task *task) | |
1740 | { | |
1741 | struct rpc_clnt *clnt = task->tk_client; | |
1742 | struct rpc_rqst *req = task->tk_rqstp; | |
1743 | int status; | |
1744 | ||
dd2b63d0 RL |
1745 | if (req->rq_reply_bytes_recvd > 0 && !req->rq_bytes_sent) |
1746 | task->tk_status = req->rq_reply_bytes_recvd; | |
1da177e4 | 1747 | |
46121cf7 | 1748 | dprint_status(task); |
1da177e4 LT |
1749 | |
1750 | status = task->tk_status; | |
1751 | if (status >= 0) { | |
1752 | task->tk_action = call_decode; | |
1753 | return; | |
1754 | } | |
1755 | ||
5753cba1 | 1756 | trace_rpc_call_status(task); |
1da177e4 LT |
1757 | task->tk_status = 0; |
1758 | switch(status) { | |
76303992 TM |
1759 | case -EHOSTDOWN: |
1760 | case -EHOSTUNREACH: | |
1761 | case -ENETUNREACH: | |
1762 | /* | |
1763 | * Delay any retries for 3 seconds, then handle as if it | |
1764 | * were a timeout. | |
1765 | */ | |
1766 | rpc_delay(task, 3*HZ); | |
1da177e4 LT |
1767 | case -ETIMEDOUT: |
1768 | task->tk_action = call_timeout; | |
241c39b9 | 1769 | if (task->tk_client->cl_discrtry) |
7c1d71cf TM |
1770 | xprt_conditional_disconnect(task->tk_xprt, |
1771 | req->rq_connect_cookie); | |
1da177e4 | 1772 | break; |
c8485e4d | 1773 | case -ECONNRESET: |
1da177e4 | 1774 | case -ECONNREFUSED: |
35f5a422 | 1775 | rpc_force_rebind(clnt); |
c8485e4d TM |
1776 | rpc_delay(task, 3*HZ); |
1777 | case -EPIPE: | |
1778 | case -ENOTCONN: | |
1da177e4 LT |
1779 | task->tk_action = call_bind; |
1780 | break; | |
1781 | case -EAGAIN: | |
1782 | task->tk_action = call_transmit; | |
1783 | break; | |
1784 | case -EIO: | |
1785 | /* shutdown or soft timeout */ | |
1786 | rpc_exit(task, status); | |
1787 | break; | |
1788 | default: | |
b6b6152c OK |
1789 | if (clnt->cl_chatty) |
1790 | printk("%s: RPC call returned error %d\n", | |
1da177e4 LT |
1791 | clnt->cl_protname, -status); |
1792 | rpc_exit(task, status); | |
1da177e4 LT |
1793 | } |
1794 | } | |
1795 | ||
1796 | /* | |
e0ab53de | 1797 | * 6a. Handle RPC timeout |
1da177e4 LT |
1798 | * We do not release the request slot, so we keep using the |
1799 | * same XID for all retransmits. | |
1800 | */ | |
1801 | static void | |
1802 | call_timeout(struct rpc_task *task) | |
1803 | { | |
1804 | struct rpc_clnt *clnt = task->tk_client; | |
1805 | ||
1806 | if (xprt_adjust_timeout(task->tk_rqstp) == 0) { | |
46121cf7 | 1807 | dprintk("RPC: %5u call_timeout (minor)\n", task->tk_pid); |
1da177e4 LT |
1808 | goto retry; |
1809 | } | |
1810 | ||
46121cf7 | 1811 | dprintk("RPC: %5u call_timeout (major)\n", task->tk_pid); |
ef759a2e CL |
1812 | task->tk_timeouts++; |
1813 | ||
3a28becc CL |
1814 | if (RPC_IS_SOFTCONN(task)) { |
1815 | rpc_exit(task, -ETIMEDOUT); | |
1816 | return; | |
1817 | } | |
1da177e4 | 1818 | if (RPC_IS_SOFT(task)) { |
b6b6152c | 1819 | if (clnt->cl_chatty) |
4e0038b6 | 1820 | rcu_read_lock(); |
b6b6152c | 1821 | printk(KERN_NOTICE "%s: server %s not responding, timed out\n", |
4e0038b6 TM |
1822 | clnt->cl_protname, |
1823 | rcu_dereference(clnt->cl_xprt)->servername); | |
1824 | rcu_read_unlock(); | |
7494d00c TM |
1825 | if (task->tk_flags & RPC_TASK_TIMEOUT) |
1826 | rpc_exit(task, -ETIMEDOUT); | |
1827 | else | |
1828 | rpc_exit(task, -EIO); | |
1da177e4 LT |
1829 | return; |
1830 | } | |
1831 | ||
f518e35a | 1832 | if (!(task->tk_flags & RPC_CALL_MAJORSEEN)) { |
1da177e4 | 1833 | task->tk_flags |= RPC_CALL_MAJORSEEN; |
4e0038b6 TM |
1834 | if (clnt->cl_chatty) { |
1835 | rcu_read_lock(); | |
b6b6152c | 1836 | printk(KERN_NOTICE "%s: server %s not responding, still trying\n", |
4e0038b6 TM |
1837 | clnt->cl_protname, |
1838 | rcu_dereference(clnt->cl_xprt)->servername); | |
1839 | rcu_read_unlock(); | |
1840 | } | |
1da177e4 | 1841 | } |
35f5a422 | 1842 | rpc_force_rebind(clnt); |
b48633bd TM |
1843 | /* |
1844 | * Did our request time out due to an RPCSEC_GSS out-of-sequence | |
1845 | * event? RFC2203 requires the server to drop all such requests. | |
1846 | */ | |
1847 | rpcauth_invalcred(task); | |
1da177e4 LT |
1848 | |
1849 | retry: | |
1850 | clnt->cl_stats->rpcretrans++; | |
1851 | task->tk_action = call_bind; | |
1852 | task->tk_status = 0; | |
1853 | } | |
1854 | ||
1855 | /* | |
1856 | * 7. Decode the RPC reply | |
1857 | */ | |
1858 | static void | |
1859 | call_decode(struct rpc_task *task) | |
1860 | { | |
1861 | struct rpc_clnt *clnt = task->tk_client; | |
1862 | struct rpc_rqst *req = task->tk_rqstp; | |
bf269551 | 1863 | kxdrdproc_t decode = task->tk_msg.rpc_proc->p_decode; |
d8ed029d | 1864 | __be32 *p; |
1da177e4 | 1865 | |
726fd6ad | 1866 | dprint_status(task); |
1da177e4 | 1867 | |
f518e35a | 1868 | if (task->tk_flags & RPC_CALL_MAJORSEEN) { |
4e0038b6 TM |
1869 | if (clnt->cl_chatty) { |
1870 | rcu_read_lock(); | |
b6b6152c | 1871 | printk(KERN_NOTICE "%s: server %s OK\n", |
4e0038b6 TM |
1872 | clnt->cl_protname, |
1873 | rcu_dereference(clnt->cl_xprt)->servername); | |
1874 | rcu_read_unlock(); | |
1875 | } | |
1da177e4 LT |
1876 | task->tk_flags &= ~RPC_CALL_MAJORSEEN; |
1877 | } | |
1878 | ||
43ac3f29 TM |
1879 | /* |
1880 | * Ensure that we see all writes made by xprt_complete_rqst() | |
dd2b63d0 | 1881 | * before it changed req->rq_reply_bytes_recvd. |
43ac3f29 TM |
1882 | */ |
1883 | smp_rmb(); | |
1da177e4 LT |
1884 | req->rq_rcv_buf.len = req->rq_private_buf.len; |
1885 | ||
1886 | /* Check that the softirq receive buffer is valid */ | |
1887 | WARN_ON(memcmp(&req->rq_rcv_buf, &req->rq_private_buf, | |
1888 | sizeof(req->rq_rcv_buf)) != 0); | |
1889 | ||
1e799b67 TM |
1890 | if (req->rq_rcv_buf.len < 12) { |
1891 | if (!RPC_IS_SOFT(task)) { | |
1892 | task->tk_action = call_bind; | |
1893 | clnt->cl_stats->rpcretrans++; | |
1894 | goto out_retry; | |
1895 | } | |
1896 | dprintk("RPC: %s: too small RPC reply size (%d bytes)\n", | |
1897 | clnt->cl_protname, task->tk_status); | |
1898 | task->tk_action = call_timeout; | |
1899 | goto out_retry; | |
1900 | } | |
1901 | ||
b0e1c57e | 1902 | p = rpc_verify_header(task); |
abbcf28f TM |
1903 | if (IS_ERR(p)) { |
1904 | if (p == ERR_PTR(-EAGAIN)) | |
1905 | goto out_retry; | |
1906 | return; | |
1da177e4 LT |
1907 | } |
1908 | ||
abbcf28f | 1909 | task->tk_action = rpc_exit_task; |
1da177e4 | 1910 | |
6d5fcb5a | 1911 | if (decode) { |
1da177e4 LT |
1912 | task->tk_status = rpcauth_unwrap_resp(task, decode, req, p, |
1913 | task->tk_msg.rpc_resp); | |
6d5fcb5a | 1914 | } |
46121cf7 CL |
1915 | dprintk("RPC: %5u call_decode result %d\n", task->tk_pid, |
1916 | task->tk_status); | |
1da177e4 LT |
1917 | return; |
1918 | out_retry: | |
1da177e4 | 1919 | task->tk_status = 0; |
b0e1c57e | 1920 | /* Note: rpc_verify_header() may have freed the RPC slot */ |
24b74bf0 | 1921 | if (task->tk_rqstp == req) { |
dd2b63d0 | 1922 | req->rq_reply_bytes_recvd = req->rq_rcv_buf.len = 0; |
24b74bf0 | 1923 | if (task->tk_client->cl_discrtry) |
7c1d71cf TM |
1924 | xprt_conditional_disconnect(task->tk_xprt, |
1925 | req->rq_connect_cookie); | |
24b74bf0 | 1926 | } |
1da177e4 LT |
1927 | } |
1928 | ||
d8ed029d | 1929 | static __be32 * |
b0e1c57e | 1930 | rpc_encode_header(struct rpc_task *task) |
1da177e4 LT |
1931 | { |
1932 | struct rpc_clnt *clnt = task->tk_client; | |
1da177e4 | 1933 | struct rpc_rqst *req = task->tk_rqstp; |
d8ed029d | 1934 | __be32 *p = req->rq_svec[0].iov_base; |
1da177e4 LT |
1935 | |
1936 | /* FIXME: check buffer size? */ | |
808012fb CL |
1937 | |
1938 | p = xprt_skip_transport_header(task->tk_xprt, p); | |
1da177e4 LT |
1939 | *p++ = req->rq_xid; /* XID */ |
1940 | *p++ = htonl(RPC_CALL); /* CALL */ | |
1941 | *p++ = htonl(RPC_VERSION); /* RPC version */ | |
1942 | *p++ = htonl(clnt->cl_prog); /* program number */ | |
1943 | *p++ = htonl(clnt->cl_vers); /* program version */ | |
1944 | *p++ = htonl(task->tk_msg.rpc_proc->p_proc); /* procedure */ | |
334ccfd5 TM |
1945 | p = rpcauth_marshcred(task, p); |
1946 | req->rq_slen = xdr_adjust_iovec(&req->rq_svec[0], p); | |
1947 | return p; | |
1da177e4 LT |
1948 | } |
1949 | ||
d8ed029d | 1950 | static __be32 * |
b0e1c57e | 1951 | rpc_verify_header(struct rpc_task *task) |
1da177e4 | 1952 | { |
4e0038b6 | 1953 | struct rpc_clnt *clnt = task->tk_client; |
1da177e4 LT |
1954 | struct kvec *iov = &task->tk_rqstp->rq_rcv_buf.head[0]; |
1955 | int len = task->tk_rqstp->rq_rcv_buf.len >> 2; | |
d8ed029d AD |
1956 | __be32 *p = iov->iov_base; |
1957 | u32 n; | |
1da177e4 LT |
1958 | int error = -EACCES; |
1959 | ||
e8896495 DH |
1960 | if ((task->tk_rqstp->rq_rcv_buf.len & 3) != 0) { |
1961 | /* RFC-1014 says that the representation of XDR data must be a | |
1962 | * multiple of four bytes | |
1963 | * - if it isn't pointer subtraction in the NFS client may give | |
1964 | * undefined results | |
1965 | */ | |
8a702bbb | 1966 | dprintk("RPC: %5u %s: XDR representation not a multiple of" |
0dc47877 | 1967 | " 4 bytes: 0x%x\n", task->tk_pid, __func__, |
8a702bbb | 1968 | task->tk_rqstp->rq_rcv_buf.len); |
e8896495 DH |
1969 | goto out_eio; |
1970 | } | |
1da177e4 LT |
1971 | if ((len -= 3) < 0) |
1972 | goto out_overflow; | |
1da177e4 | 1973 | |
f4a2e418 | 1974 | p += 1; /* skip XID */ |
1da177e4 | 1975 | if ((n = ntohl(*p++)) != RPC_REPLY) { |
8a702bbb | 1976 | dprintk("RPC: %5u %s: not an RPC reply: %x\n", |
f4a2e418 | 1977 | task->tk_pid, __func__, n); |
abbcf28f | 1978 | goto out_garbage; |
1da177e4 | 1979 | } |
f4a2e418 | 1980 | |
1da177e4 LT |
1981 | if ((n = ntohl(*p++)) != RPC_MSG_ACCEPTED) { |
1982 | if (--len < 0) | |
1983 | goto out_overflow; | |
1984 | switch ((n = ntohl(*p++))) { | |
89f0e4fe JP |
1985 | case RPC_AUTH_ERROR: |
1986 | break; | |
1987 | case RPC_MISMATCH: | |
1988 | dprintk("RPC: %5u %s: RPC call version mismatch!\n", | |
1989 | task->tk_pid, __func__); | |
1990 | error = -EPROTONOSUPPORT; | |
1991 | goto out_err; | |
1992 | default: | |
1993 | dprintk("RPC: %5u %s: RPC call rejected, " | |
1994 | "unknown error: %x\n", | |
1995 | task->tk_pid, __func__, n); | |
1996 | goto out_eio; | |
1da177e4 LT |
1997 | } |
1998 | if (--len < 0) | |
1999 | goto out_overflow; | |
2000 | switch ((n = ntohl(*p++))) { | |
2001 | case RPC_AUTH_REJECTEDCRED: | |
2002 | case RPC_AUTH_REJECTEDVERF: | |
2003 | case RPCSEC_GSS_CREDPROBLEM: | |
2004 | case RPCSEC_GSS_CTXPROBLEM: | |
2005 | if (!task->tk_cred_retry) | |
2006 | break; | |
2007 | task->tk_cred_retry--; | |
46121cf7 | 2008 | dprintk("RPC: %5u %s: retry stale creds\n", |
0dc47877 | 2009 | task->tk_pid, __func__); |
1da177e4 | 2010 | rpcauth_invalcred(task); |
220bcc2a TM |
2011 | /* Ensure we obtain a new XID! */ |
2012 | xprt_release(task); | |
118df3d1 | 2013 | task->tk_action = call_reserve; |
abbcf28f | 2014 | goto out_retry; |
1da177e4 LT |
2015 | case RPC_AUTH_BADCRED: |
2016 | case RPC_AUTH_BADVERF: | |
2017 | /* possibly garbled cred/verf? */ | |
2018 | if (!task->tk_garb_retry) | |
2019 | break; | |
2020 | task->tk_garb_retry--; | |
46121cf7 | 2021 | dprintk("RPC: %5u %s: retry garbled creds\n", |
0dc47877 | 2022 | task->tk_pid, __func__); |
1da177e4 | 2023 | task->tk_action = call_bind; |
abbcf28f | 2024 | goto out_retry; |
1da177e4 | 2025 | case RPC_AUTH_TOOWEAK: |
4e0038b6 | 2026 | rcu_read_lock(); |
b0e1c57e | 2027 | printk(KERN_NOTICE "RPC: server %s requires stronger " |
4e0038b6 TM |
2028 | "authentication.\n", |
2029 | rcu_dereference(clnt->cl_xprt)->servername); | |
2030 | rcu_read_unlock(); | |
1da177e4 LT |
2031 | break; |
2032 | default: | |
8a702bbb | 2033 | dprintk("RPC: %5u %s: unknown auth error: %x\n", |
0dc47877 | 2034 | task->tk_pid, __func__, n); |
1da177e4 LT |
2035 | error = -EIO; |
2036 | } | |
46121cf7 | 2037 | dprintk("RPC: %5u %s: call rejected %d\n", |
0dc47877 | 2038 | task->tk_pid, __func__, n); |
1da177e4 LT |
2039 | goto out_err; |
2040 | } | |
2041 | if (!(p = rpcauth_checkverf(task, p))) { | |
8a702bbb | 2042 | dprintk("RPC: %5u %s: auth check failed\n", |
0dc47877 | 2043 | task->tk_pid, __func__); |
abbcf28f | 2044 | goto out_garbage; /* bad verifier, retry */ |
1da177e4 | 2045 | } |
d8ed029d | 2046 | len = p - (__be32 *)iov->iov_base - 1; |
1da177e4 LT |
2047 | if (len < 0) |
2048 | goto out_overflow; | |
2049 | switch ((n = ntohl(*p++))) { | |
2050 | case RPC_SUCCESS: | |
2051 | return p; | |
2052 | case RPC_PROG_UNAVAIL: | |
4e0038b6 TM |
2053 | dprintk_rcu("RPC: %5u %s: program %u is unsupported " |
2054 | "by server %s\n", task->tk_pid, __func__, | |
2055 | (unsigned int)clnt->cl_prog, | |
2056 | rcu_dereference(clnt->cl_xprt)->servername); | |
cdf47706 AG |
2057 | error = -EPFNOSUPPORT; |
2058 | goto out_err; | |
1da177e4 | 2059 | case RPC_PROG_MISMATCH: |
4e0038b6 TM |
2060 | dprintk_rcu("RPC: %5u %s: program %u, version %u unsupported " |
2061 | "by server %s\n", task->tk_pid, __func__, | |
2062 | (unsigned int)clnt->cl_prog, | |
2063 | (unsigned int)clnt->cl_vers, | |
2064 | rcu_dereference(clnt->cl_xprt)->servername); | |
cdf47706 AG |
2065 | error = -EPROTONOSUPPORT; |
2066 | goto out_err; | |
1da177e4 | 2067 | case RPC_PROC_UNAVAIL: |
4e0038b6 | 2068 | dprintk_rcu("RPC: %5u %s: proc %s unsupported by program %u, " |
46121cf7 | 2069 | "version %u on server %s\n", |
0dc47877 | 2070 | task->tk_pid, __func__, |
3748f1e4 | 2071 | rpc_proc_name(task), |
4e0038b6 TM |
2072 | clnt->cl_prog, clnt->cl_vers, |
2073 | rcu_dereference(clnt->cl_xprt)->servername); | |
cdf47706 AG |
2074 | error = -EOPNOTSUPP; |
2075 | goto out_err; | |
1da177e4 | 2076 | case RPC_GARBAGE_ARGS: |
46121cf7 | 2077 | dprintk("RPC: %5u %s: server saw garbage\n", |
0dc47877 | 2078 | task->tk_pid, __func__); |
1da177e4 LT |
2079 | break; /* retry */ |
2080 | default: | |
8a702bbb | 2081 | dprintk("RPC: %5u %s: server accept status: %x\n", |
0dc47877 | 2082 | task->tk_pid, __func__, n); |
1da177e4 LT |
2083 | /* Also retry */ |
2084 | } | |
2085 | ||
abbcf28f | 2086 | out_garbage: |
4e0038b6 | 2087 | clnt->cl_stats->rpcgarbage++; |
1da177e4 LT |
2088 | if (task->tk_garb_retry) { |
2089 | task->tk_garb_retry--; | |
46121cf7 | 2090 | dprintk("RPC: %5u %s: retrying\n", |
0dc47877 | 2091 | task->tk_pid, __func__); |
1da177e4 | 2092 | task->tk_action = call_bind; |
abbcf28f TM |
2093 | out_retry: |
2094 | return ERR_PTR(-EAGAIN); | |
1da177e4 | 2095 | } |
1da177e4 LT |
2096 | out_eio: |
2097 | error = -EIO; | |
2098 | out_err: | |
2099 | rpc_exit(task, error); | |
8a702bbb | 2100 | dprintk("RPC: %5u %s: call failed with error %d\n", task->tk_pid, |
0dc47877 | 2101 | __func__, error); |
abbcf28f | 2102 | return ERR_PTR(error); |
1da177e4 | 2103 | out_overflow: |
8a702bbb | 2104 | dprintk("RPC: %5u %s: server reply was truncated.\n", task->tk_pid, |
0dc47877 | 2105 | __func__); |
abbcf28f | 2106 | goto out_garbage; |
1da177e4 | 2107 | } |
5ee0ed7d | 2108 | |
9f06c719 | 2109 | static void rpcproc_encode_null(void *rqstp, struct xdr_stream *xdr, void *obj) |
5ee0ed7d | 2110 | { |
5ee0ed7d TM |
2111 | } |
2112 | ||
bf269551 | 2113 | static int rpcproc_decode_null(void *rqstp, struct xdr_stream *xdr, void *obj) |
5ee0ed7d TM |
2114 | { |
2115 | return 0; | |
2116 | } | |
2117 | ||
2118 | static struct rpc_procinfo rpcproc_null = { | |
2119 | .p_encode = rpcproc_encode_null, | |
2120 | .p_decode = rpcproc_decode_null, | |
2121 | }; | |
2122 | ||
caabea8a | 2123 | static int rpc_ping(struct rpc_clnt *clnt) |
5ee0ed7d TM |
2124 | { |
2125 | struct rpc_message msg = { | |
2126 | .rpc_proc = &rpcproc_null, | |
2127 | }; | |
2128 | int err; | |
2129 | msg.rpc_cred = authnull_ops.lookup_cred(NULL, NULL, 0); | |
caabea8a | 2130 | err = rpc_call_sync(clnt, &msg, RPC_TASK_SOFT | RPC_TASK_SOFTCONN); |
5ee0ed7d TM |
2131 | put_rpccred(msg.rpc_cred); |
2132 | return err; | |
2133 | } | |
188fef11 | 2134 | |
5e1550d6 TM |
2135 | struct rpc_task *rpc_call_null(struct rpc_clnt *clnt, struct rpc_cred *cred, int flags) |
2136 | { | |
2137 | struct rpc_message msg = { | |
2138 | .rpc_proc = &rpcproc_null, | |
2139 | .rpc_cred = cred, | |
2140 | }; | |
84115e1c TM |
2141 | struct rpc_task_setup task_setup_data = { |
2142 | .rpc_client = clnt, | |
2143 | .rpc_message = &msg, | |
2144 | .callback_ops = &rpc_default_ops, | |
2145 | .flags = flags, | |
2146 | }; | |
c970aa85 | 2147 | return rpc_run_task(&task_setup_data); |
5e1550d6 | 2148 | } |
e8914c65 | 2149 | EXPORT_SYMBOL_GPL(rpc_call_null); |
5e1550d6 | 2150 | |
188fef11 | 2151 | #ifdef RPC_DEBUG |
68a23ee9 CL |
2152 | static void rpc_show_header(void) |
2153 | { | |
cb3997b5 CL |
2154 | printk(KERN_INFO "-pid- flgs status -client- --rqstp- " |
2155 | "-timeout ---ops--\n"); | |
68a23ee9 CL |
2156 | } |
2157 | ||
38e886e0 CL |
2158 | static void rpc_show_task(const struct rpc_clnt *clnt, |
2159 | const struct rpc_task *task) | |
2160 | { | |
2161 | const char *rpc_waitq = "none"; | |
38e886e0 CL |
2162 | |
2163 | if (RPC_IS_QUEUED(task)) | |
2164 | rpc_waitq = rpc_qname(task->tk_waitqueue); | |
2165 | ||
b3bcedad | 2166 | printk(KERN_INFO "%5u %04x %6d %8p %8p %8ld %8p %sv%u %s a:%ps q:%s\n", |
cb3997b5 CL |
2167 | task->tk_pid, task->tk_flags, task->tk_status, |
2168 | clnt, task->tk_rqstp, task->tk_timeout, task->tk_ops, | |
2169 | clnt->cl_protname, clnt->cl_vers, rpc_proc_name(task), | |
b3bcedad | 2170 | task->tk_action, rpc_waitq); |
38e886e0 CL |
2171 | } |
2172 | ||
70abc49b | 2173 | void rpc_show_tasks(struct net *net) |
188fef11 TM |
2174 | { |
2175 | struct rpc_clnt *clnt; | |
38e886e0 | 2176 | struct rpc_task *task; |
68a23ee9 | 2177 | int header = 0; |
70abc49b | 2178 | struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); |
188fef11 | 2179 | |
70abc49b SK |
2180 | spin_lock(&sn->rpc_client_lock); |
2181 | list_for_each_entry(clnt, &sn->all_clients, cl_clients) { | |
188fef11 | 2182 | spin_lock(&clnt->cl_lock); |
38e886e0 | 2183 | list_for_each_entry(task, &clnt->cl_tasks, tk_task) { |
68a23ee9 CL |
2184 | if (!header) { |
2185 | rpc_show_header(); | |
2186 | header++; | |
2187 | } | |
38e886e0 | 2188 | rpc_show_task(clnt, task); |
188fef11 TM |
2189 | } |
2190 | spin_unlock(&clnt->cl_lock); | |
2191 | } | |
70abc49b | 2192 | spin_unlock(&sn->rpc_client_lock); |
188fef11 TM |
2193 | } |
2194 | #endif |