xref: /openbmc/linux/net/rxrpc/call_object.c (revision a4ea4c47)
12874c5fdSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
28c3e34a4SDavid Howells /* RxRPC individual remote procedure call handling
38c3e34a4SDavid Howells  *
48c3e34a4SDavid Howells  * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
58c3e34a4SDavid Howells  * Written by David Howells (dhowells@redhat.com)
68c3e34a4SDavid Howells  */
78c3e34a4SDavid Howells 
88c3e34a4SDavid Howells #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
98c3e34a4SDavid Howells 
108c3e34a4SDavid Howells #include <linux/slab.h>
118c3e34a4SDavid Howells #include <linux/module.h>
128c3e34a4SDavid Howells #include <linux/circ_buf.h>
138c3e34a4SDavid Howells #include <linux/spinlock_types.h>
148c3e34a4SDavid Howells #include <net/sock.h>
158c3e34a4SDavid Howells #include <net/af_rxrpc.h>
168c3e34a4SDavid Howells #include "ar-internal.h"
178c3e34a4SDavid Howells 
188c3e34a4SDavid Howells const char *const rxrpc_call_states[NR__RXRPC_CALL_STATES] = {
19999b69f8SDavid Howells 	[RXRPC_CALL_UNINITIALISED]		= "Uninit  ",
20999b69f8SDavid Howells 	[RXRPC_CALL_CLIENT_AWAIT_CONN]		= "ClWtConn",
218c3e34a4SDavid Howells 	[RXRPC_CALL_CLIENT_SEND_REQUEST]	= "ClSndReq",
228c3e34a4SDavid Howells 	[RXRPC_CALL_CLIENT_AWAIT_REPLY]		= "ClAwtRpl",
238c3e34a4SDavid Howells 	[RXRPC_CALL_CLIENT_RECV_REPLY]		= "ClRcvRpl",
2400e90712SDavid Howells 	[RXRPC_CALL_SERVER_PREALLOC]		= "SvPrealc",
258c3e34a4SDavid Howells 	[RXRPC_CALL_SERVER_SECURING]		= "SvSecure",
268c3e34a4SDavid Howells 	[RXRPC_CALL_SERVER_RECV_REQUEST]	= "SvRcvReq",
278c3e34a4SDavid Howells 	[RXRPC_CALL_SERVER_ACK_REQUEST]		= "SvAckReq",
288c3e34a4SDavid Howells 	[RXRPC_CALL_SERVER_SEND_REPLY]		= "SvSndRpl",
298c3e34a4SDavid Howells 	[RXRPC_CALL_SERVER_AWAIT_ACK]		= "SvAwtACK",
308c3e34a4SDavid Howells 	[RXRPC_CALL_COMPLETE]			= "Complete",
31f5c17aaeSDavid Howells };
32f5c17aaeSDavid Howells 
33f5c17aaeSDavid Howells const char *const rxrpc_call_completions[NR__RXRPC_CALL_COMPLETIONS] = {
34f5c17aaeSDavid Howells 	[RXRPC_CALL_SUCCEEDED]			= "Complete",
358c3e34a4SDavid Howells 	[RXRPC_CALL_REMOTELY_ABORTED]		= "RmtAbort",
368c3e34a4SDavid Howells 	[RXRPC_CALL_LOCALLY_ABORTED]		= "LocAbort",
37f5c17aaeSDavid Howells 	[RXRPC_CALL_LOCAL_ERROR]		= "LocError",
388c3e34a4SDavid Howells 	[RXRPC_CALL_NETWORK_ERROR]		= "NetError",
398c3e34a4SDavid Howells };
408c3e34a4SDavid Howells 
418c3e34a4SDavid Howells struct kmem_cache *rxrpc_call_jar;
428c3e34a4SDavid Howells 
43b7a7d674SDavid Howells static struct semaphore rxrpc_call_limiter =
44b7a7d674SDavid Howells 	__SEMAPHORE_INITIALIZER(rxrpc_call_limiter, 1000);
45b7a7d674SDavid Howells static struct semaphore rxrpc_kernel_call_limiter =
46b7a7d674SDavid Howells 	__SEMAPHORE_INITIALIZER(rxrpc_kernel_call_limiter, 1000);
47b7a7d674SDavid Howells 
48e99e88a9SKees Cook static void rxrpc_call_timer_expired(struct timer_list *t)
49248f219cSDavid Howells {
50e99e88a9SKees Cook 	struct rxrpc_call *call = from_timer(call, t, timer);
51248f219cSDavid Howells 
52248f219cSDavid Howells 	_enter("%d", call->debug_id);
53248f219cSDavid Howells 
54a158bdd3SDavid Howells 	if (call->state < RXRPC_CALL_COMPLETE) {
55334dfbfcSDavid Howells 		trace_rxrpc_timer_expired(call, jiffies);
564a7f62f9SDavid Howells 		__rxrpc_queue_call(call);
574a7f62f9SDavid Howells 	} else {
584a7f62f9SDavid Howells 		rxrpc_put_call(call, rxrpc_call_put);
59fc7ab6d2SDavid Howells 	}
60248f219cSDavid Howells }
618c3e34a4SDavid Howells 
624a7f62f9SDavid Howells void rxrpc_reduce_call_timer(struct rxrpc_call *call,
634a7f62f9SDavid Howells 			     unsigned long expire_at,
644a7f62f9SDavid Howells 			     unsigned long now,
654a7f62f9SDavid Howells 			     enum rxrpc_timer_trace why)
664a7f62f9SDavid Howells {
674a7f62f9SDavid Howells 	if (rxrpc_try_get_call(call, rxrpc_call_got_timer)) {
684a7f62f9SDavid Howells 		trace_rxrpc_timer(call, why, now);
694a7f62f9SDavid Howells 		if (timer_reduce(&call->timer, expire_at))
704a7f62f9SDavid Howells 			rxrpc_put_call(call, rxrpc_call_put_notimer);
714a7f62f9SDavid Howells 	}
724a7f62f9SDavid Howells }
734a7f62f9SDavid Howells 
744a7f62f9SDavid Howells void rxrpc_delete_call_timer(struct rxrpc_call *call)
754a7f62f9SDavid Howells {
764a7f62f9SDavid Howells 	if (del_timer_sync(&call->timer))
774a7f62f9SDavid Howells 		rxrpc_put_call(call, rxrpc_call_put_timer);
784a7f62f9SDavid Howells }
794a7f62f9SDavid Howells 
809faaff59SDavid Howells static struct lock_class_key rxrpc_call_user_mutex_lock_class_key;
818c3e34a4SDavid Howells 
828c3e34a4SDavid Howells /*
838c3e34a4SDavid Howells  * find an extant server call
848c3e34a4SDavid Howells  * - called in process context with IRQs enabled
858c3e34a4SDavid Howells  */
868c3e34a4SDavid Howells struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *rx,
878c3e34a4SDavid Howells 					      unsigned long user_call_ID)
888c3e34a4SDavid Howells {
898c3e34a4SDavid Howells 	struct rxrpc_call *call;
908c3e34a4SDavid Howells 	struct rb_node *p;
918c3e34a4SDavid Howells 
928c3e34a4SDavid Howells 	_enter("%p,%lx", rx, user_call_ID);
938c3e34a4SDavid Howells 
948c3e34a4SDavid Howells 	read_lock(&rx->call_lock);
958c3e34a4SDavid Howells 
968c3e34a4SDavid Howells 	p = rx->calls.rb_node;
978c3e34a4SDavid Howells 	while (p) {
988c3e34a4SDavid Howells 		call = rb_entry(p, struct rxrpc_call, sock_node);
998c3e34a4SDavid Howells 
1008c3e34a4SDavid Howells 		if (user_call_ID < call->user_call_ID)
1018c3e34a4SDavid Howells 			p = p->rb_left;
1028c3e34a4SDavid Howells 		else if (user_call_ID > call->user_call_ID)
1038c3e34a4SDavid Howells 			p = p->rb_right;
1048c3e34a4SDavid Howells 		else
1058c3e34a4SDavid Howells 			goto found_extant_call;
1068c3e34a4SDavid Howells 	}
1078c3e34a4SDavid Howells 
1088c3e34a4SDavid Howells 	read_unlock(&rx->call_lock);
1098c3e34a4SDavid Howells 	_leave(" = NULL");
1108c3e34a4SDavid Howells 	return NULL;
1118c3e34a4SDavid Howells 
1128c3e34a4SDavid Howells found_extant_call:
113fff72429SDavid Howells 	rxrpc_get_call(call, rxrpc_call_got);
1148c3e34a4SDavid Howells 	read_unlock(&rx->call_lock);
115a0575429SDavid Howells 	_leave(" = %p [%d]", call, refcount_read(&call->ref));
1168c3e34a4SDavid Howells 	return call;
1178c3e34a4SDavid Howells }
1188c3e34a4SDavid Howells 
1198c3e34a4SDavid Howells /*
1208c3e34a4SDavid Howells  * allocate a new call
1218c3e34a4SDavid Howells  */
122a25e21f0SDavid Howells struct rxrpc_call *rxrpc_alloc_call(struct rxrpc_sock *rx, gfp_t gfp,
123a25e21f0SDavid Howells 				    unsigned int debug_id)
1248c3e34a4SDavid Howells {
1258c3e34a4SDavid Howells 	struct rxrpc_call *call;
126d3be4d24SDavid Howells 	struct rxrpc_net *rxnet = rxrpc_net(sock_net(&rx->sk));
1278c3e34a4SDavid Howells 
1288c3e34a4SDavid Howells 	call = kmem_cache_zalloc(rxrpc_call_jar, gfp);
1298c3e34a4SDavid Howells 	if (!call)
1308c3e34a4SDavid Howells 		return NULL;
1318c3e34a4SDavid Howells 
132248f219cSDavid Howells 	call->rxtx_buffer = kcalloc(RXRPC_RXTX_BUFF_SIZE,
133248f219cSDavid Howells 				    sizeof(struct sk_buff *),
1348c3e34a4SDavid Howells 				    gfp);
135248f219cSDavid Howells 	if (!call->rxtx_buffer)
136248f219cSDavid Howells 		goto nomem;
1378c3e34a4SDavid Howells 
138248f219cSDavid Howells 	call->rxtx_annotations = kcalloc(RXRPC_RXTX_BUFF_SIZE, sizeof(u8), gfp);
139248f219cSDavid Howells 	if (!call->rxtx_annotations)
140248f219cSDavid Howells 		goto nomem_2;
141248f219cSDavid Howells 
142540b1c48SDavid Howells 	mutex_init(&call->user_mutex);
1439faaff59SDavid Howells 
1449faaff59SDavid Howells 	/* Prevent lockdep reporting a deadlock false positive between the afs
1459faaff59SDavid Howells 	 * filesystem and sys_sendmsg() via the mmap sem.
1469faaff59SDavid Howells 	 */
1479faaff59SDavid Howells 	if (rx->sk.sk_kern_sock)
1489faaff59SDavid Howells 		lockdep_set_class(&call->user_mutex,
1499faaff59SDavid Howells 				  &rxrpc_call_user_mutex_lock_class_key);
1509faaff59SDavid Howells 
151e99e88a9SKees Cook 	timer_setup(&call->timer, rxrpc_call_timer_expired, 0);
1528c3e34a4SDavid Howells 	INIT_WORK(&call->processor, &rxrpc_process_call);
153999b69f8SDavid Howells 	INIT_LIST_HEAD(&call->link);
15445025bceSDavid Howells 	INIT_LIST_HEAD(&call->chan_wait_link);
1558c3e34a4SDavid Howells 	INIT_LIST_HEAD(&call->accept_link);
156248f219cSDavid Howells 	INIT_LIST_HEAD(&call->recvmsg_link);
157248f219cSDavid Howells 	INIT_LIST_HEAD(&call->sock_link);
158*a4ea4c47SDavid Howells 	INIT_LIST_HEAD(&call->tx_buffer);
1595d7edbc9SDavid Howells 	skb_queue_head_init(&call->recvmsg_queue);
1605d7edbc9SDavid Howells 	skb_queue_head_init(&call->rx_oos_queue);
16145025bceSDavid Howells 	init_waitqueue_head(&call->waitq);
1628c3e34a4SDavid Howells 	spin_lock_init(&call->lock);
16320acbd9aSDavid Howells 	spin_lock_init(&call->notify_lock);
164*a4ea4c47SDavid Howells 	spin_lock_init(&call->tx_lock);
165c1e15b49SDavid Howells 	spin_lock_init(&call->input_lock);
1668c3e34a4SDavid Howells 	rwlock_init(&call->state_lock);
167a0575429SDavid Howells 	refcount_set(&call->ref, 1);
168a25e21f0SDavid Howells 	call->debug_id = debug_id;
169e754eba6SDavid Howells 	call->tx_total_len = -1;
170a158bdd3SDavid Howells 	call->next_rx_timo = 20 * HZ;
171a158bdd3SDavid Howells 	call->next_req_timo = 1 * HZ;
1725d7edbc9SDavid Howells 	atomic64_set(&call->ackr_window, 0x100000001ULL);
1738c3e34a4SDavid Howells 
1748c3e34a4SDavid Howells 	memset(&call->sock_node, 0xed, sizeof(call->sock_node));
1758c3e34a4SDavid Howells 
17675e42126SDavid Howells 	call->rx_winsize = rxrpc_rx_window_size;
177248f219cSDavid Howells 	call->tx_winsize = 16;
17857494343SDavid Howells 
17957494343SDavid Howells 	call->cong_cwnd = 2;
180*a4ea4c47SDavid Howells 	call->cong_ssthresh = RXRPC_TX_MAX_WINDOW;
181d3be4d24SDavid Howells 
182d3be4d24SDavid Howells 	call->rxnet = rxnet;
1834700c4d8SDavid Howells 	call->rtt_avail = RXRPC_CALL_RTT_AVAIL_MASK;
184d3be4d24SDavid Howells 	atomic_inc(&rxnet->nr_calls);
1858c3e34a4SDavid Howells 	return call;
186248f219cSDavid Howells 
187248f219cSDavid Howells nomem_2:
188248f219cSDavid Howells 	kfree(call->rxtx_buffer);
189248f219cSDavid Howells nomem:
190248f219cSDavid Howells 	kmem_cache_free(rxrpc_call_jar, call);
191248f219cSDavid Howells 	return NULL;
1928c3e34a4SDavid Howells }
1938c3e34a4SDavid Howells 
1948c3e34a4SDavid Howells /*
195999b69f8SDavid Howells  * Allocate a new client call.
1968c3e34a4SDavid Howells  */
1979faaff59SDavid Howells static struct rxrpc_call *rxrpc_alloc_client_call(struct rxrpc_sock *rx,
1989faaff59SDavid Howells 						  struct sockaddr_rxrpc *srx,
199a25e21f0SDavid Howells 						  gfp_t gfp,
200a25e21f0SDavid Howells 						  unsigned int debug_id)
2018c3e34a4SDavid Howells {
2028c3e34a4SDavid Howells 	struct rxrpc_call *call;
20357494343SDavid Howells 	ktime_t now;
2048c3e34a4SDavid Howells 
2058c3e34a4SDavid Howells 	_enter("");
2068c3e34a4SDavid Howells 
207a25e21f0SDavid Howells 	call = rxrpc_alloc_call(rx, gfp, debug_id);
2088c3e34a4SDavid Howells 	if (!call)
2098c3e34a4SDavid Howells 		return ERR_PTR(-ENOMEM);
210999b69f8SDavid Howells 	call->state = RXRPC_CALL_CLIENT_AWAIT_CONN;
211999b69f8SDavid Howells 	call->service_id = srx->srx_service;
21257494343SDavid Howells 	now = ktime_get_real();
21357494343SDavid Howells 	call->acks_latest_ts = now;
21457494343SDavid Howells 	call->cong_tstamp = now;
215999b69f8SDavid Howells 
216999b69f8SDavid Howells 	_leave(" = %p", call);
217999b69f8SDavid Howells 	return call;
218999b69f8SDavid Howells }
219999b69f8SDavid Howells 
220999b69f8SDavid Howells /*
221248f219cSDavid Howells  * Initiate the call ack/resend/expiry timer.
222999b69f8SDavid Howells  */
223248f219cSDavid Howells static void rxrpc_start_call_timer(struct rxrpc_call *call)
224999b69f8SDavid Howells {
225a158bdd3SDavid Howells 	unsigned long now = jiffies;
226a158bdd3SDavid Howells 	unsigned long j = now + MAX_JIFFY_OFFSET;
227999b69f8SDavid Howells 
228530403d9SDavid Howells 	call->delay_ack_at = j;
229bd1fdf8cSDavid Howells 	call->ack_lost_at = j;
230a158bdd3SDavid Howells 	call->resend_at = j;
231a158bdd3SDavid Howells 	call->ping_at = j;
232a158bdd3SDavid Howells 	call->expect_rx_by = j;
233a158bdd3SDavid Howells 	call->expect_req_by = j;
234a158bdd3SDavid Howells 	call->expect_term_by = j;
235a158bdd3SDavid Howells 	call->timer.expires = now;
2368c3e34a4SDavid Howells }
2378c3e34a4SDavid Howells 
2388c3e34a4SDavid Howells /*
239b7a7d674SDavid Howells  * Wait for a call slot to become available.
240b7a7d674SDavid Howells  */
241b7a7d674SDavid Howells static struct semaphore *rxrpc_get_call_slot(struct rxrpc_call_params *p, gfp_t gfp)
242b7a7d674SDavid Howells {
243b7a7d674SDavid Howells 	struct semaphore *limiter = &rxrpc_call_limiter;
244b7a7d674SDavid Howells 
245b7a7d674SDavid Howells 	if (p->kernel)
246b7a7d674SDavid Howells 		limiter = &rxrpc_kernel_call_limiter;
247b7a7d674SDavid Howells 	if (p->interruptibility == RXRPC_UNINTERRUPTIBLE) {
248b7a7d674SDavid Howells 		down(limiter);
249b7a7d674SDavid Howells 		return limiter;
250b7a7d674SDavid Howells 	}
251b7a7d674SDavid Howells 	return down_interruptible(limiter) < 0 ? NULL : limiter;
252b7a7d674SDavid Howells }
253b7a7d674SDavid Howells 
254b7a7d674SDavid Howells /*
255b7a7d674SDavid Howells  * Release a call slot.
256b7a7d674SDavid Howells  */
257b7a7d674SDavid Howells static void rxrpc_put_call_slot(struct rxrpc_call *call)
258b7a7d674SDavid Howells {
259b7a7d674SDavid Howells 	struct semaphore *limiter = &rxrpc_call_limiter;
260b7a7d674SDavid Howells 
261b7a7d674SDavid Howells 	if (test_bit(RXRPC_CALL_KERNEL, &call->flags))
262b7a7d674SDavid Howells 		limiter = &rxrpc_kernel_call_limiter;
263b7a7d674SDavid Howells 	up(limiter);
264b7a7d674SDavid Howells }
265b7a7d674SDavid Howells 
266b7a7d674SDavid Howells /*
267540b1c48SDavid Howells  * Set up a call for the given parameters.
268540b1c48SDavid Howells  * - Called with the socket lock held, which it must release.
269540b1c48SDavid Howells  * - If it returns a call, the call's lock will need releasing by the caller.
2708c3e34a4SDavid Howells  */
2718c3e34a4SDavid Howells struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *rx,
27219ffa01cSDavid Howells 					 struct rxrpc_conn_parameters *cp,
273999b69f8SDavid Howells 					 struct sockaddr_rxrpc *srx,
27448124178SDavid Howells 					 struct rxrpc_call_params *p,
275a25e21f0SDavid Howells 					 gfp_t gfp,
276a25e21f0SDavid Howells 					 unsigned int debug_id)
277540b1c48SDavid Howells 	__releases(&rx->sk.sk_lock.slock)
27888f2a825SDavid Howells 	__acquires(&call->user_mutex)
2798c3e34a4SDavid Howells {
2808c3e34a4SDavid Howells 	struct rxrpc_call *call, *xcall;
281d3be4d24SDavid Howells 	struct rxrpc_net *rxnet;
282b7a7d674SDavid Howells 	struct semaphore *limiter;
2838c3e34a4SDavid Howells 	struct rb_node *parent, **pp;
284e34d4234SDavid Howells 	const void *here = __builtin_return_address(0);
285999b69f8SDavid Howells 	int ret;
2868c3e34a4SDavid Howells 
28748124178SDavid Howells 	_enter("%p,%lx", rx, p->user_call_ID);
2888c3e34a4SDavid Howells 
289b7a7d674SDavid Howells 	limiter = rxrpc_get_call_slot(p, gfp);
290b0f571ecSDavid Howells 	if (!limiter) {
291b0f571ecSDavid Howells 		release_sock(&rx->sk);
292b7a7d674SDavid Howells 		return ERR_PTR(-ERESTARTSYS);
293b0f571ecSDavid Howells 	}
294b7a7d674SDavid Howells 
295a25e21f0SDavid Howells 	call = rxrpc_alloc_client_call(rx, srx, gfp, debug_id);
2968c3e34a4SDavid Howells 	if (IS_ERR(call)) {
297540b1c48SDavid Howells 		release_sock(&rx->sk);
298b7a7d674SDavid Howells 		up(limiter);
2998c3e34a4SDavid Howells 		_leave(" = %ld", PTR_ERR(call));
3008c3e34a4SDavid Howells 		return call;
3018c3e34a4SDavid Howells 	}
3028c3e34a4SDavid Howells 
303e138aa7dSDavid Howells 	call->interruptibility = p->interruptibility;
30448124178SDavid Howells 	call->tx_total_len = p->tx_total_len;
30548c9e0ecSDavid Howells 	trace_rxrpc_call(call->debug_id, rxrpc_call_new_client,
306a0575429SDavid Howells 			 refcount_read(&call->ref),
30748124178SDavid Howells 			 here, (const void *)p->user_call_ID);
308b7a7d674SDavid Howells 	if (p->kernel)
309b7a7d674SDavid Howells 		__set_bit(RXRPC_CALL_KERNEL, &call->flags);
310e34d4234SDavid Howells 
311540b1c48SDavid Howells 	/* We need to protect a partially set up call against the user as we
312540b1c48SDavid Howells 	 * will be acting outside the socket lock.
313540b1c48SDavid Howells 	 */
314540b1c48SDavid Howells 	mutex_lock(&call->user_mutex);
315540b1c48SDavid Howells 
316999b69f8SDavid Howells 	/* Publish the call, even though it is incompletely set up as yet */
3178c3e34a4SDavid Howells 	write_lock(&rx->call_lock);
3188c3e34a4SDavid Howells 
3198c3e34a4SDavid Howells 	pp = &rx->calls.rb_node;
3208c3e34a4SDavid Howells 	parent = NULL;
3218c3e34a4SDavid Howells 	while (*pp) {
3228c3e34a4SDavid Howells 		parent = *pp;
3238c3e34a4SDavid Howells 		xcall = rb_entry(parent, struct rxrpc_call, sock_node);
3248c3e34a4SDavid Howells 
32548124178SDavid Howells 		if (p->user_call_ID < xcall->user_call_ID)
3268c3e34a4SDavid Howells 			pp = &(*pp)->rb_left;
32748124178SDavid Howells 		else if (p->user_call_ID > xcall->user_call_ID)
3288c3e34a4SDavid Howells 			pp = &(*pp)->rb_right;
3298c3e34a4SDavid Howells 		else
330357f5ef6SDavid Howells 			goto error_dup_user_ID;
3318c3e34a4SDavid Howells 	}
3328c3e34a4SDavid Howells 
333248f219cSDavid Howells 	rcu_assign_pointer(call->socket, rx);
33448124178SDavid Howells 	call->user_call_ID = p->user_call_ID;
335357f5ef6SDavid Howells 	__set_bit(RXRPC_CALL_HAS_USERID, &call->flags);
336fff72429SDavid Howells 	rxrpc_get_call(call, rxrpc_call_got_userid);
3378c3e34a4SDavid Howells 	rb_link_node(&call->sock_node, parent, pp);
3388c3e34a4SDavid Howells 	rb_insert_color(&call->sock_node, &rx->calls);
339248f219cSDavid Howells 	list_add(&call->sock_link, &rx->sock_calls);
340248f219cSDavid Howells 
3418c3e34a4SDavid Howells 	write_unlock(&rx->call_lock);
3428c3e34a4SDavid Howells 
343d3be4d24SDavid Howells 	rxnet = call->rxnet;
344ad25f5cbSDavid Howells 	spin_lock_bh(&rxnet->call_lock);
345ad25f5cbSDavid Howells 	list_add_tail_rcu(&call->link, &rxnet->calls);
346ad25f5cbSDavid Howells 	spin_unlock_bh(&rxnet->call_lock);
3478c3e34a4SDavid Howells 
348540b1c48SDavid Howells 	/* From this point on, the call is protected by its own lock. */
349540b1c48SDavid Howells 	release_sock(&rx->sk);
350540b1c48SDavid Howells 
351248f219cSDavid Howells 	/* Set up or get a connection record and set the protocol parameters,
352248f219cSDavid Howells 	 * including channel number and call ID.
353248f219cSDavid Howells 	 */
3545e33a23bSDavid Howells 	ret = rxrpc_connect_call(rx, call, cp, srx, gfp);
355999b69f8SDavid Howells 	if (ret < 0)
35665550098SDavid Howells 		goto error_attached_to_socket;
357999b69f8SDavid Howells 
35848c9e0ecSDavid Howells 	trace_rxrpc_call(call->debug_id, rxrpc_call_connected,
359a0575429SDavid Howells 			 refcount_read(&call->ref), here, NULL);
360a84a46d7SDavid Howells 
361248f219cSDavid Howells 	rxrpc_start_call_timer(call);
362248f219cSDavid Howells 
3638c3e34a4SDavid Howells 	_net("CALL new %d on CONN %d", call->debug_id, call->conn->debug_id);
3648c3e34a4SDavid Howells 
3658c3e34a4SDavid Howells 	_leave(" = %p [new]", call);
3668c3e34a4SDavid Howells 	return call;
3678c3e34a4SDavid Howells 
3688c3e34a4SDavid Howells 	/* We unexpectedly found the user ID in the list after taking
3698c3e34a4SDavid Howells 	 * the call_lock.  This shouldn't happen unless the user races
3708c3e34a4SDavid Howells 	 * with itself and tries to add the same user ID twice at the
3718c3e34a4SDavid Howells 	 * same time in different threads.
3728c3e34a4SDavid Howells 	 */
373357f5ef6SDavid Howells error_dup_user_ID:
3748c3e34a4SDavid Howells 	write_unlock(&rx->call_lock);
375540b1c48SDavid Howells 	release_sock(&rx->sk);
376357f5ef6SDavid Howells 	__rxrpc_set_call_completion(call, RXRPC_CALL_LOCAL_ERROR,
37765550098SDavid Howells 				    RX_CALL_DEAD, -EEXIST);
37848c9e0ecSDavid Howells 	trace_rxrpc_call(call->debug_id, rxrpc_call_error,
379a0575429SDavid Howells 			 refcount_read(&call->ref), here, ERR_PTR(-EEXIST));
380357f5ef6SDavid Howells 	rxrpc_release_call(rx, call);
381540b1c48SDavid Howells 	mutex_unlock(&call->user_mutex);
382357f5ef6SDavid Howells 	rxrpc_put_call(call, rxrpc_call_put);
38365550098SDavid Howells 	_leave(" = -EEXIST");
38465550098SDavid Howells 	return ERR_PTR(-EEXIST);
38565550098SDavid Howells 
38665550098SDavid Howells 	/* We got an error, but the call is attached to the socket and is in
38765550098SDavid Howells 	 * need of release.  However, we might now race with recvmsg() when
38865550098SDavid Howells 	 * completing the call queues it.  Return 0 from sys_sendmsg() and
38965550098SDavid Howells 	 * leave the error to recvmsg() to deal with.
39065550098SDavid Howells 	 */
39165550098SDavid Howells error_attached_to_socket:
39265550098SDavid Howells 	trace_rxrpc_call(call->debug_id, rxrpc_call_error,
393a0575429SDavid Howells 			 refcount_read(&call->ref), here, ERR_PTR(ret));
39465550098SDavid Howells 	set_bit(RXRPC_CALL_DISCONNECTED, &call->flags);
39565550098SDavid Howells 	__rxrpc_set_call_completion(call, RXRPC_CALL_LOCAL_ERROR,
39665550098SDavid Howells 				    RX_CALL_DEAD, ret);
39765550098SDavid Howells 	_leave(" = c=%08x [err]", call->debug_id);
39865550098SDavid Howells 	return call;
3998c3e34a4SDavid Howells }
4008c3e34a4SDavid Howells 
4018c3e34a4SDavid Howells /*
402248f219cSDavid Howells  * Set up an incoming call.  call->conn points to the connection.
403248f219cSDavid Howells  * This is called in BH context and isn't allowed to fail.
4048c3e34a4SDavid Howells  */
405248f219cSDavid Howells void rxrpc_incoming_call(struct rxrpc_sock *rx,
406248f219cSDavid Howells 			 struct rxrpc_call *call,
40742886ffeSDavid Howells 			 struct sk_buff *skb)
4088c3e34a4SDavid Howells {
409248f219cSDavid Howells 	struct rxrpc_connection *conn = call->conn;
41042886ffeSDavid Howells 	struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
411248f219cSDavid Howells 	u32 chan;
4128c3e34a4SDavid Howells 
413248f219cSDavid Howells 	_enter(",%d", call->conn->debug_id);
4148c3e34a4SDavid Howells 
415248f219cSDavid Howells 	rcu_assign_pointer(call->socket, rx);
416248f219cSDavid Howells 	call->call_id		= sp->hdr.callNumber;
417248f219cSDavid Howells 	call->service_id	= sp->hdr.serviceId;
418248f219cSDavid Howells 	call->cid		= sp->hdr.cid;
419248f219cSDavid Howells 	call->state		= RXRPC_CALL_SERVER_SECURING;
42057494343SDavid Howells 	call->cong_tstamp	= skb->tstamp;
4218c3e34a4SDavid Howells 
422248f219cSDavid Howells 	/* Set the channel for this call.  We don't get channel_lock as we're
423248f219cSDavid Howells 	 * only defending against the data_ready handler (which we're called
424248f219cSDavid Howells 	 * from) and the RESPONSE packet parser (which is only really
425248f219cSDavid Howells 	 * interested in call_counter and can cope with a disagreement with the
426248f219cSDavid Howells 	 * call pointer).
4278c3e34a4SDavid Howells 	 */
428248f219cSDavid Howells 	chan = sp->hdr.cid & RXRPC_CHANNELMASK;
429248f219cSDavid Howells 	conn->channels[chan].call_counter = call->call_id;
430248f219cSDavid Howells 	conn->channels[chan].call_id = call->call_id;
431a1399f8bSDavid Howells 	rcu_assign_pointer(conn->channels[chan].call, call);
4328c3e34a4SDavid Howells 
43385f32278SDavid Howells 	spin_lock(&conn->params.peer->lock);
434f3344303SDavid Howells 	hlist_add_head_rcu(&call->error_link, &conn->params.peer->error_targets);
43585f32278SDavid Howells 	spin_unlock(&conn->params.peer->lock);
4368c3e34a4SDavid Howells 
4378c3e34a4SDavid Howells 	_net("CALL incoming %d on CONN %d", call->debug_id, call->conn->debug_id);
4388c3e34a4SDavid Howells 
439248f219cSDavid Howells 	rxrpc_start_call_timer(call);
440248f219cSDavid Howells 	_leave("");
4418c3e34a4SDavid Howells }
4428c3e34a4SDavid Howells 
4438c3e34a4SDavid Howells /*
4448d94aa38SDavid Howells  * Queue a call's work processor, getting a ref to pass to the work queue.
4458d94aa38SDavid Howells  */
4468d94aa38SDavid Howells bool rxrpc_queue_call(struct rxrpc_call *call)
4478d94aa38SDavid Howells {
4488d94aa38SDavid Howells 	const void *here = __builtin_return_address(0);
449a0575429SDavid Howells 	int n;
450a0575429SDavid Howells 
451a0575429SDavid Howells 	if (!__refcount_inc_not_zero(&call->ref, &n))
4528d94aa38SDavid Howells 		return false;
4538d94aa38SDavid Howells 	if (rxrpc_queue_work(&call->processor))
45448c9e0ecSDavid Howells 		trace_rxrpc_call(call->debug_id, rxrpc_call_queued, n + 1,
45548c9e0ecSDavid Howells 				 here, NULL);
4568d94aa38SDavid Howells 	else
4578d94aa38SDavid Howells 		rxrpc_put_call(call, rxrpc_call_put_noqueue);
4588d94aa38SDavid Howells 	return true;
4598d94aa38SDavid Howells }
4608d94aa38SDavid Howells 
4618d94aa38SDavid Howells /*
4628d94aa38SDavid Howells  * Queue a call's work processor, passing the callers ref to the work queue.
4638d94aa38SDavid Howells  */
4648d94aa38SDavid Howells bool __rxrpc_queue_call(struct rxrpc_call *call)
4658d94aa38SDavid Howells {
4668d94aa38SDavid Howells 	const void *here = __builtin_return_address(0);
467a0575429SDavid Howells 	int n = refcount_read(&call->ref);
4688d94aa38SDavid Howells 	ASSERTCMP(n, >=, 1);
4698d94aa38SDavid Howells 	if (rxrpc_queue_work(&call->processor))
47048c9e0ecSDavid Howells 		trace_rxrpc_call(call->debug_id, rxrpc_call_queued_ref, n,
47148c9e0ecSDavid Howells 				 here, NULL);
4728d94aa38SDavid Howells 	else
4738d94aa38SDavid Howells 		rxrpc_put_call(call, rxrpc_call_put_noqueue);
4748d94aa38SDavid Howells 	return true;
4758d94aa38SDavid Howells }
4768d94aa38SDavid Howells 
4778d94aa38SDavid Howells /*
478e34d4234SDavid Howells  * Note the re-emergence of a call.
479e34d4234SDavid Howells  */
480e34d4234SDavid Howells void rxrpc_see_call(struct rxrpc_call *call)
481e34d4234SDavid Howells {
482e34d4234SDavid Howells 	const void *here = __builtin_return_address(0);
483e34d4234SDavid Howells 	if (call) {
484a0575429SDavid Howells 		int n = refcount_read(&call->ref);
485e34d4234SDavid Howells 
48648c9e0ecSDavid Howells 		trace_rxrpc_call(call->debug_id, rxrpc_call_seen, n,
48748c9e0ecSDavid Howells 				 here, NULL);
488e34d4234SDavid Howells 	}
489e34d4234SDavid Howells }
490e34d4234SDavid Howells 
4914a7f62f9SDavid Howells bool rxrpc_try_get_call(struct rxrpc_call *call, enum rxrpc_call_trace op)
4924a7f62f9SDavid Howells {
4934a7f62f9SDavid Howells 	const void *here = __builtin_return_address(0);
494a0575429SDavid Howells 	int n;
4954a7f62f9SDavid Howells 
496a0575429SDavid Howells 	if (!__refcount_inc_not_zero(&call->ref, &n))
4974a7f62f9SDavid Howells 		return false;
498a0575429SDavid Howells 	trace_rxrpc_call(call->debug_id, op, n + 1, here, NULL);
4994a7f62f9SDavid Howells 	return true;
5004a7f62f9SDavid Howells }
5014a7f62f9SDavid Howells 
502e34d4234SDavid Howells /*
503e34d4234SDavid Howells  * Note the addition of a ref on a call.
504e34d4234SDavid Howells  */
505fff72429SDavid Howells void rxrpc_get_call(struct rxrpc_call *call, enum rxrpc_call_trace op)
506e34d4234SDavid Howells {
507e34d4234SDavid Howells 	const void *here = __builtin_return_address(0);
508a0575429SDavid Howells 	int n;
509e34d4234SDavid Howells 
510a0575429SDavid Howells 	__refcount_inc(&call->ref, &n);
511a0575429SDavid Howells 	trace_rxrpc_call(call->debug_id, op, n + 1, here, NULL);
512e34d4234SDavid Howells }
513e34d4234SDavid Howells 
514e34d4234SDavid Howells /*
515*a4ea4c47SDavid Howells  * Clean up the Rx skb ring.
516a641fd00SDavid Howells  */
517a641fd00SDavid Howells static void rxrpc_cleanup_ring(struct rxrpc_call *call)
518a641fd00SDavid Howells {
519a641fd00SDavid Howells 	int i;
520a641fd00SDavid Howells 
521a641fd00SDavid Howells 	for (i = 0; i < RXRPC_RXTX_BUFF_SIZE; i++) {
522987db9f7SDavid Howells 		rxrpc_free_skb(call->rxtx_buffer[i], rxrpc_skb_cleaned);
523a641fd00SDavid Howells 		call->rxtx_buffer[i] = NULL;
524a641fd00SDavid Howells 	}
5255d7edbc9SDavid Howells 	skb_queue_purge(&call->recvmsg_queue);
5265d7edbc9SDavid Howells 	skb_queue_purge(&call->rx_oos_queue);
527a641fd00SDavid Howells }
528a641fd00SDavid Howells 
529a641fd00SDavid Howells /*
530248f219cSDavid Howells  * Detach a call from its owning socket.
5318c3e34a4SDavid Howells  */
5328d94aa38SDavid Howells void rxrpc_release_call(struct rxrpc_sock *rx, struct rxrpc_call *call)
5338c3e34a4SDavid Howells {
534a84a46d7SDavid Howells 	const void *here = __builtin_return_address(0);
535248f219cSDavid Howells 	struct rxrpc_connection *conn = call->conn;
536248f219cSDavid Howells 	bool put = false;
537248f219cSDavid Howells 
538a0575429SDavid Howells 	_enter("{%d,%d}", call->debug_id, refcount_read(&call->ref));
539248f219cSDavid Howells 
54048c9e0ecSDavid Howells 	trace_rxrpc_call(call->debug_id, rxrpc_call_release,
541a0575429SDavid Howells 			 refcount_read(&call->ref),
542a84a46d7SDavid Howells 			 here, (const void *)call->flags);
5438c3e34a4SDavid Howells 
544a84a46d7SDavid Howells 	ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
545e34d4234SDavid Howells 
5468c3e34a4SDavid Howells 	spin_lock_bh(&call->lock);
5478c3e34a4SDavid Howells 	if (test_and_set_bit(RXRPC_CALL_RELEASED, &call->flags))
5488c3e34a4SDavid Howells 		BUG();
5498c3e34a4SDavid Howells 	spin_unlock_bh(&call->lock);
5508c3e34a4SDavid Howells 
551b7a7d674SDavid Howells 	rxrpc_put_call_slot(call);
5524a7f62f9SDavid Howells 	rxrpc_delete_call_timer(call);
5538c3e34a4SDavid Howells 
554248f219cSDavid Howells 	/* Make sure we don't get any more notifications */
555248f219cSDavid Howells 	write_lock_bh(&rx->recvmsg_lock);
556e653cfe4SDavid Howells 
557248f219cSDavid Howells 	if (!list_empty(&call->recvmsg_link)) {
5588c3e34a4SDavid Howells 		_debug("unlinking once-pending call %p { e=%lx f=%lx }",
5598c3e34a4SDavid Howells 		       call, call->events, call->flags);
560248f219cSDavid Howells 		list_del(&call->recvmsg_link);
561248f219cSDavid Howells 		put = true;
562248f219cSDavid Howells 	}
563248f219cSDavid Howells 
564248f219cSDavid Howells 	/* list_empty() must return false in rxrpc_notify_socket() */
565248f219cSDavid Howells 	call->recvmsg_link.next = NULL;
566248f219cSDavid Howells 	call->recvmsg_link.prev = NULL;
567248f219cSDavid Howells 
568248f219cSDavid Howells 	write_unlock_bh(&rx->recvmsg_lock);
569248f219cSDavid Howells 	if (put)
570248f219cSDavid Howells 		rxrpc_put_call(call, rxrpc_call_put);
571248f219cSDavid Howells 
572248f219cSDavid Howells 	write_lock(&rx->call_lock);
573248f219cSDavid Howells 
574248f219cSDavid Howells 	if (test_and_clear_bit(RXRPC_CALL_HAS_USERID, &call->flags)) {
5758c3e34a4SDavid Howells 		rb_erase(&call->sock_node, &rx->calls);
5768c3e34a4SDavid Howells 		memset(&call->sock_node, 0xdd, sizeof(call->sock_node));
5778d94aa38SDavid Howells 		rxrpc_put_call(call, rxrpc_call_put_userid);
5788c3e34a4SDavid Howells 	}
5798c3e34a4SDavid Howells 
580248f219cSDavid Howells 	list_del(&call->sock_link);
581248f219cSDavid Howells 	write_unlock(&rx->call_lock);
5828c3e34a4SDavid Howells 
583248f219cSDavid Howells 	_debug("RELEASE CALL %p (%d CONN %p)", call, call->debug_id, conn);
5848c3e34a4SDavid Howells 
5855273a191SDavid Howells 	if (conn && !test_bit(RXRPC_CALL_DISCONNECTED, &call->flags))
586e653cfe4SDavid Howells 		rxrpc_disconnect_call(call);
58791fcfbe8SDavid Howells 	if (call->security)
58891fcfbe8SDavid Howells 		call->security->free_call_crypto(call);
5898c3e34a4SDavid Howells 	_leave("");
5908c3e34a4SDavid Howells }
5918c3e34a4SDavid Howells 
5928c3e34a4SDavid Howells /*
5938c3e34a4SDavid Howells  * release all the calls associated with a socket
5948c3e34a4SDavid Howells  */
5958c3e34a4SDavid Howells void rxrpc_release_calls_on_socket(struct rxrpc_sock *rx)
5968c3e34a4SDavid Howells {
5978c3e34a4SDavid Howells 	struct rxrpc_call *call;
5988c3e34a4SDavid Howells 
5998c3e34a4SDavid Howells 	_enter("%p", rx);
6008c3e34a4SDavid Howells 
6010360da6dSDavid Howells 	while (!list_empty(&rx->to_be_accepted)) {
6020360da6dSDavid Howells 		call = list_entry(rx->to_be_accepted.next,
6030360da6dSDavid Howells 				  struct rxrpc_call, accept_link);
6040360da6dSDavid Howells 		list_del(&call->accept_link);
6053a92789aSDavid Howells 		rxrpc_abort_call("SKR", call, 0, RX_CALL_DEAD, -ECONNRESET);
6060360da6dSDavid Howells 		rxrpc_put_call(call, rxrpc_call_put);
6070360da6dSDavid Howells 	}
6080360da6dSDavid Howells 
609248f219cSDavid Howells 	while (!list_empty(&rx->sock_calls)) {
610248f219cSDavid Howells 		call = list_entry(rx->sock_calls.next,
611248f219cSDavid Howells 				  struct rxrpc_call, sock_link);
612248f219cSDavid Howells 		rxrpc_get_call(call, rxrpc_call_got);
6133a92789aSDavid Howells 		rxrpc_abort_call("SKT", call, 0, RX_CALL_DEAD, -ECONNRESET);
61426cb02aaSDavid Howells 		rxrpc_send_abort_packet(call);
6158d94aa38SDavid Howells 		rxrpc_release_call(rx, call);
616248f219cSDavid Howells 		rxrpc_put_call(call, rxrpc_call_put);
6178c3e34a4SDavid Howells 	}
6188c3e34a4SDavid Howells 
6198c3e34a4SDavid Howells 	_leave("");
6208c3e34a4SDavid Howells }
6218c3e34a4SDavid Howells 
6228c3e34a4SDavid Howells /*
6238c3e34a4SDavid Howells  * release a call
6248c3e34a4SDavid Howells  */
625fff72429SDavid Howells void rxrpc_put_call(struct rxrpc_call *call, enum rxrpc_call_trace op)
6268c3e34a4SDavid Howells {
627d3be4d24SDavid Howells 	struct rxrpc_net *rxnet = call->rxnet;
628e34d4234SDavid Howells 	const void *here = __builtin_return_address(0);
62948c9e0ecSDavid Howells 	unsigned int debug_id = call->debug_id;
630a0575429SDavid Howells 	bool dead;
6312ab27215SDavid Howells 	int n;
632e34d4234SDavid Howells 
6338c3e34a4SDavid Howells 	ASSERT(call != NULL);
6348c3e34a4SDavid Howells 
635a0575429SDavid Howells 	dead = __refcount_dec_and_test(&call->ref, &n);
63648c9e0ecSDavid Howells 	trace_rxrpc_call(debug_id, op, n, here, NULL);
637a0575429SDavid Howells 	if (dead) {
6388c3e34a4SDavid Howells 		_debug("call %d dead", call->debug_id);
639248f219cSDavid Howells 		ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
640e34d4234SDavid Howells 
6412baec2c3SDavid Howells 		if (!list_empty(&call->link)) {
642ad25f5cbSDavid Howells 			spin_lock_bh(&rxnet->call_lock);
643248f219cSDavid Howells 			list_del_init(&call->link);
644ad25f5cbSDavid Howells 			spin_unlock_bh(&rxnet->call_lock);
6452baec2c3SDavid Howells 		}
646e34d4234SDavid Howells 
6478d94aa38SDavid Howells 		rxrpc_cleanup_call(call);
648e34d4234SDavid Howells 	}
6498c3e34a4SDavid Howells }
6508c3e34a4SDavid Howells 
6518c3e34a4SDavid Howells /*
652963485d4SDavid Howells  * Final call destruction - but must be done in process context.
653dee46364SDavid Howells  */
654963485d4SDavid Howells static void rxrpc_destroy_call(struct work_struct *work)
655dee46364SDavid Howells {
656963485d4SDavid Howells 	struct rxrpc_call *call = container_of(work, struct rxrpc_call, processor);
657d3be4d24SDavid Howells 	struct rxrpc_net *rxnet = call->rxnet;
658dee46364SDavid Howells 
6594a7f62f9SDavid Howells 	rxrpc_delete_call_timer(call);
6604a7f62f9SDavid Howells 
6615273a191SDavid Howells 	rxrpc_put_connection(call->conn);
662df5d8bf7SDavid Howells 	rxrpc_put_peer(call->peer);
663248f219cSDavid Howells 	kfree(call->rxtx_buffer);
664248f219cSDavid Howells 	kfree(call->rxtx_annotations);
665dee46364SDavid Howells 	kmem_cache_free(rxrpc_call_jar, call);
666d3be4d24SDavid Howells 	if (atomic_dec_and_test(&rxnet->nr_calls))
6675bb053beSLinus Torvalds 		wake_up_var(&rxnet->nr_calls);
668dee46364SDavid Howells }
669dee46364SDavid Howells 
670dee46364SDavid Howells /*
671963485d4SDavid Howells  * Final call destruction under RCU.
672963485d4SDavid Howells  */
673963485d4SDavid Howells static void rxrpc_rcu_destroy_call(struct rcu_head *rcu)
674963485d4SDavid Howells {
675963485d4SDavid Howells 	struct rxrpc_call *call = container_of(rcu, struct rxrpc_call, rcu);
676963485d4SDavid Howells 
677963485d4SDavid Howells 	if (in_softirq()) {
678963485d4SDavid Howells 		INIT_WORK(&call->processor, rxrpc_destroy_call);
679963485d4SDavid Howells 		if (!rxrpc_queue_work(&call->processor))
680963485d4SDavid Howells 			BUG();
681963485d4SDavid Howells 	} else {
682963485d4SDavid Howells 		rxrpc_destroy_call(&call->processor);
683963485d4SDavid Howells 	}
684963485d4SDavid Howells }
685963485d4SDavid Howells 
686963485d4SDavid Howells /*
6878c3e34a4SDavid Howells  * clean up a call
6888c3e34a4SDavid Howells  */
68900e90712SDavid Howells void rxrpc_cleanup_call(struct rxrpc_call *call)
6908c3e34a4SDavid Howells {
691*a4ea4c47SDavid Howells 	struct rxrpc_txbuf *txb;
692*a4ea4c47SDavid Howells 
693248f219cSDavid Howells 	_net("DESTROY CALL %d", call->debug_id);
6948c3e34a4SDavid Howells 
6958c3e34a4SDavid Howells 	memset(&call->sock_node, 0xcd, sizeof(call->sock_node));
6968c3e34a4SDavid Howells 
6978d94aa38SDavid Howells 	ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
6988c3e34a4SDavid Howells 	ASSERT(test_bit(RXRPC_CALL_RELEASED, &call->flags));
6998c3e34a4SDavid Howells 
700a641fd00SDavid Howells 	rxrpc_cleanup_ring(call);
701*a4ea4c47SDavid Howells 	while ((txb = list_first_entry_or_null(&call->tx_buffer,
702*a4ea4c47SDavid Howells 					       struct rxrpc_txbuf, call_link))) {
703*a4ea4c47SDavid Howells 		list_del(&txb->call_link);
704*a4ea4c47SDavid Howells 		rxrpc_put_txbuf(txb, rxrpc_txbuf_put_cleaned);
705*a4ea4c47SDavid Howells 	}
706*a4ea4c47SDavid Howells 	rxrpc_put_txbuf(call->tx_pending, rxrpc_txbuf_put_cleaned);
7078c3e34a4SDavid Howells 
708dee46364SDavid Howells 	call_rcu(&call->rcu, rxrpc_rcu_destroy_call);
7098c3e34a4SDavid Howells }
7108c3e34a4SDavid Howells 
7118c3e34a4SDavid Howells /*
7122baec2c3SDavid Howells  * Make sure that all calls are gone from a network namespace.  To reach this
7132baec2c3SDavid Howells  * point, any open UDP sockets in that namespace must have been closed, so any
7142baec2c3SDavid Howells  * outstanding calls cannot be doing I/O.
7158c3e34a4SDavid Howells  */
7162baec2c3SDavid Howells void rxrpc_destroy_all_calls(struct rxrpc_net *rxnet)
7178c3e34a4SDavid Howells {
7188c3e34a4SDavid Howells 	struct rxrpc_call *call;
7198c3e34a4SDavid Howells 
7208c3e34a4SDavid Howells 	_enter("");
7218d94aa38SDavid Howells 
722b1302342SDavid Howells 	if (!list_empty(&rxnet->calls)) {
723ad25f5cbSDavid Howells 		spin_lock_bh(&rxnet->call_lock);
7248c3e34a4SDavid Howells 
7252baec2c3SDavid Howells 		while (!list_empty(&rxnet->calls)) {
726b1302342SDavid Howells 			call = list_entry(rxnet->calls.next,
727b1302342SDavid Howells 					  struct rxrpc_call, link);
7288c3e34a4SDavid Howells 			_debug("Zapping call %p", call);
7298c3e34a4SDavid Howells 
730e34d4234SDavid Howells 			rxrpc_see_call(call);
7318c3e34a4SDavid Howells 			list_del_init(&call->link);
7328c3e34a4SDavid Howells 
733248f219cSDavid Howells 			pr_err("Call %p still in use (%d,%s,%lx,%lx)!\n",
734a0575429SDavid Howells 			       call, refcount_read(&call->ref),
7358c3e34a4SDavid Howells 			       rxrpc_call_states[call->state],
7368c3e34a4SDavid Howells 			       call->flags, call->events);
7378c3e34a4SDavid Howells 
738ad25f5cbSDavid Howells 			spin_unlock_bh(&rxnet->call_lock);
7398c3e34a4SDavid Howells 			cond_resched();
740ad25f5cbSDavid Howells 			spin_lock_bh(&rxnet->call_lock);
7418c3e34a4SDavid Howells 		}
7428c3e34a4SDavid Howells 
743ad25f5cbSDavid Howells 		spin_unlock_bh(&rxnet->call_lock);
744b1302342SDavid Howells 	}
745d3be4d24SDavid Howells 
746d3be4d24SDavid Howells 	atomic_dec(&rxnet->nr_calls);
7475bb053beSLinus Torvalds 	wait_var_event(&rxnet->nr_calls, !atomic_read(&rxnet->nr_calls));
7488c3e34a4SDavid Howells }
749