]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/sunrpc/xprt.c
ipv6: Fix using after dev_put()
[net-next-2.6.git] / net / sunrpc / xprt.c
CommitLineData
1da177e4
LT
1/*
2 * linux/net/sunrpc/xprt.c
3 *
4 * This is a generic RPC call interface supporting congestion avoidance,
5 * and asynchronous calls.
6 *
7 * The interface works like this:
8 *
9 * - When a process places a call, it allocates a request slot if
10 * one is available. Otherwise, it sleeps on the backlog queue
11 * (xprt_reserve).
12 * - Next, the caller puts together the RPC message, stuffs it into
55aa4f58
CL
13 * the request struct, and calls xprt_transmit().
14 * - xprt_transmit sends the message and installs the caller on the
15 * transport's wait list. At the same time, it installs a timer that
1da177e4
LT
16 * is run after the packet's timeout has expired.
17 * - When a packet arrives, the data_ready handler walks the list of
55aa4f58 18 * pending requests for that transport. If a matching XID is found, the
1da177e4
LT
19 * caller is woken up, and the timer removed.
20 * - When no reply arrives within the timeout interval, the timer is
21 * fired by the kernel and runs xprt_timer(). It either adjusts the
22 * timeout values (minor timeout) or wakes up the caller with a status
23 * of -ETIMEDOUT.
24 * - When the caller receives a notification from RPC that a reply arrived,
25 * it should release the RPC slot, and process the reply.
26 * If the call timed out, it may choose to retry the operation by
27 * adjusting the initial timeout value, and simply calling rpc_call
28 * again.
29 *
30 * Support for async RPC is done through a set of RPC-specific scheduling
31 * primitives that `transparently' work for processes as well as async
32 * tasks that rely on callbacks.
33 *
34 * Copyright (C) 1995-1997, Olaf Kirch <okir@monad.swb.de>
55aa4f58
CL
35 *
36 * Transport switch API copyright (C) 2005, Chuck Lever <cel@netapp.com>
1da177e4
LT
37 */
38
a246b010
CL
39#include <linux/module.h>
40
1da177e4 41#include <linux/types.h>
a246b010 42#include <linux/interrupt.h>
1da177e4 43#include <linux/workqueue.h>
bf3fcf89 44#include <linux/net.h>
1da177e4 45
a246b010 46#include <linux/sunrpc/clnt.h>
11c556b3 47#include <linux/sunrpc/metrics.h>
1da177e4
LT
48
49/*
50 * Local variables
51 */
52
53#ifdef RPC_DEBUG
1da177e4
LT
54# define RPCDBG_FACILITY RPCDBG_XPRT
55#endif
56
1da177e4
LT
57/*
58 * Local functions
59 */
60static void xprt_request_init(struct rpc_task *, struct rpc_xprt *);
61static inline void do_xprt_reserve(struct rpc_task *);
1da177e4 62static void xprt_connect_status(struct rpc_task *task);
1da177e4
LT
63static int __xprt_get_cong(struct rpc_xprt *, struct rpc_task *);
64
5ba03e82 65static DEFINE_SPINLOCK(xprt_list_lock);
81c098af
TT
66static LIST_HEAD(xprt_list);
67
555ee3af
CL
68/*
69 * The transport code maintains an estimate on the maximum number of out-
70 * standing RPC requests, using a smoothed version of the congestion
71 * avoidance implemented in 44BSD. This is basically the Van Jacobson
72 * congestion algorithm: If a retransmit occurs, the congestion window is
73 * halved; otherwise, it is incremented by 1/cwnd when
74 *
75 * - a reply is received and
76 * - a full number of requests are outstanding and
77 * - the congestion window hasn't been updated recently.
78 */
79#define RPC_CWNDSHIFT (8U)
80#define RPC_CWNDSCALE (1U << RPC_CWNDSHIFT)
81#define RPC_INITCWND RPC_CWNDSCALE
82#define RPC_MAXCWND(xprt) ((xprt)->max_reqs << RPC_CWNDSHIFT)
83
84#define RPCXPRT_CONGESTED(xprt) ((xprt)->cong >= (xprt)->cwnd)
1da177e4 85
81c098af
TT
86/**
87 * xprt_register_transport - register a transport implementation
88 * @transport: transport to register
89 *
90 * If a transport implementation is loaded as a kernel module, it can
91 * call this interface to make itself known to the RPC client.
92 *
93 * Returns:
94 * 0: transport successfully registered
95 * -EEXIST: transport already registered
96 * -EINVAL: transport module being unloaded
97 */
98int xprt_register_transport(struct xprt_class *transport)
99{
100 struct xprt_class *t;
101 int result;
102
103 result = -EEXIST;
104 spin_lock(&xprt_list_lock);
105 list_for_each_entry(t, &xprt_list, list) {
106 /* don't register the same transport class twice */
4fa016eb 107 if (t->ident == transport->ident)
81c098af
TT
108 goto out;
109 }
110
111 result = -EINVAL;
112 if (try_module_get(THIS_MODULE)) {
113 list_add_tail(&transport->list, &xprt_list);
114 printk(KERN_INFO "RPC: Registered %s transport module.\n",
115 transport->name);
116 result = 0;
117 }
118
119out:
120 spin_unlock(&xprt_list_lock);
121 return result;
122}
123EXPORT_SYMBOL_GPL(xprt_register_transport);
124
125/**
126 * xprt_unregister_transport - unregister a transport implementation
65b6e42c 127 * @transport: transport to unregister
81c098af
TT
128 *
129 * Returns:
130 * 0: transport successfully unregistered
131 * -ENOENT: transport never registered
132 */
133int xprt_unregister_transport(struct xprt_class *transport)
134{
135 struct xprt_class *t;
136 int result;
137
138 result = 0;
139 spin_lock(&xprt_list_lock);
140 list_for_each_entry(t, &xprt_list, list) {
141 if (t == transport) {
142 printk(KERN_INFO
143 "RPC: Unregistered %s transport module.\n",
144 transport->name);
145 list_del_init(&transport->list);
146 module_put(THIS_MODULE);
147 goto out;
148 }
149 }
150 result = -ENOENT;
151
152out:
153 spin_unlock(&xprt_list_lock);
154 return result;
155}
156EXPORT_SYMBOL_GPL(xprt_unregister_transport);
157
12a80469
CL
158/**
159 * xprt_reserve_xprt - serialize write access to transports
160 * @task: task that is requesting access to the transport
161 *
162 * This prevents mixing the payload of separate requests, and prevents
163 * transport connects from colliding with writes. No congestion control
164 * is provided.
165 */
166int xprt_reserve_xprt(struct rpc_task *task)
167{
168 struct rpc_xprt *xprt = task->tk_xprt;
169 struct rpc_rqst *req = task->tk_rqstp;
170
171 if (test_and_set_bit(XPRT_LOCKED, &xprt->state)) {
172 if (task == xprt->snd_task)
173 return 1;
174 if (task == NULL)
175 return 0;
176 goto out_sleep;
177 }
178 xprt->snd_task = task;
179 if (req) {
180 req->rq_bytes_sent = 0;
181 req->rq_ntrans++;
182 }
183 return 1;
184
185out_sleep:
46121cf7 186 dprintk("RPC: %5u failed to lock transport %p\n",
12a80469
CL
187 task->tk_pid, xprt);
188 task->tk_timeout = 0;
189 task->tk_status = -EAGAIN;
190 if (req && req->rq_ntrans)
5d00837b 191 rpc_sleep_on(&xprt->resend, task, NULL);
12a80469 192 else
5d00837b 193 rpc_sleep_on(&xprt->sending, task, NULL);
12a80469
CL
194 return 0;
195}
12444809 196EXPORT_SYMBOL_GPL(xprt_reserve_xprt);
12a80469 197
632e3bdc
TM
198static void xprt_clear_locked(struct rpc_xprt *xprt)
199{
200 xprt->snd_task = NULL;
201 if (!test_bit(XPRT_CLOSE_WAIT, &xprt->state) || xprt->shutdown) {
202 smp_mb__before_clear_bit();
203 clear_bit(XPRT_LOCKED, &xprt->state);
204 smp_mb__after_clear_bit();
205 } else
c1384c9c 206 queue_work(rpciod_workqueue, &xprt->task_cleanup);
632e3bdc
TM
207}
208
1da177e4 209/*
12a80469
CL
210 * xprt_reserve_xprt_cong - serialize write access to transports
211 * @task: task that is requesting access to the transport
212 *
213 * Same as xprt_reserve_xprt, but Van Jacobson congestion control is
214 * integrated into the decision of whether a request is allowed to be
215 * woken up and given access to the transport.
1da177e4 216 */
12a80469 217int xprt_reserve_xprt_cong(struct rpc_task *task)
1da177e4 218{
12a80469 219 struct rpc_xprt *xprt = task->tk_xprt;
1da177e4
LT
220 struct rpc_rqst *req = task->tk_rqstp;
221
2226feb6 222 if (test_and_set_bit(XPRT_LOCKED, &xprt->state)) {
1da177e4
LT
223 if (task == xprt->snd_task)
224 return 1;
1da177e4
LT
225 goto out_sleep;
226 }
12a80469 227 if (__xprt_get_cong(xprt, task)) {
1da177e4
LT
228 xprt->snd_task = task;
229 if (req) {
230 req->rq_bytes_sent = 0;
231 req->rq_ntrans++;
232 }
233 return 1;
234 }
632e3bdc 235 xprt_clear_locked(xprt);
1da177e4 236out_sleep:
46121cf7 237 dprintk("RPC: %5u failed to lock transport %p\n", task->tk_pid, xprt);
1da177e4
LT
238 task->tk_timeout = 0;
239 task->tk_status = -EAGAIN;
240 if (req && req->rq_ntrans)
5d00837b 241 rpc_sleep_on(&xprt->resend, task, NULL);
1da177e4 242 else
5d00837b 243 rpc_sleep_on(&xprt->sending, task, NULL);
1da177e4
LT
244 return 0;
245}
12444809 246EXPORT_SYMBOL_GPL(xprt_reserve_xprt_cong);
1da177e4 247
12a80469 248static inline int xprt_lock_write(struct rpc_xprt *xprt, struct rpc_task *task)
1da177e4
LT
249{
250 int retval;
251
4a0f8c04 252 spin_lock_bh(&xprt->transport_lock);
12a80469 253 retval = xprt->ops->reserve_xprt(task);
4a0f8c04 254 spin_unlock_bh(&xprt->transport_lock);
1da177e4
LT
255 return retval;
256}
257
12a80469 258static void __xprt_lock_write_next(struct rpc_xprt *xprt)
49e9a890
CL
259{
260 struct rpc_task *task;
261 struct rpc_rqst *req;
262
263 if (test_and_set_bit(XPRT_LOCKED, &xprt->state))
264 return;
265
266 task = rpc_wake_up_next(&xprt->resend);
267 if (!task) {
268 task = rpc_wake_up_next(&xprt->sending);
269 if (!task)
270 goto out_unlock;
271 }
272
273 req = task->tk_rqstp;
274 xprt->snd_task = task;
275 if (req) {
276 req->rq_bytes_sent = 0;
277 req->rq_ntrans++;
278 }
279 return;
280
281out_unlock:
632e3bdc 282 xprt_clear_locked(xprt);
49e9a890
CL
283}
284
285static void __xprt_lock_write_next_cong(struct rpc_xprt *xprt)
1da177e4
LT
286{
287 struct rpc_task *task;
288
2226feb6 289 if (test_and_set_bit(XPRT_LOCKED, &xprt->state))
1da177e4 290 return;
49e9a890 291 if (RPCXPRT_CONGESTED(xprt))
1da177e4
LT
292 goto out_unlock;
293 task = rpc_wake_up_next(&xprt->resend);
294 if (!task) {
295 task = rpc_wake_up_next(&xprt->sending);
296 if (!task)
297 goto out_unlock;
298 }
49e9a890 299 if (__xprt_get_cong(xprt, task)) {
1da177e4
LT
300 struct rpc_rqst *req = task->tk_rqstp;
301 xprt->snd_task = task;
302 if (req) {
303 req->rq_bytes_sent = 0;
304 req->rq_ntrans++;
305 }
306 return;
307 }
308out_unlock:
632e3bdc 309 xprt_clear_locked(xprt);
1da177e4
LT
310}
311
49e9a890
CL
312/**
313 * xprt_release_xprt - allow other requests to use a transport
314 * @xprt: transport with other tasks potentially waiting
315 * @task: task that is releasing access to the transport
316 *
317 * Note that "task" can be NULL. No congestion control is provided.
1da177e4 318 */
49e9a890 319void xprt_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task)
1da177e4
LT
320{
321 if (xprt->snd_task == task) {
632e3bdc 322 xprt_clear_locked(xprt);
1da177e4
LT
323 __xprt_lock_write_next(xprt);
324 }
325}
12444809 326EXPORT_SYMBOL_GPL(xprt_release_xprt);
1da177e4 327
49e9a890
CL
328/**
329 * xprt_release_xprt_cong - allow other requests to use a transport
330 * @xprt: transport with other tasks potentially waiting
331 * @task: task that is releasing access to the transport
332 *
333 * Note that "task" can be NULL. Another task is awoken to use the
334 * transport if the transport's congestion window allows it.
335 */
336void xprt_release_xprt_cong(struct rpc_xprt *xprt, struct rpc_task *task)
337{
338 if (xprt->snd_task == task) {
632e3bdc 339 xprt_clear_locked(xprt);
49e9a890
CL
340 __xprt_lock_write_next_cong(xprt);
341 }
342}
12444809 343EXPORT_SYMBOL_GPL(xprt_release_xprt_cong);
49e9a890
CL
344
345static inline void xprt_release_write(struct rpc_xprt *xprt, struct rpc_task *task)
1da177e4 346{
4a0f8c04 347 spin_lock_bh(&xprt->transport_lock);
49e9a890 348 xprt->ops->release_xprt(xprt, task);
4a0f8c04 349 spin_unlock_bh(&xprt->transport_lock);
1da177e4
LT
350}
351
1da177e4
LT
352/*
353 * Van Jacobson congestion avoidance. Check if the congestion window
354 * overflowed. Put the task to sleep if this is the case.
355 */
356static int
357__xprt_get_cong(struct rpc_xprt *xprt, struct rpc_task *task)
358{
359 struct rpc_rqst *req = task->tk_rqstp;
360
361 if (req->rq_cong)
362 return 1;
46121cf7 363 dprintk("RPC: %5u xprt_cwnd_limited cong = %lu cwnd = %lu\n",
1da177e4
LT
364 task->tk_pid, xprt->cong, xprt->cwnd);
365 if (RPCXPRT_CONGESTED(xprt))
366 return 0;
367 req->rq_cong = 1;
368 xprt->cong += RPC_CWNDSCALE;
369 return 1;
370}
371
372/*
373 * Adjust the congestion window, and wake up the next task
374 * that has been sleeping due to congestion
375 */
376static void
377__xprt_put_cong(struct rpc_xprt *xprt, struct rpc_rqst *req)
378{
379 if (!req->rq_cong)
380 return;
381 req->rq_cong = 0;
382 xprt->cong -= RPC_CWNDSCALE;
49e9a890 383 __xprt_lock_write_next_cong(xprt);
1da177e4
LT
384}
385
a58dd398
CL
386/**
387 * xprt_release_rqst_cong - housekeeping when request is complete
388 * @task: RPC request that recently completed
389 *
390 * Useful for transports that require congestion control.
391 */
392void xprt_release_rqst_cong(struct rpc_task *task)
393{
394 __xprt_put_cong(task->tk_xprt, task->tk_rqstp);
395}
12444809 396EXPORT_SYMBOL_GPL(xprt_release_rqst_cong);
a58dd398 397
46c0ee8b
CL
398/**
399 * xprt_adjust_cwnd - adjust transport congestion window
400 * @task: recently completed RPC request used to adjust window
401 * @result: result code of completed RPC request
402 *
1da177e4
LT
403 * We use a time-smoothed congestion estimator to avoid heavy oscillation.
404 */
46c0ee8b 405void xprt_adjust_cwnd(struct rpc_task *task, int result)
1da177e4 406{
46c0ee8b
CL
407 struct rpc_rqst *req = task->tk_rqstp;
408 struct rpc_xprt *xprt = task->tk_xprt;
409 unsigned long cwnd = xprt->cwnd;
1da177e4 410
1da177e4
LT
411 if (result >= 0 && cwnd <= xprt->cong) {
412 /* The (cwnd >> 1) term makes sure
413 * the result gets rounded properly. */
414 cwnd += (RPC_CWNDSCALE * RPC_CWNDSCALE + (cwnd >> 1)) / cwnd;
415 if (cwnd > RPC_MAXCWND(xprt))
416 cwnd = RPC_MAXCWND(xprt);
49e9a890 417 __xprt_lock_write_next_cong(xprt);
1da177e4
LT
418 } else if (result == -ETIMEDOUT) {
419 cwnd >>= 1;
420 if (cwnd < RPC_CWNDSCALE)
421 cwnd = RPC_CWNDSCALE;
422 }
46121cf7 423 dprintk("RPC: cong %ld, cwnd was %ld, now %ld\n",
1da177e4
LT
424 xprt->cong, xprt->cwnd, cwnd);
425 xprt->cwnd = cwnd;
46c0ee8b 426 __xprt_put_cong(xprt, req);
1da177e4 427}
12444809 428EXPORT_SYMBOL_GPL(xprt_adjust_cwnd);
1da177e4 429
44fbac22
CL
430/**
431 * xprt_wake_pending_tasks - wake all tasks on a transport's pending queue
432 * @xprt: transport with waiting tasks
433 * @status: result code to plant in each task before waking it
434 *
435 */
436void xprt_wake_pending_tasks(struct rpc_xprt *xprt, int status)
437{
438 if (status < 0)
439 rpc_wake_up_status(&xprt->pending, status);
440 else
441 rpc_wake_up(&xprt->pending);
442}
12444809 443EXPORT_SYMBOL_GPL(xprt_wake_pending_tasks);
44fbac22 444
c7b2cae8
CL
445/**
446 * xprt_wait_for_buffer_space - wait for transport output buffer to clear
447 * @task: task to be put to sleep
0b80ae42 448 * @action: function pointer to be executed after wait
c7b2cae8 449 */
b6ddf64f 450void xprt_wait_for_buffer_space(struct rpc_task *task, rpc_action action)
c7b2cae8
CL
451{
452 struct rpc_rqst *req = task->tk_rqstp;
453 struct rpc_xprt *xprt = req->rq_xprt;
454
455 task->tk_timeout = req->rq_timeout;
b6ddf64f 456 rpc_sleep_on(&xprt->pending, task, action);
c7b2cae8 457}
12444809 458EXPORT_SYMBOL_GPL(xprt_wait_for_buffer_space);
c7b2cae8
CL
459
460/**
461 * xprt_write_space - wake the task waiting for transport output buffer space
462 * @xprt: transport with waiting tasks
463 *
464 * Can be called in a soft IRQ context, so xprt_write_space never sleeps.
465 */
466void xprt_write_space(struct rpc_xprt *xprt)
467{
468 if (unlikely(xprt->shutdown))
469 return;
470
471 spin_lock_bh(&xprt->transport_lock);
472 if (xprt->snd_task) {
46121cf7
CL
473 dprintk("RPC: write space: waking waiting task on "
474 "xprt %p\n", xprt);
fda13939 475 rpc_wake_up_queued_task(&xprt->pending, xprt->snd_task);
c7b2cae8
CL
476 }
477 spin_unlock_bh(&xprt->transport_lock);
478}
12444809 479EXPORT_SYMBOL_GPL(xprt_write_space);
c7b2cae8 480
fe3aca29
CL
481/**
482 * xprt_set_retrans_timeout_def - set a request's retransmit timeout
483 * @task: task whose timeout is to be set
484 *
485 * Set a request's retransmit timeout based on the transport's
486 * default timeout parameters. Used by transports that don't adjust
487 * the retransmit timeout based on round-trip time estimation.
488 */
489void xprt_set_retrans_timeout_def(struct rpc_task *task)
490{
491 task->tk_timeout = task->tk_rqstp->rq_timeout;
492}
12444809 493EXPORT_SYMBOL_GPL(xprt_set_retrans_timeout_def);
fe3aca29
CL
494
495/*
496 * xprt_set_retrans_timeout_rtt - set a request's retransmit timeout
497 * @task: task whose timeout is to be set
cca5172a 498 *
fe3aca29
CL
499 * Set a request's retransmit timeout using the RTT estimator.
500 */
501void xprt_set_retrans_timeout_rtt(struct rpc_task *task)
502{
503 int timer = task->tk_msg.rpc_proc->p_timer;
ba7392bb
TM
504 struct rpc_clnt *clnt = task->tk_client;
505 struct rpc_rtt *rtt = clnt->cl_rtt;
fe3aca29 506 struct rpc_rqst *req = task->tk_rqstp;
ba7392bb 507 unsigned long max_timeout = clnt->cl_timeout->to_maxval;
fe3aca29
CL
508
509 task->tk_timeout = rpc_calc_rto(rtt, timer);
510 task->tk_timeout <<= rpc_ntimeo(rtt, timer) + req->rq_retries;
511 if (task->tk_timeout > max_timeout || task->tk_timeout == 0)
512 task->tk_timeout = max_timeout;
513}
12444809 514EXPORT_SYMBOL_GPL(xprt_set_retrans_timeout_rtt);
fe3aca29 515
1da177e4
LT
516static void xprt_reset_majortimeo(struct rpc_rqst *req)
517{
ba7392bb 518 const struct rpc_timeout *to = req->rq_task->tk_client->cl_timeout;
1da177e4
LT
519
520 req->rq_majortimeo = req->rq_timeout;
521 if (to->to_exponential)
522 req->rq_majortimeo <<= to->to_retries;
523 else
524 req->rq_majortimeo += to->to_increment * to->to_retries;
525 if (req->rq_majortimeo > to->to_maxval || req->rq_majortimeo == 0)
526 req->rq_majortimeo = to->to_maxval;
527 req->rq_majortimeo += jiffies;
528}
529
9903cd1c
CL
530/**
531 * xprt_adjust_timeout - adjust timeout values for next retransmit
532 * @req: RPC request containing parameters to use for the adjustment
533 *
1da177e4
LT
534 */
535int xprt_adjust_timeout(struct rpc_rqst *req)
536{
537 struct rpc_xprt *xprt = req->rq_xprt;
ba7392bb 538 const struct rpc_timeout *to = req->rq_task->tk_client->cl_timeout;
1da177e4
LT
539 int status = 0;
540
541 if (time_before(jiffies, req->rq_majortimeo)) {
542 if (to->to_exponential)
543 req->rq_timeout <<= 1;
544 else
545 req->rq_timeout += to->to_increment;
546 if (to->to_maxval && req->rq_timeout >= to->to_maxval)
547 req->rq_timeout = to->to_maxval;
548 req->rq_retries++;
1da177e4
LT
549 } else {
550 req->rq_timeout = to->to_initval;
551 req->rq_retries = 0;
552 xprt_reset_majortimeo(req);
553 /* Reset the RTT counters == "slow start" */
4a0f8c04 554 spin_lock_bh(&xprt->transport_lock);
1da177e4 555 rpc_init_rtt(req->rq_task->tk_client->cl_rtt, to->to_initval);
4a0f8c04 556 spin_unlock_bh(&xprt->transport_lock);
1da177e4
LT
557 status = -ETIMEDOUT;
558 }
559
560 if (req->rq_timeout == 0) {
561 printk(KERN_WARNING "xprt_adjust_timeout: rq_timeout = 0!\n");
562 req->rq_timeout = 5 * HZ;
563 }
564 return status;
565}
566
65f27f38 567static void xprt_autoclose(struct work_struct *work)
1da177e4 568{
65f27f38
DH
569 struct rpc_xprt *xprt =
570 container_of(work, struct rpc_xprt, task_cleanup);
1da177e4 571
a246b010 572 xprt->ops->close(xprt);
66af1e55 573 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
1da177e4
LT
574 xprt_release_write(xprt, NULL);
575}
576
9903cd1c 577/**
62da3b24 578 * xprt_disconnect_done - mark a transport as disconnected
9903cd1c
CL
579 * @xprt: transport to flag for disconnect
580 *
1da177e4 581 */
62da3b24 582void xprt_disconnect_done(struct rpc_xprt *xprt)
1da177e4 583{
46121cf7 584 dprintk("RPC: disconnected transport %p\n", xprt);
4a0f8c04 585 spin_lock_bh(&xprt->transport_lock);
1da177e4 586 xprt_clear_connected(xprt);
44fbac22 587 xprt_wake_pending_tasks(xprt, -ENOTCONN);
4a0f8c04 588 spin_unlock_bh(&xprt->transport_lock);
1da177e4 589}
62da3b24 590EXPORT_SYMBOL_GPL(xprt_disconnect_done);
1da177e4 591
66af1e55
TM
592/**
593 * xprt_force_disconnect - force a transport to disconnect
594 * @xprt: transport to disconnect
595 *
596 */
597void xprt_force_disconnect(struct rpc_xprt *xprt)
598{
599 /* Don't race with the test_bit() in xprt_clear_locked() */
600 spin_lock_bh(&xprt->transport_lock);
601 set_bit(XPRT_CLOSE_WAIT, &xprt->state);
602 /* Try to schedule an autoclose RPC call */
603 if (test_and_set_bit(XPRT_LOCKED, &xprt->state) == 0)
604 queue_work(rpciod_workqueue, &xprt->task_cleanup);
fda13939 605 xprt_wake_pending_tasks(xprt, -ENOTCONN);
66af1e55
TM
606 spin_unlock_bh(&xprt->transport_lock);
607}
66af1e55 608
7c1d71cf
TM
609/**
610 * xprt_conditional_disconnect - force a transport to disconnect
611 * @xprt: transport to disconnect
612 * @cookie: 'connection cookie'
613 *
614 * This attempts to break the connection if and only if 'cookie' matches
615 * the current transport 'connection cookie'. It ensures that we don't
616 * try to break the connection more than once when we need to retransmit
617 * a batch of RPC requests.
618 *
619 */
620void xprt_conditional_disconnect(struct rpc_xprt *xprt, unsigned int cookie)
621{
622 /* Don't race with the test_bit() in xprt_clear_locked() */
623 spin_lock_bh(&xprt->transport_lock);
624 if (cookie != xprt->connect_cookie)
625 goto out;
626 if (test_bit(XPRT_CLOSING, &xprt->state) || !xprt_connected(xprt))
627 goto out;
628 set_bit(XPRT_CLOSE_WAIT, &xprt->state);
629 /* Try to schedule an autoclose RPC call */
630 if (test_and_set_bit(XPRT_LOCKED, &xprt->state) == 0)
631 queue_work(rpciod_workqueue, &xprt->task_cleanup);
632 xprt_wake_pending_tasks(xprt, -ENOTCONN);
633out:
634 spin_unlock_bh(&xprt->transport_lock);
635}
636
1da177e4
LT
637static void
638xprt_init_autodisconnect(unsigned long data)
639{
640 struct rpc_xprt *xprt = (struct rpc_xprt *)data;
641
4a0f8c04 642 spin_lock(&xprt->transport_lock);
1da177e4
LT
643 if (!list_empty(&xprt->recv) || xprt->shutdown)
644 goto out_abort;
2226feb6 645 if (test_and_set_bit(XPRT_LOCKED, &xprt->state))
1da177e4 646 goto out_abort;
4a0f8c04 647 spin_unlock(&xprt->transport_lock);
2226feb6 648 if (xprt_connecting(xprt))
1da177e4
LT
649 xprt_release_write(xprt, NULL);
650 else
c1384c9c 651 queue_work(rpciod_workqueue, &xprt->task_cleanup);
1da177e4
LT
652 return;
653out_abort:
4a0f8c04 654 spin_unlock(&xprt->transport_lock);
1da177e4
LT
655}
656
9903cd1c
CL
657/**
658 * xprt_connect - schedule a transport connect operation
659 * @task: RPC task that is requesting the connect
1da177e4
LT
660 *
661 */
662void xprt_connect(struct rpc_task *task)
663{
664 struct rpc_xprt *xprt = task->tk_xprt;
665
46121cf7 666 dprintk("RPC: %5u xprt_connect xprt %p %s connected\n", task->tk_pid,
1da177e4
LT
667 xprt, (xprt_connected(xprt) ? "is" : "is not"));
668
ec739ef0 669 if (!xprt_bound(xprt)) {
1da177e4
LT
670 task->tk_status = -EIO;
671 return;
672 }
673 if (!xprt_lock_write(xprt, task))
674 return;
675 if (xprt_connected(xprt))
a246b010
CL
676 xprt_release_write(xprt, task);
677 else {
678 if (task->tk_rqstp)
679 task->tk_rqstp->rq_bytes_sent = 0;
1da177e4 680
03bf4b70 681 task->tk_timeout = xprt->connect_timeout;
5d00837b 682 rpc_sleep_on(&xprt->pending, task, xprt_connect_status);
262ca07d 683 xprt->stat.connect_start = jiffies;
a246b010 684 xprt->ops->connect(task);
1da177e4
LT
685 }
686 return;
1da177e4
LT
687}
688
9903cd1c 689static void xprt_connect_status(struct rpc_task *task)
1da177e4
LT
690{
691 struct rpc_xprt *xprt = task->tk_xprt;
692
693 if (task->tk_status >= 0) {
262ca07d
CL
694 xprt->stat.connect_count++;
695 xprt->stat.connect_time += (long)jiffies - xprt->stat.connect_start;
46121cf7 696 dprintk("RPC: %5u xprt_connect_status: connection established\n",
1da177e4
LT
697 task->tk_pid);
698 return;
699 }
700
1da177e4
LT
701 switch (task->tk_status) {
702 case -ECONNREFUSED:
703 case -ECONNRESET:
46121cf7
CL
704 dprintk("RPC: %5u xprt_connect_status: server %s refused "
705 "connection\n", task->tk_pid,
706 task->tk_client->cl_server);
23475d66 707 break;
1da177e4 708 case -ENOTCONN:
46121cf7 709 dprintk("RPC: %5u xprt_connect_status: connection broken\n",
23475d66
CL
710 task->tk_pid);
711 break;
1da177e4 712 case -ETIMEDOUT:
46121cf7
CL
713 dprintk("RPC: %5u xprt_connect_status: connect attempt timed "
714 "out\n", task->tk_pid);
1da177e4
LT
715 break;
716 default:
46121cf7
CL
717 dprintk("RPC: %5u xprt_connect_status: error %d connecting to "
718 "server %s\n", task->tk_pid, -task->tk_status,
719 task->tk_client->cl_server);
23475d66
CL
720 xprt_release_write(xprt, task);
721 task->tk_status = -EIO;
1da177e4 722 }
1da177e4
LT
723}
724
9903cd1c
CL
725/**
726 * xprt_lookup_rqst - find an RPC request corresponding to an XID
727 * @xprt: transport on which the original request was transmitted
728 * @xid: RPC XID of incoming reply
729 *
1da177e4 730 */
d8ed029d 731struct rpc_rqst *xprt_lookup_rqst(struct rpc_xprt *xprt, __be32 xid)
1da177e4
LT
732{
733 struct list_head *pos;
1da177e4
LT
734
735 list_for_each(pos, &xprt->recv) {
736 struct rpc_rqst *entry = list_entry(pos, struct rpc_rqst, rq_list);
262ca07d
CL
737 if (entry->rq_xid == xid)
738 return entry;
1da177e4 739 }
46121cf7
CL
740
741 dprintk("RPC: xprt_lookup_rqst did not find xid %08x\n",
742 ntohl(xid));
262ca07d
CL
743 xprt->stat.bad_xids++;
744 return NULL;
1da177e4 745}
12444809 746EXPORT_SYMBOL_GPL(xprt_lookup_rqst);
1da177e4 747
1570c1e4
CL
748/**
749 * xprt_update_rtt - update an RPC client's RTT state after receiving a reply
750 * @task: RPC request that recently completed
751 *
752 */
753void xprt_update_rtt(struct rpc_task *task)
754{
755 struct rpc_rqst *req = task->tk_rqstp;
756 struct rpc_rtt *rtt = task->tk_client->cl_rtt;
757 unsigned timer = task->tk_msg.rpc_proc->p_timer;
758
759 if (timer) {
760 if (req->rq_ntrans == 1)
761 rpc_update_rtt(rtt, timer,
762 (long)jiffies - req->rq_xtime);
763 rpc_set_timeo(rtt, timer, req->rq_ntrans - 1);
764 }
765}
12444809 766EXPORT_SYMBOL_GPL(xprt_update_rtt);
1570c1e4 767
9903cd1c
CL
768/**
769 * xprt_complete_rqst - called when reply processing is complete
1570c1e4 770 * @task: RPC request that recently completed
9903cd1c
CL
771 * @copied: actual number of bytes received from the transport
772 *
1570c1e4 773 * Caller holds transport lock.
1da177e4 774 */
1570c1e4 775void xprt_complete_rqst(struct rpc_task *task, int copied)
1da177e4 776{
1570c1e4 777 struct rpc_rqst *req = task->tk_rqstp;
fda13939 778 struct rpc_xprt *xprt = req->rq_xprt;
1da177e4 779
1570c1e4
CL
780 dprintk("RPC: %5u xid %08x complete (%d bytes received)\n",
781 task->tk_pid, ntohl(req->rq_xid), copied);
1da177e4 782
fda13939 783 xprt->stat.recvs++;
ef759a2e
CL
784 task->tk_rtt = (long)jiffies - req->rq_xtime;
785
1da177e4 786 list_del_init(&req->rq_list);
1e799b67 787 req->rq_private_buf.len = copied;
43ac3f29
TM
788 /* Ensure all writes are done before we update req->rq_received */
789 smp_wmb();
1e799b67 790 req->rq_received = copied;
fda13939 791 rpc_wake_up_queued_task(&xprt->pending, task);
1da177e4 792}
12444809 793EXPORT_SYMBOL_GPL(xprt_complete_rqst);
1da177e4 794
46c0ee8b 795static void xprt_timer(struct rpc_task *task)
1da177e4 796{
46c0ee8b 797 struct rpc_rqst *req = task->tk_rqstp;
1da177e4
LT
798 struct rpc_xprt *xprt = req->rq_xprt;
799
5d00837b
TM
800 if (task->tk_status != -ETIMEDOUT)
801 return;
46121cf7 802 dprintk("RPC: %5u xprt_timer\n", task->tk_pid);
1da177e4 803
5d00837b 804 spin_lock_bh(&xprt->transport_lock);
46c0ee8b
CL
805 if (!req->rq_received) {
806 if (xprt->ops->timer)
807 xprt->ops->timer(task);
5d00837b
TM
808 } else
809 task->tk_status = 0;
810 spin_unlock_bh(&xprt->transport_lock);
1da177e4
LT
811}
812
9903cd1c
CL
813/**
814 * xprt_prepare_transmit - reserve the transport before sending a request
815 * @task: RPC task about to send a request
816 *
1da177e4 817 */
9903cd1c 818int xprt_prepare_transmit(struct rpc_task *task)
1da177e4
LT
819{
820 struct rpc_rqst *req = task->tk_rqstp;
821 struct rpc_xprt *xprt = req->rq_xprt;
822 int err = 0;
823
46121cf7 824 dprintk("RPC: %5u xprt_prepare_transmit\n", task->tk_pid);
1da177e4 825
4a0f8c04 826 spin_lock_bh(&xprt->transport_lock);
1da177e4
LT
827 if (req->rq_received && !req->rq_bytes_sent) {
828 err = req->rq_received;
829 goto out_unlock;
830 }
12a80469 831 if (!xprt->ops->reserve_xprt(task)) {
1da177e4
LT
832 err = -EAGAIN;
833 goto out_unlock;
834 }
835
836 if (!xprt_connected(xprt)) {
837 err = -ENOTCONN;
838 goto out_unlock;
839 }
840out_unlock:
4a0f8c04 841 spin_unlock_bh(&xprt->transport_lock);
1da177e4
LT
842 return err;
843}
844
e0ab53de 845void xprt_end_transmit(struct rpc_task *task)
5e5ce5be 846{
e0ab53de 847 xprt_release_write(task->tk_xprt, task);
5e5ce5be
TM
848}
849
9903cd1c
CL
850/**
851 * xprt_transmit - send an RPC request on a transport
852 * @task: controlling RPC task
853 *
854 * We have to copy the iovec because sendmsg fiddles with its contents.
855 */
856void xprt_transmit(struct rpc_task *task)
1da177e4 857{
1da177e4
LT
858 struct rpc_rqst *req = task->tk_rqstp;
859 struct rpc_xprt *xprt = req->rq_xprt;
a246b010 860 int status;
1da177e4 861
46121cf7 862 dprintk("RPC: %5u xprt_transmit(%u)\n", task->tk_pid, req->rq_slen);
1da177e4 863
1da177e4
LT
864 if (!req->rq_received) {
865 if (list_empty(&req->rq_list)) {
4a0f8c04 866 spin_lock_bh(&xprt->transport_lock);
1da177e4
LT
867 /* Update the softirq receive buffer */
868 memcpy(&req->rq_private_buf, &req->rq_rcv_buf,
869 sizeof(req->rq_private_buf));
870 /* Add request to the receive list */
871 list_add_tail(&req->rq_list, &xprt->recv);
4a0f8c04 872 spin_unlock_bh(&xprt->transport_lock);
1da177e4 873 xprt_reset_majortimeo(req);
0f9dc2b1
TM
874 /* Turn off autodisconnect */
875 del_singleshot_timer_sync(&xprt->timer);
1da177e4
LT
876 }
877 } else if (!req->rq_bytes_sent)
878 return;
879
7c1d71cf 880 req->rq_connect_cookie = xprt->connect_cookie;
a246b010 881 status = xprt->ops->send_request(task);
fe3aca29 882 if (status == 0) {
46121cf7 883 dprintk("RPC: %5u xmit complete\n", task->tk_pid);
fe3aca29 884 spin_lock_bh(&xprt->transport_lock);
262ca07d 885
fe3aca29 886 xprt->ops->set_retrans_timeout(task);
262ca07d
CL
887
888 xprt->stat.sends++;
889 xprt->stat.req_u += xprt->stat.sends - xprt->stat.recvs;
890 xprt->stat.bklog_u += xprt->backlog.qlen;
891
fe3aca29
CL
892 /* Don't race with disconnect */
893 if (!xprt_connected(xprt))
894 task->tk_status = -ENOTCONN;
895 else if (!req->rq_received)
5d00837b 896 rpc_sleep_on(&xprt->pending, task, xprt_timer);
fe3aca29
CL
897 spin_unlock_bh(&xprt->transport_lock);
898 return;
899 }
1da177e4
LT
900
901 /* Note: at this point, task->tk_sleeping has not yet been set,
902 * hence there is no danger of the waking up task being put on
903 * schedq, and being picked up by a parallel run of rpciod().
904 */
905 task->tk_status = status;
e0ab53de 906 if (status == -ECONNREFUSED)
5d00837b 907 rpc_sleep_on(&xprt->sending, task, NULL);
1da177e4
LT
908}
909
9903cd1c 910static inline void do_xprt_reserve(struct rpc_task *task)
1da177e4
LT
911{
912 struct rpc_xprt *xprt = task->tk_xprt;
913
914 task->tk_status = 0;
915 if (task->tk_rqstp)
916 return;
917 if (!list_empty(&xprt->free)) {
918 struct rpc_rqst *req = list_entry(xprt->free.next, struct rpc_rqst, rq_list);
919 list_del_init(&req->rq_list);
920 task->tk_rqstp = req;
921 xprt_request_init(task, xprt);
922 return;
923 }
46121cf7 924 dprintk("RPC: waiting for request slot\n");
1da177e4
LT
925 task->tk_status = -EAGAIN;
926 task->tk_timeout = 0;
5d00837b 927 rpc_sleep_on(&xprt->backlog, task, NULL);
1da177e4
LT
928}
929
9903cd1c
CL
930/**
931 * xprt_reserve - allocate an RPC request slot
932 * @task: RPC task requesting a slot allocation
933 *
934 * If no more slots are available, place the task on the transport's
935 * backlog queue.
936 */
937void xprt_reserve(struct rpc_task *task)
1da177e4
LT
938{
939 struct rpc_xprt *xprt = task->tk_xprt;
940
941 task->tk_status = -EIO;
0065db32
TM
942 spin_lock(&xprt->reserve_lock);
943 do_xprt_reserve(task);
944 spin_unlock(&xprt->reserve_lock);
1da177e4
LT
945}
946
d8ed029d 947static inline __be32 xprt_alloc_xid(struct rpc_xprt *xprt)
1da177e4
LT
948{
949 return xprt->xid++;
950}
951
952static inline void xprt_init_xid(struct rpc_xprt *xprt)
953{
bf3fcf89 954 xprt->xid = net_random();
1da177e4
LT
955}
956
9903cd1c 957static void xprt_request_init(struct rpc_task *task, struct rpc_xprt *xprt)
1da177e4
LT
958{
959 struct rpc_rqst *req = task->tk_rqstp;
960
ba7392bb 961 req->rq_timeout = task->tk_client->cl_timeout->to_initval;
1da177e4
LT
962 req->rq_task = task;
963 req->rq_xprt = xprt;
02107148 964 req->rq_buffer = NULL;
1da177e4 965 req->rq_xid = xprt_alloc_xid(xprt);
ead5e1c2 966 req->rq_release_snd_buf = NULL;
da45828e 967 xprt_reset_majortimeo(req);
46121cf7 968 dprintk("RPC: %5u reserved req %p xid %08x\n", task->tk_pid,
1da177e4
LT
969 req, ntohl(req->rq_xid));
970}
971
9903cd1c
CL
972/**
973 * xprt_release - release an RPC request slot
974 * @task: task which is finished with the slot
975 *
1da177e4 976 */
9903cd1c 977void xprt_release(struct rpc_task *task)
1da177e4
LT
978{
979 struct rpc_xprt *xprt = task->tk_xprt;
980 struct rpc_rqst *req;
981
982 if (!(req = task->tk_rqstp))
983 return;
11c556b3 984 rpc_count_iostats(task);
4a0f8c04 985 spin_lock_bh(&xprt->transport_lock);
49e9a890 986 xprt->ops->release_xprt(xprt, task);
a58dd398
CL
987 if (xprt->ops->release_request)
988 xprt->ops->release_request(task);
1da177e4
LT
989 if (!list_empty(&req->rq_list))
990 list_del(&req->rq_list);
991 xprt->last_used = jiffies;
0065db32 992 if (list_empty(&xprt->recv))
a246b010 993 mod_timer(&xprt->timer,
03bf4b70 994 xprt->last_used + xprt->idle_timeout);
4a0f8c04 995 spin_unlock_bh(&xprt->transport_lock);
c5a4dd8b 996 xprt->ops->buf_free(req->rq_buffer);
1da177e4 997 task->tk_rqstp = NULL;
ead5e1c2
BF
998 if (req->rq_release_snd_buf)
999 req->rq_release_snd_buf(req);
1da177e4
LT
1000 memset(req, 0, sizeof(*req)); /* mark unused */
1001
46121cf7 1002 dprintk("RPC: %5u release request %p\n", task->tk_pid, req);
1da177e4 1003
5dc07727 1004 spin_lock(&xprt->reserve_lock);
1da177e4 1005 list_add(&req->rq_list, &xprt->free);
555ee3af 1006 rpc_wake_up_next(&xprt->backlog);
5dc07727 1007 spin_unlock(&xprt->reserve_lock);
1da177e4
LT
1008}
1009
c2866763
CL
1010/**
1011 * xprt_create_transport - create an RPC transport
96802a09 1012 * @args: rpc transport creation arguments
c2866763
CL
1013 *
1014 */
3c341b0b 1015struct rpc_xprt *xprt_create_transport(struct xprt_create *args)
c2866763 1016{
c2866763
CL
1017 struct rpc_xprt *xprt;
1018 struct rpc_rqst *req;
bc25571e 1019 struct xprt_class *t;
c2866763 1020
bc25571e
TT
1021 spin_lock(&xprt_list_lock);
1022 list_for_each_entry(t, &xprt_list, list) {
4fa016eb 1023 if (t->ident == args->ident) {
bc25571e
TT
1024 spin_unlock(&xprt_list_lock);
1025 goto found;
1026 }
c2866763 1027 }
bc25571e 1028 spin_unlock(&xprt_list_lock);
4fa016eb 1029 printk(KERN_ERR "RPC: transport (%d) not supported\n", args->ident);
bc25571e
TT
1030 return ERR_PTR(-EIO);
1031
1032found:
1033 xprt = t->setup(args);
c8541ecd 1034 if (IS_ERR(xprt)) {
46121cf7 1035 dprintk("RPC: xprt_create_transport: failed, %ld\n",
c8541ecd
CL
1036 -PTR_ERR(xprt));
1037 return xprt;
c2866763
CL
1038 }
1039
6b6ca86b 1040 kref_init(&xprt->kref);
c2866763
CL
1041 spin_lock_init(&xprt->transport_lock);
1042 spin_lock_init(&xprt->reserve_lock);
1043
1044 INIT_LIST_HEAD(&xprt->free);
1045 INIT_LIST_HEAD(&xprt->recv);
65f27f38 1046 INIT_WORK(&xprt->task_cleanup, xprt_autoclose);
b24b8a24
PE
1047 setup_timer(&xprt->timer, xprt_init_autodisconnect,
1048 (unsigned long)xprt);
c2866763
CL
1049 xprt->last_used = jiffies;
1050 xprt->cwnd = RPC_INITCWND;
a509050b 1051 xprt->bind_index = 0;
c2866763
CL
1052
1053 rpc_init_wait_queue(&xprt->binding, "xprt_binding");
1054 rpc_init_wait_queue(&xprt->pending, "xprt_pending");
1055 rpc_init_wait_queue(&xprt->sending, "xprt_sending");
1056 rpc_init_wait_queue(&xprt->resend, "xprt_resend");
1057 rpc_init_priority_wait_queue(&xprt->backlog, "xprt_backlog");
1058
1059 /* initialize free list */
1060 for (req = &xprt->slot[xprt->max_reqs-1]; req >= &xprt->slot[0]; req--)
1061 list_add(&req->rq_list, &xprt->free);
1062
1063 xprt_init_xid(xprt);
1064
46121cf7 1065 dprintk("RPC: created transport %p with %u slots\n", xprt,
c2866763
CL
1066 xprt->max_reqs);
1067
1068 return xprt;
1069}
1070
9903cd1c
CL
1071/**
1072 * xprt_destroy - destroy an RPC transport, killing off all requests.
6b6ca86b 1073 * @kref: kref for the transport to destroy
9903cd1c 1074 *
1da177e4 1075 */
6b6ca86b 1076static void xprt_destroy(struct kref *kref)
1da177e4 1077{
6b6ca86b
TM
1078 struct rpc_xprt *xprt = container_of(kref, struct rpc_xprt, kref);
1079
46121cf7 1080 dprintk("RPC: destroying transport %p\n", xprt);
0065db32
TM
1081 xprt->shutdown = 1;
1082 del_timer_sync(&xprt->timer);
c8541ecd 1083
f6a1cc89
TM
1084 rpc_destroy_wait_queue(&xprt->binding);
1085 rpc_destroy_wait_queue(&xprt->pending);
1086 rpc_destroy_wait_queue(&xprt->sending);
1087 rpc_destroy_wait_queue(&xprt->resend);
1088 rpc_destroy_wait_queue(&xprt->backlog);
c8541ecd
CL
1089 /*
1090 * Tear down transport state and free the rpc_xprt
1091 */
a246b010 1092 xprt->ops->destroy(xprt);
6b6ca86b 1093}
1da177e4 1094
6b6ca86b
TM
1095/**
1096 * xprt_put - release a reference to an RPC transport.
1097 * @xprt: pointer to the transport
1098 *
1099 */
1100void xprt_put(struct rpc_xprt *xprt)
1101{
1102 kref_put(&xprt->kref, xprt_destroy);
1103}
1104
1105/**
1106 * xprt_get - return a reference to an RPC transport.
1107 * @xprt: pointer to the transport
1108 *
1109 */
1110struct rpc_xprt *xprt_get(struct rpc_xprt *xprt)
1111{
1112 kref_get(&xprt->kref);
1113 return xprt;
1da177e4 1114}