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