xref: /openbmc/linux/net/rxrpc/call_object.c (revision e138aa7d)
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_ACCEPTING]		= "SvAccept",
278c3e34a4SDavid Howells 	[RXRPC_CALL_SERVER_RECV_REQUEST]	= "SvRcvReq",
288c3e34a4SDavid Howells 	[RXRPC_CALL_SERVER_ACK_REQUEST]		= "SvAckReq",
298c3e34a4SDavid Howells 	[RXRPC_CALL_SERVER_SEND_REPLY]		= "SvSndRpl",
308c3e34a4SDavid Howells 	[RXRPC_CALL_SERVER_AWAIT_ACK]		= "SvAwtACK",
318c3e34a4SDavid Howells 	[RXRPC_CALL_COMPLETE]			= "Complete",
32f5c17aaeSDavid Howells };
33f5c17aaeSDavid Howells 
34f5c17aaeSDavid Howells const char *const rxrpc_call_completions[NR__RXRPC_CALL_COMPLETIONS] = {
35f5c17aaeSDavid Howells 	[RXRPC_CALL_SUCCEEDED]			= "Complete",
368c3e34a4SDavid Howells 	[RXRPC_CALL_REMOTELY_ABORTED]		= "RmtAbort",
378c3e34a4SDavid Howells 	[RXRPC_CALL_LOCALLY_ABORTED]		= "LocAbort",
38f5c17aaeSDavid Howells 	[RXRPC_CALL_LOCAL_ERROR]		= "LocError",
398c3e34a4SDavid Howells 	[RXRPC_CALL_NETWORK_ERROR]		= "NetError",
408c3e34a4SDavid Howells };
418c3e34a4SDavid Howells 
428c3e34a4SDavid Howells struct kmem_cache *rxrpc_call_jar;
438c3e34a4SDavid Howells 
44e99e88a9SKees Cook static void rxrpc_call_timer_expired(struct timer_list *t)
45248f219cSDavid Howells {
46e99e88a9SKees Cook 	struct rxrpc_call *call = from_timer(call, t, timer);
47248f219cSDavid Howells 
48248f219cSDavid Howells 	_enter("%d", call->debug_id);
49248f219cSDavid Howells 
50a158bdd3SDavid Howells 	if (call->state < RXRPC_CALL_COMPLETE) {
51a158bdd3SDavid Howells 		trace_rxrpc_timer(call, rxrpc_timer_expired, jiffies);
52a158bdd3SDavid Howells 		rxrpc_queue_call(call);
53fc7ab6d2SDavid Howells 	}
54248f219cSDavid Howells }
558c3e34a4SDavid Howells 
569faaff59SDavid Howells static struct lock_class_key rxrpc_call_user_mutex_lock_class_key;
578c3e34a4SDavid Howells 
588c3e34a4SDavid Howells /*
598c3e34a4SDavid Howells  * find an extant server call
608c3e34a4SDavid Howells  * - called in process context with IRQs enabled
618c3e34a4SDavid Howells  */
628c3e34a4SDavid Howells struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *rx,
638c3e34a4SDavid Howells 					      unsigned long user_call_ID)
648c3e34a4SDavid Howells {
658c3e34a4SDavid Howells 	struct rxrpc_call *call;
668c3e34a4SDavid Howells 	struct rb_node *p;
678c3e34a4SDavid Howells 
688c3e34a4SDavid Howells 	_enter("%p,%lx", rx, user_call_ID);
698c3e34a4SDavid Howells 
708c3e34a4SDavid Howells 	read_lock(&rx->call_lock);
718c3e34a4SDavid Howells 
728c3e34a4SDavid Howells 	p = rx->calls.rb_node;
738c3e34a4SDavid Howells 	while (p) {
748c3e34a4SDavid Howells 		call = rb_entry(p, struct rxrpc_call, sock_node);
758c3e34a4SDavid Howells 
768c3e34a4SDavid Howells 		if (user_call_ID < call->user_call_ID)
778c3e34a4SDavid Howells 			p = p->rb_left;
788c3e34a4SDavid Howells 		else if (user_call_ID > call->user_call_ID)
798c3e34a4SDavid Howells 			p = p->rb_right;
808c3e34a4SDavid Howells 		else
818c3e34a4SDavid Howells 			goto found_extant_call;
828c3e34a4SDavid Howells 	}
838c3e34a4SDavid Howells 
848c3e34a4SDavid Howells 	read_unlock(&rx->call_lock);
858c3e34a4SDavid Howells 	_leave(" = NULL");
868c3e34a4SDavid Howells 	return NULL;
878c3e34a4SDavid Howells 
888c3e34a4SDavid Howells found_extant_call:
89fff72429SDavid Howells 	rxrpc_get_call(call, rxrpc_call_got);
908c3e34a4SDavid Howells 	read_unlock(&rx->call_lock);
918c3e34a4SDavid Howells 	_leave(" = %p [%d]", call, atomic_read(&call->usage));
928c3e34a4SDavid Howells 	return call;
938c3e34a4SDavid Howells }
948c3e34a4SDavid Howells 
958c3e34a4SDavid Howells /*
968c3e34a4SDavid Howells  * allocate a new call
978c3e34a4SDavid Howells  */
98a25e21f0SDavid Howells struct rxrpc_call *rxrpc_alloc_call(struct rxrpc_sock *rx, gfp_t gfp,
99a25e21f0SDavid Howells 				    unsigned int debug_id)
1008c3e34a4SDavid Howells {
1018c3e34a4SDavid Howells 	struct rxrpc_call *call;
102d3be4d24SDavid Howells 	struct rxrpc_net *rxnet = rxrpc_net(sock_net(&rx->sk));
1038c3e34a4SDavid Howells 
1048c3e34a4SDavid Howells 	call = kmem_cache_zalloc(rxrpc_call_jar, gfp);
1058c3e34a4SDavid Howells 	if (!call)
1068c3e34a4SDavid Howells 		return NULL;
1078c3e34a4SDavid Howells 
108248f219cSDavid Howells 	call->rxtx_buffer = kcalloc(RXRPC_RXTX_BUFF_SIZE,
109248f219cSDavid Howells 				    sizeof(struct sk_buff *),
1108c3e34a4SDavid Howells 				    gfp);
111248f219cSDavid Howells 	if (!call->rxtx_buffer)
112248f219cSDavid Howells 		goto nomem;
1138c3e34a4SDavid Howells 
114248f219cSDavid Howells 	call->rxtx_annotations = kcalloc(RXRPC_RXTX_BUFF_SIZE, sizeof(u8), gfp);
115248f219cSDavid Howells 	if (!call->rxtx_annotations)
116248f219cSDavid Howells 		goto nomem_2;
117248f219cSDavid Howells 
118540b1c48SDavid Howells 	mutex_init(&call->user_mutex);
1199faaff59SDavid Howells 
1209faaff59SDavid Howells 	/* Prevent lockdep reporting a deadlock false positive between the afs
1219faaff59SDavid Howells 	 * filesystem and sys_sendmsg() via the mmap sem.
1229faaff59SDavid Howells 	 */
1239faaff59SDavid Howells 	if (rx->sk.sk_kern_sock)
1249faaff59SDavid Howells 		lockdep_set_class(&call->user_mutex,
1259faaff59SDavid Howells 				  &rxrpc_call_user_mutex_lock_class_key);
1269faaff59SDavid Howells 
127e99e88a9SKees Cook 	timer_setup(&call->timer, rxrpc_call_timer_expired, 0);
1288c3e34a4SDavid Howells 	INIT_WORK(&call->processor, &rxrpc_process_call);
129999b69f8SDavid Howells 	INIT_LIST_HEAD(&call->link);
13045025bceSDavid Howells 	INIT_LIST_HEAD(&call->chan_wait_link);
1318c3e34a4SDavid Howells 	INIT_LIST_HEAD(&call->accept_link);
132248f219cSDavid Howells 	INIT_LIST_HEAD(&call->recvmsg_link);
133248f219cSDavid Howells 	INIT_LIST_HEAD(&call->sock_link);
13445025bceSDavid Howells 	init_waitqueue_head(&call->waitq);
1358c3e34a4SDavid Howells 	spin_lock_init(&call->lock);
13620acbd9aSDavid Howells 	spin_lock_init(&call->notify_lock);
137c1e15b49SDavid Howells 	spin_lock_init(&call->input_lock);
1388c3e34a4SDavid Howells 	rwlock_init(&call->state_lock);
1398c3e34a4SDavid Howells 	atomic_set(&call->usage, 1);
140a25e21f0SDavid Howells 	call->debug_id = debug_id;
141e754eba6SDavid Howells 	call->tx_total_len = -1;
142a158bdd3SDavid Howells 	call->next_rx_timo = 20 * HZ;
143a158bdd3SDavid Howells 	call->next_req_timo = 1 * HZ;
1448c3e34a4SDavid Howells 
1458c3e34a4SDavid Howells 	memset(&call->sock_node, 0xed, sizeof(call->sock_node));
1468c3e34a4SDavid Howells 
147248f219cSDavid Howells 	/* Leave space in the ring to handle a maxed-out jumbo packet */
14875e42126SDavid Howells 	call->rx_winsize = rxrpc_rx_window_size;
149248f219cSDavid Howells 	call->tx_winsize = 16;
150248f219cSDavid Howells 	call->rx_expect_next = 1;
15157494343SDavid Howells 
15257494343SDavid Howells 	call->cong_cwnd = 2;
15357494343SDavid Howells 	call->cong_ssthresh = RXRPC_RXTX_BUFF_SIZE - 1;
154d3be4d24SDavid Howells 
155d3be4d24SDavid Howells 	call->rxnet = rxnet;
156d3be4d24SDavid Howells 	atomic_inc(&rxnet->nr_calls);
1578c3e34a4SDavid Howells 	return call;
158248f219cSDavid Howells 
159248f219cSDavid Howells nomem_2:
160248f219cSDavid Howells 	kfree(call->rxtx_buffer);
161248f219cSDavid Howells nomem:
162248f219cSDavid Howells 	kmem_cache_free(rxrpc_call_jar, call);
163248f219cSDavid Howells 	return NULL;
1648c3e34a4SDavid Howells }
1658c3e34a4SDavid Howells 
1668c3e34a4SDavid Howells /*
167999b69f8SDavid Howells  * Allocate a new client call.
1688c3e34a4SDavid Howells  */
1699faaff59SDavid Howells static struct rxrpc_call *rxrpc_alloc_client_call(struct rxrpc_sock *rx,
1709faaff59SDavid Howells 						  struct sockaddr_rxrpc *srx,
171a25e21f0SDavid Howells 						  gfp_t gfp,
172a25e21f0SDavid Howells 						  unsigned int debug_id)
1738c3e34a4SDavid Howells {
1748c3e34a4SDavid Howells 	struct rxrpc_call *call;
17557494343SDavid Howells 	ktime_t now;
1768c3e34a4SDavid Howells 
1778c3e34a4SDavid Howells 	_enter("");
1788c3e34a4SDavid Howells 
179a25e21f0SDavid Howells 	call = rxrpc_alloc_call(rx, gfp, debug_id);
1808c3e34a4SDavid Howells 	if (!call)
1818c3e34a4SDavid Howells 		return ERR_PTR(-ENOMEM);
182999b69f8SDavid Howells 	call->state = RXRPC_CALL_CLIENT_AWAIT_CONN;
183999b69f8SDavid Howells 	call->service_id = srx->srx_service;
18471f3ca40SDavid Howells 	call->tx_phase = true;
18557494343SDavid Howells 	now = ktime_get_real();
18657494343SDavid Howells 	call->acks_latest_ts = now;
18757494343SDavid Howells 	call->cong_tstamp = now;
188999b69f8SDavid Howells 
189999b69f8SDavid Howells 	_leave(" = %p", call);
190999b69f8SDavid Howells 	return call;
191999b69f8SDavid Howells }
192999b69f8SDavid Howells 
193999b69f8SDavid Howells /*
194248f219cSDavid Howells  * Initiate the call ack/resend/expiry timer.
195999b69f8SDavid Howells  */
196248f219cSDavid Howells static void rxrpc_start_call_timer(struct rxrpc_call *call)
197999b69f8SDavid Howells {
198a158bdd3SDavid Howells 	unsigned long now = jiffies;
199a158bdd3SDavid Howells 	unsigned long j = now + MAX_JIFFY_OFFSET;
200999b69f8SDavid Howells 
201a158bdd3SDavid Howells 	call->ack_at = j;
202bd1fdf8cSDavid Howells 	call->ack_lost_at = j;
203a158bdd3SDavid Howells 	call->resend_at = j;
204a158bdd3SDavid Howells 	call->ping_at = j;
205a158bdd3SDavid Howells 	call->expect_rx_by = j;
206a158bdd3SDavid Howells 	call->expect_req_by = j;
207a158bdd3SDavid Howells 	call->expect_term_by = j;
208a158bdd3SDavid Howells 	call->timer.expires = now;
2098c3e34a4SDavid Howells }
2108c3e34a4SDavid Howells 
2118c3e34a4SDavid Howells /*
212540b1c48SDavid Howells  * Set up a call for the given parameters.
213540b1c48SDavid Howells  * - Called with the socket lock held, which it must release.
214540b1c48SDavid Howells  * - If it returns a call, the call's lock will need releasing by the caller.
2158c3e34a4SDavid Howells  */
2168c3e34a4SDavid Howells struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *rx,
21719ffa01cSDavid Howells 					 struct rxrpc_conn_parameters *cp,
218999b69f8SDavid Howells 					 struct sockaddr_rxrpc *srx,
21948124178SDavid Howells 					 struct rxrpc_call_params *p,
220a25e21f0SDavid Howells 					 gfp_t gfp,
221a25e21f0SDavid Howells 					 unsigned int debug_id)
222540b1c48SDavid Howells 	__releases(&rx->sk.sk_lock.slock)
22388f2a825SDavid Howells 	__acquires(&call->user_mutex)
2248c3e34a4SDavid Howells {
2258c3e34a4SDavid Howells 	struct rxrpc_call *call, *xcall;
226d3be4d24SDavid Howells 	struct rxrpc_net *rxnet;
2278c3e34a4SDavid Howells 	struct rb_node *parent, **pp;
228e34d4234SDavid Howells 	const void *here = __builtin_return_address(0);
229999b69f8SDavid Howells 	int ret;
2308c3e34a4SDavid Howells 
23148124178SDavid Howells 	_enter("%p,%lx", rx, p->user_call_ID);
2328c3e34a4SDavid Howells 
233a25e21f0SDavid Howells 	call = rxrpc_alloc_client_call(rx, srx, gfp, debug_id);
2348c3e34a4SDavid Howells 	if (IS_ERR(call)) {
235540b1c48SDavid Howells 		release_sock(&rx->sk);
2368c3e34a4SDavid Howells 		_leave(" = %ld", PTR_ERR(call));
2378c3e34a4SDavid Howells 		return call;
2388c3e34a4SDavid Howells 	}
2398c3e34a4SDavid Howells 
240e138aa7dSDavid Howells 	call->interruptibility = p->interruptibility;
24148124178SDavid Howells 	call->tx_total_len = p->tx_total_len;
24248c9e0ecSDavid Howells 	trace_rxrpc_call(call->debug_id, rxrpc_call_new_client,
24348c9e0ecSDavid Howells 			 atomic_read(&call->usage),
24448124178SDavid Howells 			 here, (const void *)p->user_call_ID);
245e34d4234SDavid Howells 
246540b1c48SDavid Howells 	/* We need to protect a partially set up call against the user as we
247540b1c48SDavid Howells 	 * will be acting outside the socket lock.
248540b1c48SDavid Howells 	 */
249540b1c48SDavid Howells 	mutex_lock(&call->user_mutex);
250540b1c48SDavid Howells 
251999b69f8SDavid Howells 	/* Publish the call, even though it is incompletely set up as yet */
2528c3e34a4SDavid Howells 	write_lock(&rx->call_lock);
2538c3e34a4SDavid Howells 
2548c3e34a4SDavid Howells 	pp = &rx->calls.rb_node;
2558c3e34a4SDavid Howells 	parent = NULL;
2568c3e34a4SDavid Howells 	while (*pp) {
2578c3e34a4SDavid Howells 		parent = *pp;
2588c3e34a4SDavid Howells 		xcall = rb_entry(parent, struct rxrpc_call, sock_node);
2598c3e34a4SDavid Howells 
26048124178SDavid Howells 		if (p->user_call_ID < xcall->user_call_ID)
2618c3e34a4SDavid Howells 			pp = &(*pp)->rb_left;
26248124178SDavid Howells 		else if (p->user_call_ID > xcall->user_call_ID)
2638c3e34a4SDavid Howells 			pp = &(*pp)->rb_right;
2648c3e34a4SDavid Howells 		else
265357f5ef6SDavid Howells 			goto error_dup_user_ID;
2668c3e34a4SDavid Howells 	}
2678c3e34a4SDavid Howells 
268248f219cSDavid Howells 	rcu_assign_pointer(call->socket, rx);
26948124178SDavid Howells 	call->user_call_ID = p->user_call_ID;
270357f5ef6SDavid Howells 	__set_bit(RXRPC_CALL_HAS_USERID, &call->flags);
271fff72429SDavid Howells 	rxrpc_get_call(call, rxrpc_call_got_userid);
2728c3e34a4SDavid Howells 	rb_link_node(&call->sock_node, parent, pp);
2738c3e34a4SDavid Howells 	rb_insert_color(&call->sock_node, &rx->calls);
274248f219cSDavid Howells 	list_add(&call->sock_link, &rx->sock_calls);
275248f219cSDavid Howells 
2768c3e34a4SDavid Howells 	write_unlock(&rx->call_lock);
2778c3e34a4SDavid Howells 
278d3be4d24SDavid Howells 	rxnet = call->rxnet;
2792baec2c3SDavid Howells 	write_lock(&rxnet->call_lock);
2802baec2c3SDavid Howells 	list_add_tail(&call->link, &rxnet->calls);
2812baec2c3SDavid Howells 	write_unlock(&rxnet->call_lock);
2828c3e34a4SDavid Howells 
283540b1c48SDavid Howells 	/* From this point on, the call is protected by its own lock. */
284540b1c48SDavid Howells 	release_sock(&rx->sk);
285540b1c48SDavid Howells 
286248f219cSDavid Howells 	/* Set up or get a connection record and set the protocol parameters,
287248f219cSDavid Howells 	 * including channel number and call ID.
288248f219cSDavid Howells 	 */
2895e33a23bSDavid Howells 	ret = rxrpc_connect_call(rx, call, cp, srx, gfp);
290999b69f8SDavid Howells 	if (ret < 0)
291999b69f8SDavid Howells 		goto error;
292999b69f8SDavid Howells 
29348c9e0ecSDavid Howells 	trace_rxrpc_call(call->debug_id, rxrpc_call_connected,
29448c9e0ecSDavid Howells 			 atomic_read(&call->usage), here, NULL);
295a84a46d7SDavid Howells 
296248f219cSDavid Howells 	rxrpc_start_call_timer(call);
297248f219cSDavid Howells 
2988c3e34a4SDavid Howells 	_net("CALL new %d on CONN %d", call->debug_id, call->conn->debug_id);
2998c3e34a4SDavid Howells 
3008c3e34a4SDavid Howells 	_leave(" = %p [new]", call);
3018c3e34a4SDavid Howells 	return call;
3028c3e34a4SDavid Howells 
3038c3e34a4SDavid Howells 	/* We unexpectedly found the user ID in the list after taking
3048c3e34a4SDavid Howells 	 * the call_lock.  This shouldn't happen unless the user races
3058c3e34a4SDavid Howells 	 * with itself and tries to add the same user ID twice at the
3068c3e34a4SDavid Howells 	 * same time in different threads.
3078c3e34a4SDavid Howells 	 */
308357f5ef6SDavid Howells error_dup_user_ID:
3098c3e34a4SDavid Howells 	write_unlock(&rx->call_lock);
310540b1c48SDavid Howells 	release_sock(&rx->sk);
3118d94aa38SDavid Howells 	ret = -EEXIST;
312357f5ef6SDavid Howells 
313357f5ef6SDavid Howells error:
314357f5ef6SDavid Howells 	__rxrpc_set_call_completion(call, RXRPC_CALL_LOCAL_ERROR,
315357f5ef6SDavid Howells 				    RX_CALL_DEAD, ret);
31648c9e0ecSDavid Howells 	trace_rxrpc_call(call->debug_id, rxrpc_call_error,
31748c9e0ecSDavid Howells 			 atomic_read(&call->usage), here, ERR_PTR(ret));
318357f5ef6SDavid Howells 	rxrpc_release_call(rx, call);
319540b1c48SDavid Howells 	mutex_unlock(&call->user_mutex);
320357f5ef6SDavid Howells 	rxrpc_put_call(call, rxrpc_call_put);
321357f5ef6SDavid Howells 	_leave(" = %d", ret);
322357f5ef6SDavid Howells 	return ERR_PTR(ret);
3238c3e34a4SDavid Howells }
3248c3e34a4SDavid Howells 
3258c3e34a4SDavid Howells /*
326248f219cSDavid Howells  * Set up an incoming call.  call->conn points to the connection.
327248f219cSDavid Howells  * This is called in BH context and isn't allowed to fail.
3288c3e34a4SDavid Howells  */
329248f219cSDavid Howells void rxrpc_incoming_call(struct rxrpc_sock *rx,
330248f219cSDavid Howells 			 struct rxrpc_call *call,
33142886ffeSDavid Howells 			 struct sk_buff *skb)
3328c3e34a4SDavid Howells {
333248f219cSDavid Howells 	struct rxrpc_connection *conn = call->conn;
33442886ffeSDavid Howells 	struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
335248f219cSDavid Howells 	u32 chan;
3368c3e34a4SDavid Howells 
337248f219cSDavid Howells 	_enter(",%d", call->conn->debug_id);
3388c3e34a4SDavid Howells 
339248f219cSDavid Howells 	rcu_assign_pointer(call->socket, rx);
340248f219cSDavid Howells 	call->call_id		= sp->hdr.callNumber;
341248f219cSDavid Howells 	call->service_id	= sp->hdr.serviceId;
342248f219cSDavid Howells 	call->cid		= sp->hdr.cid;
343248f219cSDavid Howells 	call->state		= RXRPC_CALL_SERVER_ACCEPTING;
344248f219cSDavid Howells 	if (sp->hdr.securityIndex > 0)
345248f219cSDavid Howells 		call->state	= RXRPC_CALL_SERVER_SECURING;
34657494343SDavid Howells 	call->cong_tstamp	= skb->tstamp;
3478c3e34a4SDavid Howells 
348248f219cSDavid Howells 	/* Set the channel for this call.  We don't get channel_lock as we're
349248f219cSDavid Howells 	 * only defending against the data_ready handler (which we're called
350248f219cSDavid Howells 	 * from) and the RESPONSE packet parser (which is only really
351248f219cSDavid Howells 	 * interested in call_counter and can cope with a disagreement with the
352248f219cSDavid Howells 	 * call pointer).
3538c3e34a4SDavid Howells 	 */
354248f219cSDavid Howells 	chan = sp->hdr.cid & RXRPC_CHANNELMASK;
355248f219cSDavid Howells 	conn->channels[chan].call_counter = call->call_id;
356248f219cSDavid Howells 	conn->channels[chan].call_id = call->call_id;
357a1399f8bSDavid Howells 	rcu_assign_pointer(conn->channels[chan].call, call);
3588c3e34a4SDavid Howells 
35985f32278SDavid Howells 	spin_lock(&conn->params.peer->lock);
360f3344303SDavid Howells 	hlist_add_head_rcu(&call->error_link, &conn->params.peer->error_targets);
36185f32278SDavid Howells 	spin_unlock(&conn->params.peer->lock);
3628c3e34a4SDavid Howells 
3638c3e34a4SDavid Howells 	_net("CALL incoming %d on CONN %d", call->debug_id, call->conn->debug_id);
3648c3e34a4SDavid Howells 
365248f219cSDavid Howells 	rxrpc_start_call_timer(call);
366248f219cSDavid Howells 	_leave("");
3678c3e34a4SDavid Howells }
3688c3e34a4SDavid Howells 
3698c3e34a4SDavid Howells /*
3708d94aa38SDavid Howells  * Queue a call's work processor, getting a ref to pass to the work queue.
3718d94aa38SDavid Howells  */
3728d94aa38SDavid Howells bool rxrpc_queue_call(struct rxrpc_call *call)
3738d94aa38SDavid Howells {
3748d94aa38SDavid Howells 	const void *here = __builtin_return_address(0);
375bfc18e38SMark Rutland 	int n = atomic_fetch_add_unless(&call->usage, 1, 0);
3768d94aa38SDavid Howells 	if (n == 0)
3778d94aa38SDavid Howells 		return false;
3788d94aa38SDavid Howells 	if (rxrpc_queue_work(&call->processor))
37948c9e0ecSDavid Howells 		trace_rxrpc_call(call->debug_id, rxrpc_call_queued, n + 1,
38048c9e0ecSDavid Howells 				 here, NULL);
3818d94aa38SDavid Howells 	else
3828d94aa38SDavid Howells 		rxrpc_put_call(call, rxrpc_call_put_noqueue);
3838d94aa38SDavid Howells 	return true;
3848d94aa38SDavid Howells }
3858d94aa38SDavid Howells 
3868d94aa38SDavid Howells /*
3878d94aa38SDavid Howells  * Queue a call's work processor, passing the callers ref to the work queue.
3888d94aa38SDavid Howells  */
3898d94aa38SDavid Howells bool __rxrpc_queue_call(struct rxrpc_call *call)
3908d94aa38SDavid Howells {
3918d94aa38SDavid Howells 	const void *here = __builtin_return_address(0);
3928d94aa38SDavid Howells 	int n = atomic_read(&call->usage);
3938d94aa38SDavid Howells 	ASSERTCMP(n, >=, 1);
3948d94aa38SDavid Howells 	if (rxrpc_queue_work(&call->processor))
39548c9e0ecSDavid Howells 		trace_rxrpc_call(call->debug_id, rxrpc_call_queued_ref, n,
39648c9e0ecSDavid Howells 				 here, NULL);
3978d94aa38SDavid Howells 	else
3988d94aa38SDavid Howells 		rxrpc_put_call(call, rxrpc_call_put_noqueue);
3998d94aa38SDavid Howells 	return true;
4008d94aa38SDavid Howells }
4018d94aa38SDavid Howells 
4028d94aa38SDavid Howells /*
403e34d4234SDavid Howells  * Note the re-emergence of a call.
404e34d4234SDavid Howells  */
405e34d4234SDavid Howells void rxrpc_see_call(struct rxrpc_call *call)
406e34d4234SDavid Howells {
407e34d4234SDavid Howells 	const void *here = __builtin_return_address(0);
408e34d4234SDavid Howells 	if (call) {
409e34d4234SDavid Howells 		int n = atomic_read(&call->usage);
410e34d4234SDavid Howells 
41148c9e0ecSDavid Howells 		trace_rxrpc_call(call->debug_id, rxrpc_call_seen, n,
41248c9e0ecSDavid Howells 				 here, NULL);
413e34d4234SDavid Howells 	}
414e34d4234SDavid Howells }
415e34d4234SDavid Howells 
416e34d4234SDavid Howells /*
417e34d4234SDavid Howells  * Note the addition of a ref on a call.
418e34d4234SDavid Howells  */
419fff72429SDavid Howells void rxrpc_get_call(struct rxrpc_call *call, enum rxrpc_call_trace op)
420e34d4234SDavid Howells {
421e34d4234SDavid Howells 	const void *here = __builtin_return_address(0);
422e34d4234SDavid Howells 	int n = atomic_inc_return(&call->usage);
423e34d4234SDavid Howells 
42448c9e0ecSDavid Howells 	trace_rxrpc_call(call->debug_id, op, n, here, NULL);
425e34d4234SDavid Howells }
426e34d4234SDavid Howells 
427e34d4234SDavid Howells /*
428a641fd00SDavid Howells  * Clean up the RxTx skb ring.
429a641fd00SDavid Howells  */
430a641fd00SDavid Howells static void rxrpc_cleanup_ring(struct rxrpc_call *call)
431a641fd00SDavid Howells {
432a641fd00SDavid Howells 	int i;
433a641fd00SDavid Howells 
434a641fd00SDavid Howells 	for (i = 0; i < RXRPC_RXTX_BUFF_SIZE; i++) {
435987db9f7SDavid Howells 		rxrpc_free_skb(call->rxtx_buffer[i], rxrpc_skb_cleaned);
436a641fd00SDavid Howells 		call->rxtx_buffer[i] = NULL;
437a641fd00SDavid Howells 	}
438a641fd00SDavid Howells }
439a641fd00SDavid Howells 
440a641fd00SDavid Howells /*
441248f219cSDavid Howells  * Detach a call from its owning socket.
4428c3e34a4SDavid Howells  */
4438d94aa38SDavid Howells void rxrpc_release_call(struct rxrpc_sock *rx, struct rxrpc_call *call)
4448c3e34a4SDavid Howells {
445a84a46d7SDavid Howells 	const void *here = __builtin_return_address(0);
446248f219cSDavid Howells 	struct rxrpc_connection *conn = call->conn;
447248f219cSDavid Howells 	bool put = false;
448248f219cSDavid Howells 
449248f219cSDavid Howells 	_enter("{%d,%d}", call->debug_id, atomic_read(&call->usage));
450248f219cSDavid Howells 
45148c9e0ecSDavid Howells 	trace_rxrpc_call(call->debug_id, rxrpc_call_release,
45248c9e0ecSDavid Howells 			 atomic_read(&call->usage),
453a84a46d7SDavid Howells 			 here, (const void *)call->flags);
4548c3e34a4SDavid Howells 
455a84a46d7SDavid Howells 	ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
456e34d4234SDavid Howells 
4578c3e34a4SDavid Howells 	spin_lock_bh(&call->lock);
4588c3e34a4SDavid Howells 	if (test_and_set_bit(RXRPC_CALL_RELEASED, &call->flags))
4598c3e34a4SDavid Howells 		BUG();
4608c3e34a4SDavid Howells 	spin_unlock_bh(&call->lock);
4618c3e34a4SDavid Howells 
462248f219cSDavid Howells 	del_timer_sync(&call->timer);
4638c3e34a4SDavid Howells 
464248f219cSDavid Howells 	/* Make sure we don't get any more notifications */
465248f219cSDavid Howells 	write_lock_bh(&rx->recvmsg_lock);
466e653cfe4SDavid Howells 
467248f219cSDavid Howells 	if (!list_empty(&call->recvmsg_link)) {
4688c3e34a4SDavid Howells 		_debug("unlinking once-pending call %p { e=%lx f=%lx }",
4698c3e34a4SDavid Howells 		       call, call->events, call->flags);
470248f219cSDavid Howells 		list_del(&call->recvmsg_link);
471248f219cSDavid Howells 		put = true;
472248f219cSDavid Howells 	}
473248f219cSDavid Howells 
474248f219cSDavid Howells 	/* list_empty() must return false in rxrpc_notify_socket() */
475248f219cSDavid Howells 	call->recvmsg_link.next = NULL;
476248f219cSDavid Howells 	call->recvmsg_link.prev = NULL;
477248f219cSDavid Howells 
478248f219cSDavid Howells 	write_unlock_bh(&rx->recvmsg_lock);
479248f219cSDavid Howells 	if (put)
480248f219cSDavid Howells 		rxrpc_put_call(call, rxrpc_call_put);
481248f219cSDavid Howells 
482248f219cSDavid Howells 	write_lock(&rx->call_lock);
483248f219cSDavid Howells 
484248f219cSDavid Howells 	if (test_and_clear_bit(RXRPC_CALL_HAS_USERID, &call->flags)) {
4858c3e34a4SDavid Howells 		rb_erase(&call->sock_node, &rx->calls);
4868c3e34a4SDavid Howells 		memset(&call->sock_node, 0xdd, sizeof(call->sock_node));
4878d94aa38SDavid Howells 		rxrpc_put_call(call, rxrpc_call_put_userid);
4888c3e34a4SDavid Howells 	}
4898c3e34a4SDavid Howells 
490248f219cSDavid Howells 	list_del(&call->sock_link);
491248f219cSDavid Howells 	write_unlock(&rx->call_lock);
4928c3e34a4SDavid Howells 
493248f219cSDavid Howells 	_debug("RELEASE CALL %p (%d CONN %p)", call, call->debug_id, conn);
4948c3e34a4SDavid Howells 
4955273a191SDavid Howells 	if (conn && !test_bit(RXRPC_CALL_DISCONNECTED, &call->flags))
496e653cfe4SDavid Howells 		rxrpc_disconnect_call(call);
49791fcfbe8SDavid Howells 	if (call->security)
49891fcfbe8SDavid Howells 		call->security->free_call_crypto(call);
499e653cfe4SDavid Howells 
500a641fd00SDavid Howells 	rxrpc_cleanup_ring(call);
5018c3e34a4SDavid Howells 	_leave("");
5028c3e34a4SDavid Howells }
5038c3e34a4SDavid Howells 
5048c3e34a4SDavid Howells /*
5058c3e34a4SDavid Howells  * release all the calls associated with a socket
5068c3e34a4SDavid Howells  */
5078c3e34a4SDavid Howells void rxrpc_release_calls_on_socket(struct rxrpc_sock *rx)
5088c3e34a4SDavid Howells {
5098c3e34a4SDavid Howells 	struct rxrpc_call *call;
5108c3e34a4SDavid Howells 
5118c3e34a4SDavid Howells 	_enter("%p", rx);
5128c3e34a4SDavid Howells 
5130360da6dSDavid Howells 	while (!list_empty(&rx->to_be_accepted)) {
5140360da6dSDavid Howells 		call = list_entry(rx->to_be_accepted.next,
5150360da6dSDavid Howells 				  struct rxrpc_call, accept_link);
5160360da6dSDavid Howells 		list_del(&call->accept_link);
5173a92789aSDavid Howells 		rxrpc_abort_call("SKR", call, 0, RX_CALL_DEAD, -ECONNRESET);
5180360da6dSDavid Howells 		rxrpc_put_call(call, rxrpc_call_put);
5190360da6dSDavid Howells 	}
5200360da6dSDavid Howells 
521248f219cSDavid Howells 	while (!list_empty(&rx->sock_calls)) {
522248f219cSDavid Howells 		call = list_entry(rx->sock_calls.next,
523248f219cSDavid Howells 				  struct rxrpc_call, sock_link);
524248f219cSDavid Howells 		rxrpc_get_call(call, rxrpc_call_got);
5253a92789aSDavid Howells 		rxrpc_abort_call("SKT", call, 0, RX_CALL_DEAD, -ECONNRESET);
52626cb02aaSDavid Howells 		rxrpc_send_abort_packet(call);
5278d94aa38SDavid Howells 		rxrpc_release_call(rx, call);
528248f219cSDavid Howells 		rxrpc_put_call(call, rxrpc_call_put);
5298c3e34a4SDavid Howells 	}
5308c3e34a4SDavid Howells 
5318c3e34a4SDavid Howells 	_leave("");
5328c3e34a4SDavid Howells }
5338c3e34a4SDavid Howells 
5348c3e34a4SDavid Howells /*
5358c3e34a4SDavid Howells  * release a call
5368c3e34a4SDavid Howells  */
537fff72429SDavid Howells void rxrpc_put_call(struct rxrpc_call *call, enum rxrpc_call_trace op)
5388c3e34a4SDavid Howells {
539d3be4d24SDavid Howells 	struct rxrpc_net *rxnet = call->rxnet;
540e34d4234SDavid Howells 	const void *here = __builtin_return_address(0);
54148c9e0ecSDavid Howells 	unsigned int debug_id = call->debug_id;
5422ab27215SDavid Howells 	int n;
543e34d4234SDavid Howells 
5448c3e34a4SDavid Howells 	ASSERT(call != NULL);
5458c3e34a4SDavid Howells 
546e34d4234SDavid Howells 	n = atomic_dec_return(&call->usage);
54748c9e0ecSDavid Howells 	trace_rxrpc_call(debug_id, op, n, here, NULL);
548e34d4234SDavid Howells 	ASSERTCMP(n, >=, 0);
549e34d4234SDavid Howells 	if (n == 0) {
5508c3e34a4SDavid Howells 		_debug("call %d dead", call->debug_id);
551248f219cSDavid Howells 		ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
552e34d4234SDavid Howells 
5532baec2c3SDavid Howells 		if (!list_empty(&call->link)) {
5542baec2c3SDavid Howells 			write_lock(&rxnet->call_lock);
555248f219cSDavid Howells 			list_del_init(&call->link);
5562baec2c3SDavid Howells 			write_unlock(&rxnet->call_lock);
5572baec2c3SDavid Howells 		}
558e34d4234SDavid Howells 
5598d94aa38SDavid Howells 		rxrpc_cleanup_call(call);
560e34d4234SDavid Howells 	}
5618c3e34a4SDavid Howells }
5628c3e34a4SDavid Howells 
5638c3e34a4SDavid Howells /*
564963485d4SDavid Howells  * Final call destruction - but must be done in process context.
565dee46364SDavid Howells  */
566963485d4SDavid Howells static void rxrpc_destroy_call(struct work_struct *work)
567dee46364SDavid Howells {
568963485d4SDavid Howells 	struct rxrpc_call *call = container_of(work, struct rxrpc_call, processor);
569d3be4d24SDavid Howells 	struct rxrpc_net *rxnet = call->rxnet;
570dee46364SDavid Howells 
5715273a191SDavid Howells 	rxrpc_put_connection(call->conn);
572df5d8bf7SDavid Howells 	rxrpc_put_peer(call->peer);
573248f219cSDavid Howells 	kfree(call->rxtx_buffer);
574248f219cSDavid Howells 	kfree(call->rxtx_annotations);
575dee46364SDavid Howells 	kmem_cache_free(rxrpc_call_jar, call);
576d3be4d24SDavid Howells 	if (atomic_dec_and_test(&rxnet->nr_calls))
5775bb053beSLinus Torvalds 		wake_up_var(&rxnet->nr_calls);
578dee46364SDavid Howells }
579dee46364SDavid Howells 
580dee46364SDavid Howells /*
581963485d4SDavid Howells  * Final call destruction under RCU.
582963485d4SDavid Howells  */
583963485d4SDavid Howells static void rxrpc_rcu_destroy_call(struct rcu_head *rcu)
584963485d4SDavid Howells {
585963485d4SDavid Howells 	struct rxrpc_call *call = container_of(rcu, struct rxrpc_call, rcu);
586963485d4SDavid Howells 
587963485d4SDavid Howells 	if (in_softirq()) {
588963485d4SDavid Howells 		INIT_WORK(&call->processor, rxrpc_destroy_call);
589963485d4SDavid Howells 		if (!rxrpc_queue_work(&call->processor))
590963485d4SDavid Howells 			BUG();
591963485d4SDavid Howells 	} else {
592963485d4SDavid Howells 		rxrpc_destroy_call(&call->processor);
593963485d4SDavid Howells 	}
594963485d4SDavid Howells }
595963485d4SDavid Howells 
596963485d4SDavid Howells /*
5978c3e34a4SDavid Howells  * clean up a call
5988c3e34a4SDavid Howells  */
59900e90712SDavid Howells void rxrpc_cleanup_call(struct rxrpc_call *call)
6008c3e34a4SDavid Howells {
601248f219cSDavid Howells 	_net("DESTROY CALL %d", call->debug_id);
6028c3e34a4SDavid Howells 
6038c3e34a4SDavid Howells 	memset(&call->sock_node, 0xcd, sizeof(call->sock_node));
6048c3e34a4SDavid Howells 
605248f219cSDavid Howells 	del_timer_sync(&call->timer);
6068c3e34a4SDavid Howells 
6078d94aa38SDavid Howells 	ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
6088c3e34a4SDavid Howells 	ASSERT(test_bit(RXRPC_CALL_RELEASED, &call->flags));
6098c3e34a4SDavid Howells 
610a641fd00SDavid Howells 	rxrpc_cleanup_ring(call);
611987db9f7SDavid Howells 	rxrpc_free_skb(call->tx_pending, rxrpc_skb_cleaned);
6128c3e34a4SDavid Howells 
613dee46364SDavid Howells 	call_rcu(&call->rcu, rxrpc_rcu_destroy_call);
6148c3e34a4SDavid Howells }
6158c3e34a4SDavid Howells 
6168c3e34a4SDavid Howells /*
6172baec2c3SDavid Howells  * Make sure that all calls are gone from a network namespace.  To reach this
6182baec2c3SDavid Howells  * point, any open UDP sockets in that namespace must have been closed, so any
6192baec2c3SDavid Howells  * outstanding calls cannot be doing I/O.
6208c3e34a4SDavid Howells  */
6212baec2c3SDavid Howells void rxrpc_destroy_all_calls(struct rxrpc_net *rxnet)
6228c3e34a4SDavid Howells {
6238c3e34a4SDavid Howells 	struct rxrpc_call *call;
6248c3e34a4SDavid Howells 
6258c3e34a4SDavid Howells 	_enter("");
6268d94aa38SDavid Howells 
627b1302342SDavid Howells 	if (!list_empty(&rxnet->calls)) {
6282baec2c3SDavid Howells 		write_lock(&rxnet->call_lock);
6298c3e34a4SDavid Howells 
6302baec2c3SDavid Howells 		while (!list_empty(&rxnet->calls)) {
631b1302342SDavid Howells 			call = list_entry(rxnet->calls.next,
632b1302342SDavid Howells 					  struct rxrpc_call, link);
6338c3e34a4SDavid Howells 			_debug("Zapping call %p", call);
6348c3e34a4SDavid Howells 
635e34d4234SDavid Howells 			rxrpc_see_call(call);
6368c3e34a4SDavid Howells 			list_del_init(&call->link);
6378c3e34a4SDavid Howells 
638248f219cSDavid Howells 			pr_err("Call %p still in use (%d,%s,%lx,%lx)!\n",
6398c3e34a4SDavid Howells 			       call, atomic_read(&call->usage),
6408c3e34a4SDavid Howells 			       rxrpc_call_states[call->state],
6418c3e34a4SDavid Howells 			       call->flags, call->events);
6428c3e34a4SDavid Howells 
6432baec2c3SDavid Howells 			write_unlock(&rxnet->call_lock);
6448c3e34a4SDavid Howells 			cond_resched();
6452baec2c3SDavid Howells 			write_lock(&rxnet->call_lock);
6468c3e34a4SDavid Howells 		}
6478c3e34a4SDavid Howells 
6482baec2c3SDavid Howells 		write_unlock(&rxnet->call_lock);
649b1302342SDavid Howells 	}
650d3be4d24SDavid Howells 
651d3be4d24SDavid Howells 	atomic_dec(&rxnet->nr_calls);
6525bb053beSLinus Torvalds 	wait_var_event(&rxnet->nr_calls, !atomic_read(&rxnet->nr_calls));
6538c3e34a4SDavid Howells }
654