]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/sunrpc/xprt.c
SUNRPC: Ensure client closes the socket when server initiates a close
[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
LT
43#include <linux/workqueue.h>
44#include <linux/random.h>
45
a246b010 46#include <linux/sunrpc/clnt.h>
1da177e4
LT
47
48/*
49 * Local variables
50 */
51
52#ifdef RPC_DEBUG
53# undef RPC_DEBUG_DATA
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
555ee3af
CL
65/*
66 * The transport code maintains an estimate on the maximum number of out-
67 * standing RPC requests, using a smoothed version of the congestion
68 * avoidance implemented in 44BSD. This is basically the Van Jacobson
69 * congestion algorithm: If a retransmit occurs, the congestion window is
70 * halved; otherwise, it is incremented by 1/cwnd when
71 *
72 * - a reply is received and
73 * - a full number of requests are outstanding and
74 * - the congestion window hasn't been updated recently.
75 */
76#define RPC_CWNDSHIFT (8U)
77#define RPC_CWNDSCALE (1U << RPC_CWNDSHIFT)
78#define RPC_INITCWND RPC_CWNDSCALE
79#define RPC_MAXCWND(xprt) ((xprt)->max_reqs << RPC_CWNDSHIFT)
80
81#define RPCXPRT_CONGESTED(xprt) ((xprt)->cong >= (xprt)->cwnd)
1da177e4 82
12a80469
CL
83/**
84 * xprt_reserve_xprt - serialize write access to transports
85 * @task: task that is requesting access to the transport
86 *
87 * This prevents mixing the payload of separate requests, and prevents
88 * transport connects from colliding with writes. No congestion control
89 * is provided.
90 */
91int xprt_reserve_xprt(struct rpc_task *task)
92{
93 struct rpc_xprt *xprt = task->tk_xprt;
94 struct rpc_rqst *req = task->tk_rqstp;
95
96 if (test_and_set_bit(XPRT_LOCKED, &xprt->state)) {
97 if (task == xprt->snd_task)
98 return 1;
99 if (task == NULL)
100 return 0;
101 goto out_sleep;
102 }
103 xprt->snd_task = task;
104 if (req) {
105 req->rq_bytes_sent = 0;
106 req->rq_ntrans++;
107 }
108 return 1;
109
110out_sleep:
111 dprintk("RPC: %4d failed to lock transport %p\n",
112 task->tk_pid, xprt);
113 task->tk_timeout = 0;
114 task->tk_status = -EAGAIN;
115 if (req && req->rq_ntrans)
116 rpc_sleep_on(&xprt->resend, task, NULL, NULL);
117 else
118 rpc_sleep_on(&xprt->sending, task, NULL, NULL);
119 return 0;
120}
121
632e3bdc
TM
122static void xprt_clear_locked(struct rpc_xprt *xprt)
123{
124 xprt->snd_task = NULL;
125 if (!test_bit(XPRT_CLOSE_WAIT, &xprt->state) || xprt->shutdown) {
126 smp_mb__before_clear_bit();
127 clear_bit(XPRT_LOCKED, &xprt->state);
128 smp_mb__after_clear_bit();
129 } else
130 schedule_work(&xprt->task_cleanup);
131}
132
1da177e4 133/*
12a80469
CL
134 * xprt_reserve_xprt_cong - serialize write access to transports
135 * @task: task that is requesting access to the transport
136 *
137 * Same as xprt_reserve_xprt, but Van Jacobson congestion control is
138 * integrated into the decision of whether a request is allowed to be
139 * woken up and given access to the transport.
1da177e4 140 */
12a80469 141int xprt_reserve_xprt_cong(struct rpc_task *task)
1da177e4 142{
12a80469 143 struct rpc_xprt *xprt = task->tk_xprt;
1da177e4
LT
144 struct rpc_rqst *req = task->tk_rqstp;
145
2226feb6 146 if (test_and_set_bit(XPRT_LOCKED, &xprt->state)) {
1da177e4
LT
147 if (task == xprt->snd_task)
148 return 1;
1da177e4
LT
149 goto out_sleep;
150 }
12a80469 151 if (__xprt_get_cong(xprt, task)) {
1da177e4
LT
152 xprt->snd_task = task;
153 if (req) {
154 req->rq_bytes_sent = 0;
155 req->rq_ntrans++;
156 }
157 return 1;
158 }
632e3bdc 159 xprt_clear_locked(xprt);
1da177e4 160out_sleep:
55aa4f58 161 dprintk("RPC: %4d failed to lock transport %p\n", task->tk_pid, xprt);
1da177e4
LT
162 task->tk_timeout = 0;
163 task->tk_status = -EAGAIN;
164 if (req && req->rq_ntrans)
165 rpc_sleep_on(&xprt->resend, task, NULL, NULL);
166 else
167 rpc_sleep_on(&xprt->sending, task, NULL, NULL);
168 return 0;
169}
170
12a80469 171static inline int xprt_lock_write(struct rpc_xprt *xprt, struct rpc_task *task)
1da177e4
LT
172{
173 int retval;
174
4a0f8c04 175 spin_lock_bh(&xprt->transport_lock);
12a80469 176 retval = xprt->ops->reserve_xprt(task);
4a0f8c04 177 spin_unlock_bh(&xprt->transport_lock);
1da177e4
LT
178 return retval;
179}
180
12a80469 181static void __xprt_lock_write_next(struct rpc_xprt *xprt)
49e9a890
CL
182{
183 struct rpc_task *task;
184 struct rpc_rqst *req;
185
186 if (test_and_set_bit(XPRT_LOCKED, &xprt->state))
187 return;
188
189 task = rpc_wake_up_next(&xprt->resend);
190 if (!task) {
191 task = rpc_wake_up_next(&xprt->sending);
192 if (!task)
193 goto out_unlock;
194 }
195
196 req = task->tk_rqstp;
197 xprt->snd_task = task;
198 if (req) {
199 req->rq_bytes_sent = 0;
200 req->rq_ntrans++;
201 }
202 return;
203
204out_unlock:
632e3bdc 205 xprt_clear_locked(xprt);
49e9a890
CL
206}
207
208static void __xprt_lock_write_next_cong(struct rpc_xprt *xprt)
1da177e4
LT
209{
210 struct rpc_task *task;
211
2226feb6 212 if (test_and_set_bit(XPRT_LOCKED, &xprt->state))
1da177e4 213 return;
49e9a890 214 if (RPCXPRT_CONGESTED(xprt))
1da177e4
LT
215 goto out_unlock;
216 task = rpc_wake_up_next(&xprt->resend);
217 if (!task) {
218 task = rpc_wake_up_next(&xprt->sending);
219 if (!task)
220 goto out_unlock;
221 }
49e9a890 222 if (__xprt_get_cong(xprt, task)) {
1da177e4
LT
223 struct rpc_rqst *req = task->tk_rqstp;
224 xprt->snd_task = task;
225 if (req) {
226 req->rq_bytes_sent = 0;
227 req->rq_ntrans++;
228 }
229 return;
230 }
231out_unlock:
632e3bdc 232 xprt_clear_locked(xprt);
1da177e4
LT
233}
234
49e9a890
CL
235/**
236 * xprt_release_xprt - allow other requests to use a transport
237 * @xprt: transport with other tasks potentially waiting
238 * @task: task that is releasing access to the transport
239 *
240 * Note that "task" can be NULL. No congestion control is provided.
1da177e4 241 */
49e9a890 242void xprt_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task)
1da177e4
LT
243{
244 if (xprt->snd_task == task) {
632e3bdc 245 xprt_clear_locked(xprt);
1da177e4
LT
246 __xprt_lock_write_next(xprt);
247 }
248}
249
49e9a890
CL
250/**
251 * xprt_release_xprt_cong - allow other requests to use a transport
252 * @xprt: transport with other tasks potentially waiting
253 * @task: task that is releasing access to the transport
254 *
255 * Note that "task" can be NULL. Another task is awoken to use the
256 * transport if the transport's congestion window allows it.
257 */
258void xprt_release_xprt_cong(struct rpc_xprt *xprt, struct rpc_task *task)
259{
260 if (xprt->snd_task == task) {
632e3bdc 261 xprt_clear_locked(xprt);
49e9a890
CL
262 __xprt_lock_write_next_cong(xprt);
263 }
264}
265
266static inline void xprt_release_write(struct rpc_xprt *xprt, struct rpc_task *task)
1da177e4 267{
4a0f8c04 268 spin_lock_bh(&xprt->transport_lock);
49e9a890 269 xprt->ops->release_xprt(xprt, task);
4a0f8c04 270 spin_unlock_bh(&xprt->transport_lock);
1da177e4
LT
271}
272
1da177e4
LT
273/*
274 * Van Jacobson congestion avoidance. Check if the congestion window
275 * overflowed. Put the task to sleep if this is the case.
276 */
277static int
278__xprt_get_cong(struct rpc_xprt *xprt, struct rpc_task *task)
279{
280 struct rpc_rqst *req = task->tk_rqstp;
281
282 if (req->rq_cong)
283 return 1;
284 dprintk("RPC: %4d xprt_cwnd_limited cong = %ld cwnd = %ld\n",
285 task->tk_pid, xprt->cong, xprt->cwnd);
286 if (RPCXPRT_CONGESTED(xprt))
287 return 0;
288 req->rq_cong = 1;
289 xprt->cong += RPC_CWNDSCALE;
290 return 1;
291}
292
293/*
294 * Adjust the congestion window, and wake up the next task
295 * that has been sleeping due to congestion
296 */
297static void
298__xprt_put_cong(struct rpc_xprt *xprt, struct rpc_rqst *req)
299{
300 if (!req->rq_cong)
301 return;
302 req->rq_cong = 0;
303 xprt->cong -= RPC_CWNDSCALE;
49e9a890 304 __xprt_lock_write_next_cong(xprt);
1da177e4
LT
305}
306
a58dd398
CL
307/**
308 * xprt_release_rqst_cong - housekeeping when request is complete
309 * @task: RPC request that recently completed
310 *
311 * Useful for transports that require congestion control.
312 */
313void xprt_release_rqst_cong(struct rpc_task *task)
314{
315 __xprt_put_cong(task->tk_xprt, task->tk_rqstp);
316}
317
46c0ee8b
CL
318/**
319 * xprt_adjust_cwnd - adjust transport congestion window
320 * @task: recently completed RPC request used to adjust window
321 * @result: result code of completed RPC request
322 *
1da177e4
LT
323 * We use a time-smoothed congestion estimator to avoid heavy oscillation.
324 */
46c0ee8b 325void xprt_adjust_cwnd(struct rpc_task *task, int result)
1da177e4 326{
46c0ee8b
CL
327 struct rpc_rqst *req = task->tk_rqstp;
328 struct rpc_xprt *xprt = task->tk_xprt;
329 unsigned long cwnd = xprt->cwnd;
1da177e4 330
1da177e4
LT
331 if (result >= 0 && cwnd <= xprt->cong) {
332 /* The (cwnd >> 1) term makes sure
333 * the result gets rounded properly. */
334 cwnd += (RPC_CWNDSCALE * RPC_CWNDSCALE + (cwnd >> 1)) / cwnd;
335 if (cwnd > RPC_MAXCWND(xprt))
336 cwnd = RPC_MAXCWND(xprt);
49e9a890 337 __xprt_lock_write_next_cong(xprt);
1da177e4
LT
338 } else if (result == -ETIMEDOUT) {
339 cwnd >>= 1;
340 if (cwnd < RPC_CWNDSCALE)
341 cwnd = RPC_CWNDSCALE;
342 }
343 dprintk("RPC: cong %ld, cwnd was %ld, now %ld\n",
344 xprt->cong, xprt->cwnd, cwnd);
345 xprt->cwnd = cwnd;
46c0ee8b 346 __xprt_put_cong(xprt, req);
1da177e4
LT
347}
348
44fbac22
CL
349/**
350 * xprt_wake_pending_tasks - wake all tasks on a transport's pending queue
351 * @xprt: transport with waiting tasks
352 * @status: result code to plant in each task before waking it
353 *
354 */
355void xprt_wake_pending_tasks(struct rpc_xprt *xprt, int status)
356{
357 if (status < 0)
358 rpc_wake_up_status(&xprt->pending, status);
359 else
360 rpc_wake_up(&xprt->pending);
361}
362
c7b2cae8
CL
363/**
364 * xprt_wait_for_buffer_space - wait for transport output buffer to clear
365 * @task: task to be put to sleep
366 *
367 */
368void xprt_wait_for_buffer_space(struct rpc_task *task)
369{
370 struct rpc_rqst *req = task->tk_rqstp;
371 struct rpc_xprt *xprt = req->rq_xprt;
372
373 task->tk_timeout = req->rq_timeout;
374 rpc_sleep_on(&xprt->pending, task, NULL, NULL);
375}
376
377/**
378 * xprt_write_space - wake the task waiting for transport output buffer space
379 * @xprt: transport with waiting tasks
380 *
381 * Can be called in a soft IRQ context, so xprt_write_space never sleeps.
382 */
383void xprt_write_space(struct rpc_xprt *xprt)
384{
385 if (unlikely(xprt->shutdown))
386 return;
387
388 spin_lock_bh(&xprt->transport_lock);
389 if (xprt->snd_task) {
390 dprintk("RPC: write space: waking waiting task on xprt %p\n",
391 xprt);
392 rpc_wake_up_task(xprt->snd_task);
393 }
394 spin_unlock_bh(&xprt->transport_lock);
395}
396
fe3aca29
CL
397/**
398 * xprt_set_retrans_timeout_def - set a request's retransmit timeout
399 * @task: task whose timeout is to be set
400 *
401 * Set a request's retransmit timeout based on the transport's
402 * default timeout parameters. Used by transports that don't adjust
403 * the retransmit timeout based on round-trip time estimation.
404 */
405void xprt_set_retrans_timeout_def(struct rpc_task *task)
406{
407 task->tk_timeout = task->tk_rqstp->rq_timeout;
408}
409
410/*
411 * xprt_set_retrans_timeout_rtt - set a request's retransmit timeout
412 * @task: task whose timeout is to be set
413 *
414 * Set a request's retransmit timeout using the RTT estimator.
415 */
416void xprt_set_retrans_timeout_rtt(struct rpc_task *task)
417{
418 int timer = task->tk_msg.rpc_proc->p_timer;
419 struct rpc_rtt *rtt = task->tk_client->cl_rtt;
420 struct rpc_rqst *req = task->tk_rqstp;
421 unsigned long max_timeout = req->rq_xprt->timeout.to_maxval;
422
423 task->tk_timeout = rpc_calc_rto(rtt, timer);
424 task->tk_timeout <<= rpc_ntimeo(rtt, timer) + req->rq_retries;
425 if (task->tk_timeout > max_timeout || task->tk_timeout == 0)
426 task->tk_timeout = max_timeout;
427}
428
1da177e4
LT
429static void xprt_reset_majortimeo(struct rpc_rqst *req)
430{
431 struct rpc_timeout *to = &req->rq_xprt->timeout;
432
433 req->rq_majortimeo = req->rq_timeout;
434 if (to->to_exponential)
435 req->rq_majortimeo <<= to->to_retries;
436 else
437 req->rq_majortimeo += to->to_increment * to->to_retries;
438 if (req->rq_majortimeo > to->to_maxval || req->rq_majortimeo == 0)
439 req->rq_majortimeo = to->to_maxval;
440 req->rq_majortimeo += jiffies;
441}
442
9903cd1c
CL
443/**
444 * xprt_adjust_timeout - adjust timeout values for next retransmit
445 * @req: RPC request containing parameters to use for the adjustment
446 *
1da177e4
LT
447 */
448int xprt_adjust_timeout(struct rpc_rqst *req)
449{
450 struct rpc_xprt *xprt = req->rq_xprt;
451 struct rpc_timeout *to = &xprt->timeout;
452 int status = 0;
453
454 if (time_before(jiffies, req->rq_majortimeo)) {
455 if (to->to_exponential)
456 req->rq_timeout <<= 1;
457 else
458 req->rq_timeout += to->to_increment;
459 if (to->to_maxval && req->rq_timeout >= to->to_maxval)
460 req->rq_timeout = to->to_maxval;
461 req->rq_retries++;
462 pprintk("RPC: %lu retrans\n", jiffies);
463 } else {
464 req->rq_timeout = to->to_initval;
465 req->rq_retries = 0;
466 xprt_reset_majortimeo(req);
467 /* Reset the RTT counters == "slow start" */
4a0f8c04 468 spin_lock_bh(&xprt->transport_lock);
1da177e4 469 rpc_init_rtt(req->rq_task->tk_client->cl_rtt, to->to_initval);
4a0f8c04 470 spin_unlock_bh(&xprt->transport_lock);
1da177e4
LT
471 pprintk("RPC: %lu timeout\n", jiffies);
472 status = -ETIMEDOUT;
473 }
474
475 if (req->rq_timeout == 0) {
476 printk(KERN_WARNING "xprt_adjust_timeout: rq_timeout = 0!\n");
477 req->rq_timeout = 5 * HZ;
478 }
479 return status;
480}
481
55aa4f58 482static void xprt_autoclose(void *args)
1da177e4
LT
483{
484 struct rpc_xprt *xprt = (struct rpc_xprt *)args;
485
486 xprt_disconnect(xprt);
a246b010 487 xprt->ops->close(xprt);
1da177e4
LT
488 xprt_release_write(xprt, NULL);
489}
490
9903cd1c
CL
491/**
492 * xprt_disconnect - mark a transport as disconnected
493 * @xprt: transport to flag for disconnect
494 *
1da177e4 495 */
a246b010 496void xprt_disconnect(struct rpc_xprt *xprt)
1da177e4
LT
497{
498 dprintk("RPC: disconnected transport %p\n", xprt);
4a0f8c04 499 spin_lock_bh(&xprt->transport_lock);
1da177e4 500 xprt_clear_connected(xprt);
44fbac22 501 xprt_wake_pending_tasks(xprt, -ENOTCONN);
4a0f8c04 502 spin_unlock_bh(&xprt->transport_lock);
1da177e4
LT
503}
504
1da177e4
LT
505static void
506xprt_init_autodisconnect(unsigned long data)
507{
508 struct rpc_xprt *xprt = (struct rpc_xprt *)data;
509
4a0f8c04 510 spin_lock(&xprt->transport_lock);
1da177e4
LT
511 if (!list_empty(&xprt->recv) || xprt->shutdown)
512 goto out_abort;
2226feb6 513 if (test_and_set_bit(XPRT_LOCKED, &xprt->state))
1da177e4 514 goto out_abort;
4a0f8c04 515 spin_unlock(&xprt->transport_lock);
2226feb6 516 if (xprt_connecting(xprt))
1da177e4
LT
517 xprt_release_write(xprt, NULL);
518 else
519 schedule_work(&xprt->task_cleanup);
520 return;
521out_abort:
4a0f8c04 522 spin_unlock(&xprt->transport_lock);
1da177e4
LT
523}
524
9903cd1c
CL
525/**
526 * xprt_connect - schedule a transport connect operation
527 * @task: RPC task that is requesting the connect
1da177e4
LT
528 *
529 */
530void xprt_connect(struct rpc_task *task)
531{
532 struct rpc_xprt *xprt = task->tk_xprt;
533
534 dprintk("RPC: %4d xprt_connect xprt %p %s connected\n", task->tk_pid,
535 xprt, (xprt_connected(xprt) ? "is" : "is not"));
536
537 if (xprt->shutdown) {
538 task->tk_status = -EIO;
539 return;
540 }
541 if (!xprt->addr.sin_port) {
542 task->tk_status = -EIO;
543 return;
544 }
545 if (!xprt_lock_write(xprt, task))
546 return;
547 if (xprt_connected(xprt))
a246b010
CL
548 xprt_release_write(xprt, task);
549 else {
550 if (task->tk_rqstp)
551 task->tk_rqstp->rq_bytes_sent = 0;
1da177e4 552
03bf4b70 553 task->tk_timeout = xprt->connect_timeout;
a246b010
CL
554 rpc_sleep_on(&xprt->pending, task, xprt_connect_status, NULL);
555 xprt->ops->connect(task);
1da177e4
LT
556 }
557 return;
1da177e4
LT
558}
559
9903cd1c 560static void xprt_connect_status(struct rpc_task *task)
1da177e4
LT
561{
562 struct rpc_xprt *xprt = task->tk_xprt;
563
564 if (task->tk_status >= 0) {
565 dprintk("RPC: %4d xprt_connect_status: connection established\n",
566 task->tk_pid);
567 return;
568 }
569
1da177e4
LT
570 switch (task->tk_status) {
571 case -ECONNREFUSED:
572 case -ECONNRESET:
23475d66
CL
573 dprintk("RPC: %4d xprt_connect_status: server %s refused connection\n",
574 task->tk_pid, task->tk_client->cl_server);
575 break;
1da177e4 576 case -ENOTCONN:
23475d66
CL
577 dprintk("RPC: %4d xprt_connect_status: connection broken\n",
578 task->tk_pid);
579 break;
1da177e4 580 case -ETIMEDOUT:
23475d66 581 dprintk("RPC: %4d xprt_connect_status: connect attempt timed out\n",
1da177e4
LT
582 task->tk_pid);
583 break;
584 default:
23475d66
CL
585 dprintk("RPC: %4d xprt_connect_status: error %d connecting to server %s\n",
586 task->tk_pid, -task->tk_status, task->tk_client->cl_server);
587 xprt_release_write(xprt, task);
588 task->tk_status = -EIO;
589 return;
590 }
591
592 /* if soft mounted, just cause this RPC to fail */
593 if (RPC_IS_SOFT(task)) {
594 xprt_release_write(xprt, task);
595 task->tk_status = -EIO;
1da177e4 596 }
1da177e4
LT
597}
598
9903cd1c
CL
599/**
600 * xprt_lookup_rqst - find an RPC request corresponding to an XID
601 * @xprt: transport on which the original request was transmitted
602 * @xid: RPC XID of incoming reply
603 *
1da177e4 604 */
a246b010 605struct rpc_rqst *xprt_lookup_rqst(struct rpc_xprt *xprt, u32 xid)
1da177e4
LT
606{
607 struct list_head *pos;
608 struct rpc_rqst *req = NULL;
609
610 list_for_each(pos, &xprt->recv) {
611 struct rpc_rqst *entry = list_entry(pos, struct rpc_rqst, rq_list);
612 if (entry->rq_xid == xid) {
613 req = entry;
614 break;
615 }
616 }
617 return req;
618}
619
1570c1e4
CL
620/**
621 * xprt_update_rtt - update an RPC client's RTT state after receiving a reply
622 * @task: RPC request that recently completed
623 *
624 */
625void xprt_update_rtt(struct rpc_task *task)
626{
627 struct rpc_rqst *req = task->tk_rqstp;
628 struct rpc_rtt *rtt = task->tk_client->cl_rtt;
629 unsigned timer = task->tk_msg.rpc_proc->p_timer;
630
631 if (timer) {
632 if (req->rq_ntrans == 1)
633 rpc_update_rtt(rtt, timer,
634 (long)jiffies - req->rq_xtime);
635 rpc_set_timeo(rtt, timer, req->rq_ntrans - 1);
636 }
637}
638
9903cd1c
CL
639/**
640 * xprt_complete_rqst - called when reply processing is complete
1570c1e4 641 * @task: RPC request that recently completed
9903cd1c
CL
642 * @copied: actual number of bytes received from the transport
643 *
1570c1e4 644 * Caller holds transport lock.
1da177e4 645 */
1570c1e4 646void xprt_complete_rqst(struct rpc_task *task, int copied)
1da177e4 647{
1570c1e4 648 struct rpc_rqst *req = task->tk_rqstp;
1da177e4 649
1570c1e4
CL
650 dprintk("RPC: %5u xid %08x complete (%d bytes received)\n",
651 task->tk_pid, ntohl(req->rq_xid), copied);
1da177e4 652
1da177e4
LT
653 list_del_init(&req->rq_list);
654 req->rq_received = req->rq_private_buf.len = copied;
1da177e4 655 rpc_wake_up_task(task);
1da177e4
LT
656}
657
46c0ee8b 658static void xprt_timer(struct rpc_task *task)
1da177e4 659{
46c0ee8b 660 struct rpc_rqst *req = task->tk_rqstp;
1da177e4
LT
661 struct rpc_xprt *xprt = req->rq_xprt;
662
46c0ee8b 663 dprintk("RPC: %4d xprt_timer\n", task->tk_pid);
1da177e4 664
46c0ee8b
CL
665 spin_lock(&xprt->transport_lock);
666 if (!req->rq_received) {
667 if (xprt->ops->timer)
668 xprt->ops->timer(task);
669 task->tk_status = -ETIMEDOUT;
670 }
1da177e4
LT
671 task->tk_timeout = 0;
672 rpc_wake_up_task(task);
4a0f8c04 673 spin_unlock(&xprt->transport_lock);
1da177e4
LT
674}
675
9903cd1c
CL
676/**
677 * xprt_prepare_transmit - reserve the transport before sending a request
678 * @task: RPC task about to send a request
679 *
1da177e4 680 */
9903cd1c 681int xprt_prepare_transmit(struct rpc_task *task)
1da177e4
LT
682{
683 struct rpc_rqst *req = task->tk_rqstp;
684 struct rpc_xprt *xprt = req->rq_xprt;
685 int err = 0;
686
687 dprintk("RPC: %4d xprt_prepare_transmit\n", task->tk_pid);
688
689 if (xprt->shutdown)
690 return -EIO;
691
4a0f8c04 692 spin_lock_bh(&xprt->transport_lock);
1da177e4
LT
693 if (req->rq_received && !req->rq_bytes_sent) {
694 err = req->rq_received;
695 goto out_unlock;
696 }
12a80469 697 if (!xprt->ops->reserve_xprt(task)) {
1da177e4
LT
698 err = -EAGAIN;
699 goto out_unlock;
700 }
701
702 if (!xprt_connected(xprt)) {
703 err = -ENOTCONN;
704 goto out_unlock;
705 }
706out_unlock:
4a0f8c04 707 spin_unlock_bh(&xprt->transport_lock);
1da177e4
LT
708 return err;
709}
710
5e5ce5be
TM
711void
712xprt_abort_transmit(struct rpc_task *task)
713{
714 struct rpc_xprt *xprt = task->tk_xprt;
715
716 xprt_release_write(xprt, task);
717}
718
9903cd1c
CL
719/**
720 * xprt_transmit - send an RPC request on a transport
721 * @task: controlling RPC task
722 *
723 * We have to copy the iovec because sendmsg fiddles with its contents.
724 */
725void xprt_transmit(struct rpc_task *task)
1da177e4 726{
1da177e4
LT
727 struct rpc_rqst *req = task->tk_rqstp;
728 struct rpc_xprt *xprt = req->rq_xprt;
a246b010 729 int status;
1da177e4
LT
730
731 dprintk("RPC: %4d xprt_transmit(%u)\n", task->tk_pid, req->rq_slen);
732
1da177e4
LT
733 smp_rmb();
734 if (!req->rq_received) {
735 if (list_empty(&req->rq_list)) {
4a0f8c04 736 spin_lock_bh(&xprt->transport_lock);
1da177e4
LT
737 /* Update the softirq receive buffer */
738 memcpy(&req->rq_private_buf, &req->rq_rcv_buf,
739 sizeof(req->rq_private_buf));
740 /* Add request to the receive list */
741 list_add_tail(&req->rq_list, &xprt->recv);
4a0f8c04 742 spin_unlock_bh(&xprt->transport_lock);
1da177e4 743 xprt_reset_majortimeo(req);
0f9dc2b1
TM
744 /* Turn off autodisconnect */
745 del_singleshot_timer_sync(&xprt->timer);
1da177e4
LT
746 }
747 } else if (!req->rq_bytes_sent)
748 return;
749
a246b010 750 status = xprt->ops->send_request(task);
fe3aca29
CL
751 if (status == 0) {
752 dprintk("RPC: %4d xmit complete\n", task->tk_pid);
753 spin_lock_bh(&xprt->transport_lock);
754 xprt->ops->set_retrans_timeout(task);
755 /* Don't race with disconnect */
756 if (!xprt_connected(xprt))
757 task->tk_status = -ENOTCONN;
758 else if (!req->rq_received)
759 rpc_sleep_on(&xprt->pending, task, NULL, xprt_timer);
49e9a890 760 xprt->ops->release_xprt(xprt, task);
fe3aca29
CL
761 spin_unlock_bh(&xprt->transport_lock);
762 return;
763 }
1da177e4
LT
764
765 /* Note: at this point, task->tk_sleeping has not yet been set,
766 * hence there is no danger of the waking up task being put on
767 * schedq, and being picked up by a parallel run of rpciod().
768 */
769 task->tk_status = status;
770
771 switch (status) {
1da177e4 772 case -ECONNREFUSED:
1da177e4 773 rpc_sleep_on(&xprt->sending, task, NULL, NULL);
a246b010 774 case -EAGAIN:
1da177e4
LT
775 case -ENOTCONN:
776 return;
777 default:
43118c29 778 break;
1da177e4
LT
779 }
780 xprt_release_write(xprt, task);
781 return;
1da177e4
LT
782}
783
9903cd1c 784static inline void do_xprt_reserve(struct rpc_task *task)
1da177e4
LT
785{
786 struct rpc_xprt *xprt = task->tk_xprt;
787
788 task->tk_status = 0;
789 if (task->tk_rqstp)
790 return;
791 if (!list_empty(&xprt->free)) {
792 struct rpc_rqst *req = list_entry(xprt->free.next, struct rpc_rqst, rq_list);
793 list_del_init(&req->rq_list);
794 task->tk_rqstp = req;
795 xprt_request_init(task, xprt);
796 return;
797 }
798 dprintk("RPC: waiting for request slot\n");
799 task->tk_status = -EAGAIN;
800 task->tk_timeout = 0;
801 rpc_sleep_on(&xprt->backlog, task, NULL, NULL);
802}
803
9903cd1c
CL
804/**
805 * xprt_reserve - allocate an RPC request slot
806 * @task: RPC task requesting a slot allocation
807 *
808 * If no more slots are available, place the task on the transport's
809 * backlog queue.
810 */
811void xprt_reserve(struct rpc_task *task)
1da177e4
LT
812{
813 struct rpc_xprt *xprt = task->tk_xprt;
814
815 task->tk_status = -EIO;
816 if (!xprt->shutdown) {
5dc07727 817 spin_lock(&xprt->reserve_lock);
1da177e4 818 do_xprt_reserve(task);
5dc07727 819 spin_unlock(&xprt->reserve_lock);
1da177e4
LT
820 }
821}
822
1da177e4
LT
823static inline u32 xprt_alloc_xid(struct rpc_xprt *xprt)
824{
825 return xprt->xid++;
826}
827
828static inline void xprt_init_xid(struct rpc_xprt *xprt)
829{
830 get_random_bytes(&xprt->xid, sizeof(xprt->xid));
831}
832
9903cd1c 833static void xprt_request_init(struct rpc_task *task, struct rpc_xprt *xprt)
1da177e4
LT
834{
835 struct rpc_rqst *req = task->tk_rqstp;
836
837 req->rq_timeout = xprt->timeout.to_initval;
838 req->rq_task = task;
839 req->rq_xprt = xprt;
02107148
CL
840 req->rq_buffer = NULL;
841 req->rq_bufsize = 0;
1da177e4 842 req->rq_xid = xprt_alloc_xid(xprt);
ead5e1c2 843 req->rq_release_snd_buf = NULL;
1da177e4
LT
844 dprintk("RPC: %4d reserved req %p xid %08x\n", task->tk_pid,
845 req, ntohl(req->rq_xid));
846}
847
9903cd1c
CL
848/**
849 * xprt_release - release an RPC request slot
850 * @task: task which is finished with the slot
851 *
1da177e4 852 */
9903cd1c 853void xprt_release(struct rpc_task *task)
1da177e4
LT
854{
855 struct rpc_xprt *xprt = task->tk_xprt;
856 struct rpc_rqst *req;
857
858 if (!(req = task->tk_rqstp))
859 return;
4a0f8c04 860 spin_lock_bh(&xprt->transport_lock);
49e9a890 861 xprt->ops->release_xprt(xprt, task);
a58dd398
CL
862 if (xprt->ops->release_request)
863 xprt->ops->release_request(task);
1da177e4
LT
864 if (!list_empty(&req->rq_list))
865 list_del(&req->rq_list);
866 xprt->last_used = jiffies;
867 if (list_empty(&xprt->recv) && !xprt->shutdown)
a246b010 868 mod_timer(&xprt->timer,
03bf4b70 869 xprt->last_used + xprt->idle_timeout);
4a0f8c04 870 spin_unlock_bh(&xprt->transport_lock);
02107148 871 xprt->ops->buf_free(task);
1da177e4 872 task->tk_rqstp = NULL;
ead5e1c2
BF
873 if (req->rq_release_snd_buf)
874 req->rq_release_snd_buf(req);
1da177e4
LT
875 memset(req, 0, sizeof(*req)); /* mark unused */
876
877 dprintk("RPC: %4d release request %p\n", task->tk_pid, req);
878
5dc07727 879 spin_lock(&xprt->reserve_lock);
1da177e4 880 list_add(&req->rq_list, &xprt->free);
555ee3af 881 rpc_wake_up_next(&xprt->backlog);
5dc07727 882 spin_unlock(&xprt->reserve_lock);
1da177e4
LT
883}
884
9903cd1c
CL
885/**
886 * xprt_set_timeout - set constant RPC timeout
887 * @to: RPC timeout parameters to set up
888 * @retr: number of retries
889 * @incr: amount of increase after each retry
890 *
1da177e4 891 */
9903cd1c 892void xprt_set_timeout(struct rpc_timeout *to, unsigned int retr, unsigned long incr)
1da177e4
LT
893{
894 to->to_initval =
895 to->to_increment = incr;
eab5c084 896 to->to_maxval = to->to_initval + (incr * retr);
1da177e4
LT
897 to->to_retries = retr;
898 to->to_exponential = 0;
899}
900
9903cd1c 901static struct rpc_xprt *xprt_setup(int proto, struct sockaddr_in *ap, struct rpc_timeout *to)
1da177e4 902{
a246b010 903 int result;
1da177e4 904 struct rpc_xprt *xprt;
1da177e4
LT
905 struct rpc_rqst *req;
906
1da177e4
LT
907 if ((xprt = kmalloc(sizeof(struct rpc_xprt), GFP_KERNEL)) == NULL)
908 return ERR_PTR(-ENOMEM);
909 memset(xprt, 0, sizeof(*xprt)); /* Nnnngh! */
1da177e4
LT
910
911 xprt->addr = *ap;
a246b010
CL
912
913 switch (proto) {
914 case IPPROTO_UDP:
915 result = xs_setup_udp(xprt, to);
916 break;
917 case IPPROTO_TCP:
918 result = xs_setup_tcp(xprt, to);
919 break;
920 default:
921 printk(KERN_ERR "RPC: unrecognized transport protocol: %d\n",
922 proto);
923 result = -EIO;
924 break;
925 }
926 if (result) {
927 kfree(xprt);
928 return ERR_PTR(result);
1da177e4 929 }
a246b010 930
4a0f8c04 931 spin_lock_init(&xprt->transport_lock);
5dc07727 932 spin_lock_init(&xprt->reserve_lock);
1da177e4
LT
933
934 INIT_LIST_HEAD(&xprt->free);
935 INIT_LIST_HEAD(&xprt->recv);
55aa4f58 936 INIT_WORK(&xprt->task_cleanup, xprt_autoclose, xprt);
1da177e4
LT
937 init_timer(&xprt->timer);
938 xprt->timer.function = xprt_init_autodisconnect;
939 xprt->timer.data = (unsigned long) xprt;
940 xprt->last_used = jiffies;
555ee3af 941 xprt->cwnd = RPC_INITCWND;
1da177e4
LT
942
943 rpc_init_wait_queue(&xprt->pending, "xprt_pending");
944 rpc_init_wait_queue(&xprt->sending, "xprt_sending");
945 rpc_init_wait_queue(&xprt->resend, "xprt_resend");
946 rpc_init_priority_wait_queue(&xprt->backlog, "xprt_backlog");
947
948 /* initialize free list */
a246b010 949 for (req = &xprt->slot[xprt->max_reqs-1]; req >= &xprt->slot[0]; req--)
1da177e4
LT
950 list_add(&req->rq_list, &xprt->free);
951
952 xprt_init_xid(xprt);
953
1da177e4
LT
954 dprintk("RPC: created transport %p with %u slots\n", xprt,
955 xprt->max_reqs);
956
957 return xprt;
958}
959
9903cd1c
CL
960/**
961 * xprt_create_proto - create an RPC client transport
962 * @proto: requested transport protocol
963 * @sap: remote peer's address
964 * @to: timeout parameters for new transport
965 *
1da177e4 966 */
9903cd1c 967struct rpc_xprt *xprt_create_proto(int proto, struct sockaddr_in *sap, struct rpc_timeout *to)
1da177e4
LT
968{
969 struct rpc_xprt *xprt;
970
971 xprt = xprt_setup(proto, sap, to);
972 if (IS_ERR(xprt))
973 dprintk("RPC: xprt_create_proto failed\n");
974 else
975 dprintk("RPC: xprt_create_proto created xprt %p\n", xprt);
976 return xprt;
977}
978
9903cd1c 979static void xprt_shutdown(struct rpc_xprt *xprt)
1da177e4
LT
980{
981 xprt->shutdown = 1;
982 rpc_wake_up(&xprt->sending);
983 rpc_wake_up(&xprt->resend);
44fbac22 984 xprt_wake_pending_tasks(xprt, -EIO);
1da177e4 985 rpc_wake_up(&xprt->backlog);
1da177e4
LT
986 del_timer_sync(&xprt->timer);
987}
988
9903cd1c
CL
989/**
990 * xprt_destroy - destroy an RPC transport, killing off all requests.
991 * @xprt: transport to destroy
992 *
1da177e4 993 */
9903cd1c 994int xprt_destroy(struct rpc_xprt *xprt)
1da177e4
LT
995{
996 dprintk("RPC: destroying transport %p\n", xprt);
997 xprt_shutdown(xprt);
a246b010 998 xprt->ops->destroy(xprt);
1da177e4
LT
999 kfree(xprt);
1000
1001 return 0;
1002}