blob: 8b94db3c9b2ecb5f093798eeae0e8630ac0114ab [file] [log] [blame]
David Howells17926a72007-04-26 15:48:28 -07001/* RxRPC individual remote procedure call handling
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Joe Perches9b6d5392016-06-02 12:08:52 -070012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
David Howells17926a72007-04-26 15:48:28 -070015#include <linux/module.h>
16#include <linux/circ_buf.h>
Tim Smith77276402014-03-03 23:04:45 +000017#include <linux/spinlock_types.h>
David Howells17926a72007-04-26 15:48:28 -070018#include <net/sock.h>
19#include <net/af_rxrpc.h>
20#include "ar-internal.h"
21
David Howells5b8848d2016-03-04 15:53:46 +000022const char *const rxrpc_call_states[NR__RXRPC_CALL_STATES] = {
David Howellsf5c17aa2016-08-30 09:49:28 +010023 [RXRPC_CALL_UNINITIALISED] = "Uninit ",
David Howells999b69f2016-06-17 15:42:35 +010024 [RXRPC_CALL_CLIENT_AWAIT_CONN] = "ClWtConn",
David Howells1f8481d2007-05-22 16:14:24 -070025 [RXRPC_CALL_CLIENT_SEND_REQUEST] = "ClSndReq",
26 [RXRPC_CALL_CLIENT_AWAIT_REPLY] = "ClAwtRpl",
27 [RXRPC_CALL_CLIENT_RECV_REPLY] = "ClRcvRpl",
David Howells00e90712016-09-08 11:10:12 +010028 [RXRPC_CALL_SERVER_PREALLOC] = "SvPrealc",
David Howells1f8481d2007-05-22 16:14:24 -070029 [RXRPC_CALL_SERVER_SECURING] = "SvSecure",
30 [RXRPC_CALL_SERVER_ACCEPTING] = "SvAccept",
31 [RXRPC_CALL_SERVER_RECV_REQUEST] = "SvRcvReq",
32 [RXRPC_CALL_SERVER_ACK_REQUEST] = "SvAckReq",
33 [RXRPC_CALL_SERVER_SEND_REPLY] = "SvSndRpl",
34 [RXRPC_CALL_SERVER_AWAIT_ACK] = "SvAwtACK",
35 [RXRPC_CALL_COMPLETE] = "Complete",
David Howellsf5c17aa2016-08-30 09:49:28 +010036};
37
38const char *const rxrpc_call_completions[NR__RXRPC_CALL_COMPLETIONS] = {
39 [RXRPC_CALL_SUCCEEDED] = "Complete",
David Howells1f8481d2007-05-22 16:14:24 -070040 [RXRPC_CALL_REMOTELY_ABORTED] = "RmtAbort",
41 [RXRPC_CALL_LOCALLY_ABORTED] = "LocAbort",
David Howellsf5c17aa2016-08-30 09:49:28 +010042 [RXRPC_CALL_LOCAL_ERROR] = "LocError",
David Howells1f8481d2007-05-22 16:14:24 -070043 [RXRPC_CALL_NETWORK_ERROR] = "NetError",
David Howells1f8481d2007-05-22 16:14:24 -070044};
45
David Howells17926a72007-04-26 15:48:28 -070046struct kmem_cache *rxrpc_call_jar;
47LIST_HEAD(rxrpc_calls);
48DEFINE_RWLOCK(rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -070049
David Howells248f2192016-09-08 11:10:12 +010050static void rxrpc_call_timer_expired(unsigned long _call)
51{
52 struct rxrpc_call *call = (struct rxrpc_call *)_call;
53
54 _enter("%d", call->debug_id);
55
David Howells405dea12016-09-30 09:13:50 +010056 if (call->state < RXRPC_CALL_COMPLETE)
57 rxrpc_set_timer(call, rxrpc_timer_expired, ktime_get_real());
David Howells248f2192016-09-08 11:10:12 +010058}
David Howells17926a72007-04-26 15:48:28 -070059
60/*
David Howells2341e072016-06-09 23:02:51 +010061 * find an extant server call
62 * - called in process context with IRQs enabled
63 */
64struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *rx,
65 unsigned long user_call_ID)
66{
67 struct rxrpc_call *call;
68 struct rb_node *p;
69
70 _enter("%p,%lx", rx, user_call_ID);
71
72 read_lock(&rx->call_lock);
73
74 p = rx->calls.rb_node;
75 while (p) {
76 call = rb_entry(p, struct rxrpc_call, sock_node);
77
78 if (user_call_ID < call->user_call_ID)
79 p = p->rb_left;
80 else if (user_call_ID > call->user_call_ID)
81 p = p->rb_right;
82 else
83 goto found_extant_call;
84 }
85
86 read_unlock(&rx->call_lock);
87 _leave(" = NULL");
88 return NULL;
89
90found_extant_call:
David Howellsfff72422016-09-07 14:34:21 +010091 rxrpc_get_call(call, rxrpc_call_got);
David Howells2341e072016-06-09 23:02:51 +010092 read_unlock(&rx->call_lock);
93 _leave(" = %p [%d]", call, atomic_read(&call->usage));
94 return call;
95}
96
97/*
David Howells17926a72007-04-26 15:48:28 -070098 * allocate a new call
99 */
David Howells00e90712016-09-08 11:10:12 +0100100struct rxrpc_call *rxrpc_alloc_call(gfp_t gfp)
David Howells17926a72007-04-26 15:48:28 -0700101{
102 struct rxrpc_call *call;
103
104 call = kmem_cache_zalloc(rxrpc_call_jar, gfp);
105 if (!call)
106 return NULL;
107
David Howells248f2192016-09-08 11:10:12 +0100108 call->rxtx_buffer = kcalloc(RXRPC_RXTX_BUFF_SIZE,
109 sizeof(struct sk_buff *),
David Howells17926a72007-04-26 15:48:28 -0700110 gfp);
David Howells248f2192016-09-08 11:10:12 +0100111 if (!call->rxtx_buffer)
112 goto nomem;
David Howells17926a72007-04-26 15:48:28 -0700113
David Howells248f2192016-09-08 11:10:12 +0100114 call->rxtx_annotations = kcalloc(RXRPC_RXTX_BUFF_SIZE, sizeof(u8), gfp);
115 if (!call->rxtx_annotations)
116 goto nomem_2;
117
118 setup_timer(&call->timer, rxrpc_call_timer_expired,
119 (unsigned long)call);
David Howells17926a72007-04-26 15:48:28 -0700120 INIT_WORK(&call->processor, &rxrpc_process_call);
David Howells999b69f2016-06-17 15:42:35 +0100121 INIT_LIST_HEAD(&call->link);
David Howells45025bc2016-08-24 07:30:52 +0100122 INIT_LIST_HEAD(&call->chan_wait_link);
David Howells17926a72007-04-26 15:48:28 -0700123 INIT_LIST_HEAD(&call->accept_link);
David Howells248f2192016-09-08 11:10:12 +0100124 INIT_LIST_HEAD(&call->recvmsg_link);
125 INIT_LIST_HEAD(&call->sock_link);
David Howells45025bc2016-08-24 07:30:52 +0100126 init_waitqueue_head(&call->waitq);
David Howells17926a72007-04-26 15:48:28 -0700127 spin_lock_init(&call->lock);
128 rwlock_init(&call->state_lock);
129 atomic_set(&call->usage, 1);
130 call->debug_id = atomic_inc_return(&rxrpc_debug_id);
David Howells17926a72007-04-26 15:48:28 -0700131
132 memset(&call->sock_node, 0xed, sizeof(call->sock_node));
133
David Howells248f2192016-09-08 11:10:12 +0100134 /* Leave space in the ring to handle a maxed-out jumbo packet */
David Howells75e421262016-09-13 22:36:22 +0100135 call->rx_winsize = rxrpc_rx_window_size;
David Howells248f2192016-09-08 11:10:12 +0100136 call->tx_winsize = 16;
137 call->rx_expect_next = 1;
David Howells57494342016-09-24 18:05:27 +0100138
139 if (RXRPC_TX_SMSS > 2190)
140 call->cong_cwnd = 2;
141 else if (RXRPC_TX_SMSS > 1095)
142 call->cong_cwnd = 3;
143 else
144 call->cong_cwnd = 4;
145 call->cong_ssthresh = RXRPC_RXTX_BUFF_SIZE - 1;
David Howells17926a72007-04-26 15:48:28 -0700146 return call;
David Howells248f2192016-09-08 11:10:12 +0100147
148nomem_2:
149 kfree(call->rxtx_buffer);
150nomem:
151 kmem_cache_free(rxrpc_call_jar, call);
152 return NULL;
David Howells17926a72007-04-26 15:48:28 -0700153}
154
155/*
David Howells999b69f2016-06-17 15:42:35 +0100156 * Allocate a new client call.
David Howells17926a72007-04-26 15:48:28 -0700157 */
David Howells248f2192016-09-08 11:10:12 +0100158static struct rxrpc_call *rxrpc_alloc_client_call(struct sockaddr_rxrpc *srx,
David Howellsaa390bb2016-06-17 10:06:56 +0100159 gfp_t gfp)
David Howells17926a72007-04-26 15:48:28 -0700160{
161 struct rxrpc_call *call;
David Howells57494342016-09-24 18:05:27 +0100162 ktime_t now;
David Howells17926a72007-04-26 15:48:28 -0700163
164 _enter("");
165
David Howells17926a72007-04-26 15:48:28 -0700166 call = rxrpc_alloc_call(gfp);
167 if (!call)
168 return ERR_PTR(-ENOMEM);
David Howells999b69f2016-06-17 15:42:35 +0100169 call->state = RXRPC_CALL_CLIENT_AWAIT_CONN;
David Howells999b69f2016-06-17 15:42:35 +0100170 call->service_id = srx->srx_service;
David Howells71f3ca42016-09-17 10:49:14 +0100171 call->tx_phase = true;
David Howells57494342016-09-24 18:05:27 +0100172 now = ktime_get_real();
173 call->acks_latest_ts = now;
174 call->cong_tstamp = now;
David Howells999b69f2016-06-17 15:42:35 +0100175
176 _leave(" = %p", call);
177 return call;
178}
179
180/*
David Howells248f2192016-09-08 11:10:12 +0100181 * Initiate the call ack/resend/expiry timer.
David Howells999b69f2016-06-17 15:42:35 +0100182 */
David Howells248f2192016-09-08 11:10:12 +0100183static void rxrpc_start_call_timer(struct rxrpc_call *call)
David Howells999b69f2016-06-17 15:42:35 +0100184{
David Howellsdf0adc72016-09-26 22:12:49 +0100185 ktime_t now = ktime_get_real(), expire_at;
David Howells999b69f2016-06-17 15:42:35 +0100186
David Howellsdf0adc72016-09-26 22:12:49 +0100187 expire_at = ktime_add_ms(now, rxrpc_max_call_lifetime);
David Howells248f2192016-09-08 11:10:12 +0100188 call->expire_at = expire_at;
189 call->ack_at = expire_at;
David Howellsa5af7e12016-10-06 08:11:49 +0100190 call->ping_at = expire_at;
David Howells248f2192016-09-08 11:10:12 +0100191 call->resend_at = expire_at;
David Howellsdf0adc72016-09-26 22:12:49 +0100192 call->timer.expires = jiffies + LONG_MAX / 2;
193 rxrpc_set_timer(call, rxrpc_timer_begin, now);
David Howells17926a72007-04-26 15:48:28 -0700194}
195
196/*
197 * set up a call for the given data
198 * - called in process context with IRQs enabled
199 */
David Howells2341e072016-06-09 23:02:51 +0100200struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *rx,
David Howells19ffa012016-04-04 14:00:36 +0100201 struct rxrpc_conn_parameters *cp,
David Howells999b69f2016-06-17 15:42:35 +0100202 struct sockaddr_rxrpc *srx,
David Howells17926a72007-04-26 15:48:28 -0700203 unsigned long user_call_ID,
David Howells17926a72007-04-26 15:48:28 -0700204 gfp_t gfp)
205{
David Howells2341e072016-06-09 23:02:51 +0100206 struct rxrpc_call *call, *xcall;
207 struct rb_node *parent, **pp;
David Howellse34d4232016-08-30 09:49:29 +0100208 const void *here = __builtin_return_address(0);
David Howells999b69f2016-06-17 15:42:35 +0100209 int ret;
David Howells17926a72007-04-26 15:48:28 -0700210
David Howells999b69f2016-06-17 15:42:35 +0100211 _enter("%p,%lx", rx, user_call_ID);
David Howells17926a72007-04-26 15:48:28 -0700212
David Howells248f2192016-09-08 11:10:12 +0100213 call = rxrpc_alloc_client_call(srx, gfp);
David Howells2341e072016-06-09 23:02:51 +0100214 if (IS_ERR(call)) {
215 _leave(" = %ld", PTR_ERR(call));
216 return call;
David Howells17926a72007-04-26 15:48:28 -0700217 }
218
David Howellsa84a46d2016-09-17 10:49:14 +0100219 trace_rxrpc_call(call, rxrpc_call_new_client, atomic_read(&call->usage),
220 here, (const void *)user_call_ID);
David Howellse34d4232016-08-30 09:49:29 +0100221
David Howells999b69f2016-06-17 15:42:35 +0100222 /* Publish the call, even though it is incompletely set up as yet */
David Howells17926a72007-04-26 15:48:28 -0700223 write_lock(&rx->call_lock);
224
225 pp = &rx->calls.rb_node;
226 parent = NULL;
227 while (*pp) {
228 parent = *pp;
David Howells2341e072016-06-09 23:02:51 +0100229 xcall = rb_entry(parent, struct rxrpc_call, sock_node);
David Howells17926a72007-04-26 15:48:28 -0700230
David Howells2341e072016-06-09 23:02:51 +0100231 if (user_call_ID < xcall->user_call_ID)
David Howells17926a72007-04-26 15:48:28 -0700232 pp = &(*pp)->rb_left;
David Howells2341e072016-06-09 23:02:51 +0100233 else if (user_call_ID > xcall->user_call_ID)
David Howells17926a72007-04-26 15:48:28 -0700234 pp = &(*pp)->rb_right;
235 else
David Howells357f5ef2016-09-17 10:49:12 +0100236 goto error_dup_user_ID;
David Howells17926a72007-04-26 15:48:28 -0700237 }
238
David Howells248f2192016-09-08 11:10:12 +0100239 rcu_assign_pointer(call->socket, rx);
David Howells357f5ef2016-09-17 10:49:12 +0100240 call->user_call_ID = user_call_ID;
241 __set_bit(RXRPC_CALL_HAS_USERID, &call->flags);
David Howellsfff72422016-09-07 14:34:21 +0100242 rxrpc_get_call(call, rxrpc_call_got_userid);
David Howells17926a72007-04-26 15:48:28 -0700243 rb_link_node(&call->sock_node, parent, pp);
244 rb_insert_color(&call->sock_node, &rx->calls);
David Howells248f2192016-09-08 11:10:12 +0100245 list_add(&call->sock_link, &rx->sock_calls);
246
David Howells17926a72007-04-26 15:48:28 -0700247 write_unlock(&rx->call_lock);
248
David Howells248f2192016-09-08 11:10:12 +0100249 write_lock(&rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -0700250 list_add_tail(&call->link, &rxrpc_calls);
David Howells248f2192016-09-08 11:10:12 +0100251 write_unlock(&rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -0700252
David Howells248f2192016-09-08 11:10:12 +0100253 /* Set up or get a connection record and set the protocol parameters,
254 * including channel number and call ID.
255 */
256 ret = rxrpc_connect_call(call, cp, srx, gfp);
David Howells999b69f2016-06-17 15:42:35 +0100257 if (ret < 0)
258 goto error;
259
David Howellsa84a46d2016-09-17 10:49:14 +0100260 trace_rxrpc_call(call, rxrpc_call_connected, atomic_read(&call->usage),
David Howells54fde422016-10-13 08:39:52 +0100261 here, NULL);
David Howellsa84a46d2016-09-17 10:49:14 +0100262
David Howells248f2192016-09-08 11:10:12 +0100263 spin_lock_bh(&call->conn->params.peer->lock);
264 hlist_add_head(&call->error_link,
265 &call->conn->params.peer->error_targets);
266 spin_unlock_bh(&call->conn->params.peer->lock);
267
268 rxrpc_start_call_timer(call);
269
David Howells17926a72007-04-26 15:48:28 -0700270 _net("CALL new %d on CONN %d", call->debug_id, call->conn->debug_id);
271
272 _leave(" = %p [new]", call);
273 return call;
274
David Howells2341e072016-06-09 23:02:51 +0100275 /* We unexpectedly found the user ID in the list after taking
276 * the call_lock. This shouldn't happen unless the user races
277 * with itself and tries to add the same user ID twice at the
278 * same time in different threads.
279 */
David Howells357f5ef2016-09-17 10:49:12 +0100280error_dup_user_ID:
David Howells17926a72007-04-26 15:48:28 -0700281 write_unlock(&rx->call_lock);
David Howells8d94aa32016-09-07 09:19:31 +0100282 ret = -EEXIST;
David Howells357f5ef2016-09-17 10:49:12 +0100283
284error:
285 __rxrpc_set_call_completion(call, RXRPC_CALL_LOCAL_ERROR,
286 RX_CALL_DEAD, ret);
David Howellsa84a46d2016-09-17 10:49:14 +0100287 trace_rxrpc_call(call, rxrpc_call_error, atomic_read(&call->usage),
288 here, ERR_PTR(ret));
David Howells357f5ef2016-09-17 10:49:12 +0100289 rxrpc_release_call(rx, call);
290 rxrpc_put_call(call, rxrpc_call_put);
291 _leave(" = %d", ret);
292 return ERR_PTR(ret);
David Howells17926a72007-04-26 15:48:28 -0700293}
294
295/*
David Howells248f2192016-09-08 11:10:12 +0100296 * Set up an incoming call. call->conn points to the connection.
297 * This is called in BH context and isn't allowed to fail.
David Howells17926a72007-04-26 15:48:28 -0700298 */
David Howells248f2192016-09-08 11:10:12 +0100299void rxrpc_incoming_call(struct rxrpc_sock *rx,
300 struct rxrpc_call *call,
301 struct sk_buff *skb)
David Howells17926a72007-04-26 15:48:28 -0700302{
David Howells248f2192016-09-08 11:10:12 +0100303 struct rxrpc_connection *conn = call->conn;
David Howells42886ff2016-06-16 13:31:07 +0100304 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells248f2192016-09-08 11:10:12 +0100305 u32 chan;
David Howells17926a72007-04-26 15:48:28 -0700306
David Howells248f2192016-09-08 11:10:12 +0100307 _enter(",%d", call->conn->debug_id);
David Howells17926a72007-04-26 15:48:28 -0700308
David Howells248f2192016-09-08 11:10:12 +0100309 rcu_assign_pointer(call->socket, rx);
310 call->call_id = sp->hdr.callNumber;
311 call->service_id = sp->hdr.serviceId;
312 call->cid = sp->hdr.cid;
313 call->state = RXRPC_CALL_SERVER_ACCEPTING;
314 if (sp->hdr.securityIndex > 0)
315 call->state = RXRPC_CALL_SERVER_SECURING;
David Howells57494342016-09-24 18:05:27 +0100316 call->cong_tstamp = skb->tstamp;
David Howells17926a72007-04-26 15:48:28 -0700317
David Howells248f2192016-09-08 11:10:12 +0100318 /* Set the channel for this call. We don't get channel_lock as we're
319 * only defending against the data_ready handler (which we're called
320 * from) and the RESPONSE packet parser (which is only really
321 * interested in call_counter and can cope with a disagreement with the
322 * call pointer).
David Howellsa1399f82016-06-27 14:39:44 +0100323 */
David Howells248f2192016-09-08 11:10:12 +0100324 chan = sp->hdr.cid & RXRPC_CHANNELMASK;
325 conn->channels[chan].call_counter = call->call_id;
326 conn->channels[chan].call_id = call->call_id;
David Howellsa1399f82016-06-27 14:39:44 +0100327 rcu_assign_pointer(conn->channels[chan].call, call);
David Howells17926a72007-04-26 15:48:28 -0700328
David Howells85f32272016-04-04 14:00:36 +0100329 spin_lock(&conn->params.peer->lock);
330 hlist_add_head(&call->error_link, &conn->params.peer->error_targets);
331 spin_unlock(&conn->params.peer->lock);
David Howells17926a72007-04-26 15:48:28 -0700332
David Howells17926a72007-04-26 15:48:28 -0700333 _net("CALL incoming %d on CONN %d", call->debug_id, call->conn->debug_id);
334
David Howells248f2192016-09-08 11:10:12 +0100335 rxrpc_start_call_timer(call);
336 _leave("");
David Howells17926a72007-04-26 15:48:28 -0700337}
338
339/*
David Howells8d94aa32016-09-07 09:19:31 +0100340 * Queue a call's work processor, getting a ref to pass to the work queue.
341 */
342bool rxrpc_queue_call(struct rxrpc_call *call)
343{
344 const void *here = __builtin_return_address(0);
345 int n = __atomic_add_unless(&call->usage, 1, 0);
David Howells8d94aa32016-09-07 09:19:31 +0100346 if (n == 0)
347 return false;
348 if (rxrpc_queue_work(&call->processor))
David Howells2ab27212016-09-08 11:10:12 +0100349 trace_rxrpc_call(call, rxrpc_call_queued, n + 1, here, NULL);
David Howells8d94aa32016-09-07 09:19:31 +0100350 else
351 rxrpc_put_call(call, rxrpc_call_put_noqueue);
352 return true;
353}
354
355/*
356 * Queue a call's work processor, passing the callers ref to the work queue.
357 */
358bool __rxrpc_queue_call(struct rxrpc_call *call)
359{
360 const void *here = __builtin_return_address(0);
361 int n = atomic_read(&call->usage);
David Howells8d94aa32016-09-07 09:19:31 +0100362 ASSERTCMP(n, >=, 1);
363 if (rxrpc_queue_work(&call->processor))
David Howells2ab27212016-09-08 11:10:12 +0100364 trace_rxrpc_call(call, rxrpc_call_queued_ref, n, here, NULL);
David Howells8d94aa32016-09-07 09:19:31 +0100365 else
366 rxrpc_put_call(call, rxrpc_call_put_noqueue);
367 return true;
368}
369
370/*
David Howellse34d4232016-08-30 09:49:29 +0100371 * Note the re-emergence of a call.
372 */
373void rxrpc_see_call(struct rxrpc_call *call)
374{
375 const void *here = __builtin_return_address(0);
376 if (call) {
377 int n = atomic_read(&call->usage);
David Howellse34d4232016-08-30 09:49:29 +0100378
David Howells2ab27212016-09-08 11:10:12 +0100379 trace_rxrpc_call(call, rxrpc_call_seen, n, here, NULL);
David Howellse34d4232016-08-30 09:49:29 +0100380 }
381}
382
383/*
384 * Note the addition of a ref on a call.
385 */
David Howellsfff72422016-09-07 14:34:21 +0100386void rxrpc_get_call(struct rxrpc_call *call, enum rxrpc_call_trace op)
David Howellse34d4232016-08-30 09:49:29 +0100387{
388 const void *here = __builtin_return_address(0);
389 int n = atomic_inc_return(&call->usage);
David Howellse34d4232016-08-30 09:49:29 +0100390
David Howells2ab27212016-09-08 11:10:12 +0100391 trace_rxrpc_call(call, op, n, here, NULL);
David Howellse34d4232016-08-30 09:49:29 +0100392}
393
394/*
David Howells248f2192016-09-08 11:10:12 +0100395 * Detach a call from its owning socket.
David Howells17926a72007-04-26 15:48:28 -0700396 */
David Howells8d94aa32016-09-07 09:19:31 +0100397void rxrpc_release_call(struct rxrpc_sock *rx, struct rxrpc_call *call)
David Howells17926a72007-04-26 15:48:28 -0700398{
David Howellsa84a46d2016-09-17 10:49:14 +0100399 const void *here = __builtin_return_address(0);
David Howells248f2192016-09-08 11:10:12 +0100400 struct rxrpc_connection *conn = call->conn;
401 bool put = false;
402 int i;
403
404 _enter("{%d,%d}", call->debug_id, atomic_read(&call->usage));
405
David Howellsa84a46d2016-09-17 10:49:14 +0100406 trace_rxrpc_call(call, rxrpc_call_release, atomic_read(&call->usage),
407 here, (const void *)call->flags);
David Howells17926a72007-04-26 15:48:28 -0700408
David Howellsa84a46d2016-09-17 10:49:14 +0100409 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
David Howellse34d4232016-08-30 09:49:29 +0100410
David Howells17926a72007-04-26 15:48:28 -0700411 spin_lock_bh(&call->lock);
412 if (test_and_set_bit(RXRPC_CALL_RELEASED, &call->flags))
413 BUG();
414 spin_unlock_bh(&call->lock);
415
David Howells248f2192016-09-08 11:10:12 +0100416 del_timer_sync(&call->timer);
David Howells17926a72007-04-26 15:48:28 -0700417
David Howells248f2192016-09-08 11:10:12 +0100418 /* Make sure we don't get any more notifications */
419 write_lock_bh(&rx->recvmsg_lock);
David Howellse653cfe2016-04-04 14:00:38 +0100420
David Howells248f2192016-09-08 11:10:12 +0100421 if (!list_empty(&call->recvmsg_link)) {
David Howells17926a72007-04-26 15:48:28 -0700422 _debug("unlinking once-pending call %p { e=%lx f=%lx }",
423 call, call->events, call->flags);
David Howells248f2192016-09-08 11:10:12 +0100424 list_del(&call->recvmsg_link);
425 put = true;
426 }
427
428 /* list_empty() must return false in rxrpc_notify_socket() */
429 call->recvmsg_link.next = NULL;
430 call->recvmsg_link.prev = NULL;
431
432 write_unlock_bh(&rx->recvmsg_lock);
433 if (put)
434 rxrpc_put_call(call, rxrpc_call_put);
435
436 write_lock(&rx->call_lock);
437
438 if (test_and_clear_bit(RXRPC_CALL_HAS_USERID, &call->flags)) {
David Howells17926a72007-04-26 15:48:28 -0700439 rb_erase(&call->sock_node, &rx->calls);
440 memset(&call->sock_node, 0xdd, sizeof(call->sock_node));
David Howells8d94aa32016-09-07 09:19:31 +0100441 rxrpc_put_call(call, rxrpc_call_put_userid);
David Howells17926a72007-04-26 15:48:28 -0700442 }
David Howells17926a72007-04-26 15:48:28 -0700443
David Howells248f2192016-09-08 11:10:12 +0100444 list_del(&call->sock_link);
445 write_unlock(&rx->call_lock);
David Howells651350d2007-04-26 15:50:17 -0700446
David Howells248f2192016-09-08 11:10:12 +0100447 _debug("RELEASE CALL %p (%d CONN %p)", call, call->debug_id, conn);
David Howells8d94aa32016-09-07 09:19:31 +0100448
David Howells248f2192016-09-08 11:10:12 +0100449 if (conn)
David Howells8d94aa32016-09-07 09:19:31 +0100450 rxrpc_disconnect_call(call);
David Howellse653cfe2016-04-04 14:00:38 +0100451
David Howells248f2192016-09-08 11:10:12 +0100452 for (i = 0; i < RXRPC_RXTX_BUFF_SIZE; i++) {
David Howells71f3ca42016-09-17 10:49:14 +0100453 rxrpc_free_skb(call->rxtx_buffer[i],
454 (call->tx_phase ? rxrpc_skb_tx_cleaned :
455 rxrpc_skb_rx_cleaned));
David Howells248f2192016-09-08 11:10:12 +0100456 call->rxtx_buffer[i] = NULL;
David Howells17926a72007-04-26 15:48:28 -0700457 }
David Howells17926a72007-04-26 15:48:28 -0700458
459 _leave("");
460}
461
462/*
David Howells17926a72007-04-26 15:48:28 -0700463 * release all the calls associated with a socket
464 */
465void rxrpc_release_calls_on_socket(struct rxrpc_sock *rx)
466{
467 struct rxrpc_call *call;
David Howells17926a72007-04-26 15:48:28 -0700468
469 _enter("%p", rx);
470
David Howells0360da62016-09-17 10:49:11 +0100471 while (!list_empty(&rx->to_be_accepted)) {
472 call = list_entry(rx->to_be_accepted.next,
473 struct rxrpc_call, accept_link);
474 list_del(&call->accept_link);
475 rxrpc_abort_call("SKR", call, 0, RX_CALL_DEAD, ECONNRESET);
David Howells0360da62016-09-17 10:49:11 +0100476 rxrpc_put_call(call, rxrpc_call_put);
477 }
478
David Howells248f2192016-09-08 11:10:12 +0100479 while (!list_empty(&rx->sock_calls)) {
480 call = list_entry(rx->sock_calls.next,
481 struct rxrpc_call, sock_link);
482 rxrpc_get_call(call, rxrpc_call_got);
483 rxrpc_abort_call("SKT", call, 0, RX_CALL_DEAD, ECONNRESET);
David Howells26cb02a2016-10-06 08:11:49 +0100484 rxrpc_send_abort_packet(call);
David Howells8d94aa32016-09-07 09:19:31 +0100485 rxrpc_release_call(rx, call);
David Howells248f2192016-09-08 11:10:12 +0100486 rxrpc_put_call(call, rxrpc_call_put);
David Howells17926a72007-04-26 15:48:28 -0700487 }
488
David Howells17926a72007-04-26 15:48:28 -0700489 _leave("");
490}
491
492/*
493 * release a call
494 */
David Howellsfff72422016-09-07 14:34:21 +0100495void rxrpc_put_call(struct rxrpc_call *call, enum rxrpc_call_trace op)
David Howells17926a72007-04-26 15:48:28 -0700496{
David Howellse34d4232016-08-30 09:49:29 +0100497 const void *here = __builtin_return_address(0);
David Howells2ab27212016-09-08 11:10:12 +0100498 int n;
David Howellse34d4232016-08-30 09:49:29 +0100499
David Howells17926a72007-04-26 15:48:28 -0700500 ASSERT(call != NULL);
501
David Howellse34d4232016-08-30 09:49:29 +0100502 n = atomic_dec_return(&call->usage);
David Howells2ab27212016-09-08 11:10:12 +0100503 trace_rxrpc_call(call, op, n, here, NULL);
David Howellse34d4232016-08-30 09:49:29 +0100504 ASSERTCMP(n, >=, 0);
505 if (n == 0) {
David Howells17926a72007-04-26 15:48:28 -0700506 _debug("call %d dead", call->debug_id);
David Howells248f2192016-09-08 11:10:12 +0100507 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
David Howellse34d4232016-08-30 09:49:29 +0100508
David Howells248f2192016-09-08 11:10:12 +0100509 write_lock(&rxrpc_call_lock);
510 list_del_init(&call->link);
511 write_unlock(&rxrpc_call_lock);
David Howellse34d4232016-08-30 09:49:29 +0100512
David Howells8d94aa32016-09-07 09:19:31 +0100513 rxrpc_cleanup_call(call);
David Howellse34d4232016-08-30 09:49:29 +0100514 }
David Howells17926a72007-04-26 15:48:28 -0700515}
516
517/*
David Howellsdee46362016-06-27 17:11:19 +0100518 * Final call destruction under RCU.
519 */
520static void rxrpc_rcu_destroy_call(struct rcu_head *rcu)
521{
522 struct rxrpc_call *call = container_of(rcu, struct rxrpc_call, rcu);
523
David Howellsdf5d8bf2016-08-24 14:31:43 +0100524 rxrpc_put_peer(call->peer);
David Howells248f2192016-09-08 11:10:12 +0100525 kfree(call->rxtx_buffer);
526 kfree(call->rxtx_annotations);
David Howellsdee46362016-06-27 17:11:19 +0100527 kmem_cache_free(rxrpc_call_jar, call);
528}
529
530/*
David Howells17926a72007-04-26 15:48:28 -0700531 * clean up a call
532 */
David Howells00e90712016-09-08 11:10:12 +0100533void rxrpc_cleanup_call(struct rxrpc_call *call)
David Howells17926a72007-04-26 15:48:28 -0700534{
David Howells248f2192016-09-08 11:10:12 +0100535 int i;
David Howells17926a72007-04-26 15:48:28 -0700536
David Howells248f2192016-09-08 11:10:12 +0100537 _net("DESTROY CALL %d", call->debug_id);
David Howells17926a72007-04-26 15:48:28 -0700538
539 memset(&call->sock_node, 0xcd, sizeof(call->sock_node));
540
David Howells248f2192016-09-08 11:10:12 +0100541 del_timer_sync(&call->timer);
David Howells17926a72007-04-26 15:48:28 -0700542
David Howells8d94aa32016-09-07 09:19:31 +0100543 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
David Howells17926a72007-04-26 15:48:28 -0700544 ASSERT(test_bit(RXRPC_CALL_RELEASED, &call->flags));
David Howellse653cfe2016-04-04 14:00:38 +0100545 ASSERTCMP(call->conn, ==, NULL);
David Howells17926a72007-04-26 15:48:28 -0700546
David Howells248f2192016-09-08 11:10:12 +0100547 /* Clean up the Rx/Tx buffer */
548 for (i = 0; i < RXRPC_RXTX_BUFF_SIZE; i++)
David Howells71f3ca42016-09-17 10:49:14 +0100549 rxrpc_free_skb(call->rxtx_buffer[i],
550 (call->tx_phase ? rxrpc_skb_tx_cleaned :
551 rxrpc_skb_rx_cleaned));
David Howells17926a72007-04-26 15:48:28 -0700552
David Howells71f3ca42016-09-17 10:49:14 +0100553 rxrpc_free_skb(call->tx_pending, rxrpc_skb_tx_cleaned);
David Howells17926a72007-04-26 15:48:28 -0700554
David Howellsdee46362016-06-27 17:11:19 +0100555 call_rcu(&call->rcu, rxrpc_rcu_destroy_call);
David Howells17926a72007-04-26 15:48:28 -0700556}
557
558/*
David Howells8d94aa32016-09-07 09:19:31 +0100559 * Make sure that all calls are gone.
David Howells17926a72007-04-26 15:48:28 -0700560 */
561void __exit rxrpc_destroy_all_calls(void)
562{
563 struct rxrpc_call *call;
564
565 _enter("");
David Howells8d94aa32016-09-07 09:19:31 +0100566
567 if (list_empty(&rxrpc_calls))
568 return;
David Howells248f2192016-09-08 11:10:12 +0100569
570 write_lock(&rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -0700571
572 while (!list_empty(&rxrpc_calls)) {
573 call = list_entry(rxrpc_calls.next, struct rxrpc_call, link);
574 _debug("Zapping call %p", call);
575
David Howellse34d4232016-08-30 09:49:29 +0100576 rxrpc_see_call(call);
David Howells17926a72007-04-26 15:48:28 -0700577 list_del_init(&call->link);
578
David Howells248f2192016-09-08 11:10:12 +0100579 pr_err("Call %p still in use (%d,%s,%lx,%lx)!\n",
David Howells8d94aa32016-09-07 09:19:31 +0100580 call, atomic_read(&call->usage),
David Howells8d94aa32016-09-07 09:19:31 +0100581 rxrpc_call_states[call->state],
582 call->flags, call->events);
David Howells17926a72007-04-26 15:48:28 -0700583
David Howells248f2192016-09-08 11:10:12 +0100584 write_unlock(&rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -0700585 cond_resched();
David Howells248f2192016-09-08 11:10:12 +0100586 write_lock(&rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -0700587 }
588
David Howells248f2192016-09-08 11:10:12 +0100589 write_unlock(&rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -0700590}