blob: a53f4c2c0025c6936e3ce534d42f67e1b1c7551c [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 Howells5873c082014-02-07 18:58:44 +000022/*
23 * Maximum lifetime of a call (in jiffies).
24 */
David Howellsdad8aff2016-03-09 23:22:56 +000025unsigned int rxrpc_max_call_lifetime = 60 * HZ;
David Howells5873c082014-02-07 18:58:44 +000026
David Howells5b8848d2016-03-04 15:53:46 +000027const char *const rxrpc_call_states[NR__RXRPC_CALL_STATES] = {
David Howellsf5c17aa2016-08-30 09:49:28 +010028 [RXRPC_CALL_UNINITIALISED] = "Uninit ",
David Howells999b69f2016-06-17 15:42:35 +010029 [RXRPC_CALL_CLIENT_AWAIT_CONN] = "ClWtConn",
David Howells1f8481d2007-05-22 16:14:24 -070030 [RXRPC_CALL_CLIENT_SEND_REQUEST] = "ClSndReq",
31 [RXRPC_CALL_CLIENT_AWAIT_REPLY] = "ClAwtRpl",
32 [RXRPC_CALL_CLIENT_RECV_REPLY] = "ClRcvRpl",
David Howells00e90712016-09-08 11:10:12 +010033 [RXRPC_CALL_SERVER_PREALLOC] = "SvPrealc",
David Howells1f8481d2007-05-22 16:14:24 -070034 [RXRPC_CALL_SERVER_SECURING] = "SvSecure",
35 [RXRPC_CALL_SERVER_ACCEPTING] = "SvAccept",
36 [RXRPC_CALL_SERVER_RECV_REQUEST] = "SvRcvReq",
37 [RXRPC_CALL_SERVER_ACK_REQUEST] = "SvAckReq",
38 [RXRPC_CALL_SERVER_SEND_REPLY] = "SvSndRpl",
39 [RXRPC_CALL_SERVER_AWAIT_ACK] = "SvAwtACK",
40 [RXRPC_CALL_COMPLETE] = "Complete",
David Howellsf5c17aa2016-08-30 09:49:28 +010041};
42
43const char *const rxrpc_call_completions[NR__RXRPC_CALL_COMPLETIONS] = {
44 [RXRPC_CALL_SUCCEEDED] = "Complete",
David Howells1f8481d2007-05-22 16:14:24 -070045 [RXRPC_CALL_REMOTELY_ABORTED] = "RmtAbort",
46 [RXRPC_CALL_LOCALLY_ABORTED] = "LocAbort",
David Howellsf5c17aa2016-08-30 09:49:28 +010047 [RXRPC_CALL_LOCAL_ERROR] = "LocError",
David Howells1f8481d2007-05-22 16:14:24 -070048 [RXRPC_CALL_NETWORK_ERROR] = "NetError",
David Howells1f8481d2007-05-22 16:14:24 -070049};
50
David Howellsfff724292016-09-07 14:34:21 +010051const char rxrpc_call_traces[rxrpc_call__nr_trace][4] = {
52 [rxrpc_call_new_client] = "NWc",
53 [rxrpc_call_new_service] = "NWs",
54 [rxrpc_call_queued] = "QUE",
55 [rxrpc_call_queued_ref] = "QUR",
David Howellsa84a46d2016-09-17 10:49:14 +010056 [rxrpc_call_connected] = "CON",
57 [rxrpc_call_release] = "RLS",
David Howellsfff724292016-09-07 14:34:21 +010058 [rxrpc_call_seen] = "SEE",
59 [rxrpc_call_got] = "GOT",
David Howellsfff724292016-09-07 14:34:21 +010060 [rxrpc_call_got_userid] = "Gus",
David Howellscbd00892016-09-13 09:12:34 +010061 [rxrpc_call_got_kernel] = "Gke",
David Howellsfff724292016-09-07 14:34:21 +010062 [rxrpc_call_put] = "PUT",
David Howellsfff724292016-09-07 14:34:21 +010063 [rxrpc_call_put_userid] = "Pus",
David Howellscbd00892016-09-13 09:12:34 +010064 [rxrpc_call_put_kernel] = "Pke",
David Howellsfff724292016-09-07 14:34:21 +010065 [rxrpc_call_put_noqueue] = "PNQ",
David Howellsa84a46d2016-09-17 10:49:14 +010066 [rxrpc_call_error] = "*E*",
David Howellsfff724292016-09-07 14:34:21 +010067};
68
David Howells17926a72007-04-26 15:48:28 -070069struct kmem_cache *rxrpc_call_jar;
70LIST_HEAD(rxrpc_calls);
71DEFINE_RWLOCK(rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -070072
David Howells248f2192016-09-08 11:10:12 +010073static void rxrpc_call_timer_expired(unsigned long _call)
74{
75 struct rxrpc_call *call = (struct rxrpc_call *)_call;
76
77 _enter("%d", call->debug_id);
78
David Howellsfc7ab6d2016-09-23 15:22:36 +010079 if (call->state < RXRPC_CALL_COMPLETE) {
80 trace_rxrpc_timer(call, rxrpc_timer_expired, jiffies);
David Howells248f2192016-09-08 11:10:12 +010081 rxrpc_queue_call(call);
David Howellsfc7ab6d2016-09-23 15:22:36 +010082 }
David Howells248f2192016-09-08 11:10:12 +010083}
David Howells17926a72007-04-26 15:48:28 -070084
85/*
David Howells2341e072016-06-09 23:02:51 +010086 * find an extant server call
87 * - called in process context with IRQs enabled
88 */
89struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *rx,
90 unsigned long user_call_ID)
91{
92 struct rxrpc_call *call;
93 struct rb_node *p;
94
95 _enter("%p,%lx", rx, user_call_ID);
96
97 read_lock(&rx->call_lock);
98
99 p = rx->calls.rb_node;
100 while (p) {
101 call = rb_entry(p, struct rxrpc_call, sock_node);
102
103 if (user_call_ID < call->user_call_ID)
104 p = p->rb_left;
105 else if (user_call_ID > call->user_call_ID)
106 p = p->rb_right;
107 else
108 goto found_extant_call;
109 }
110
111 read_unlock(&rx->call_lock);
112 _leave(" = NULL");
113 return NULL;
114
115found_extant_call:
David Howellsfff724292016-09-07 14:34:21 +0100116 rxrpc_get_call(call, rxrpc_call_got);
David Howells2341e072016-06-09 23:02:51 +0100117 read_unlock(&rx->call_lock);
118 _leave(" = %p [%d]", call, atomic_read(&call->usage));
119 return call;
120}
121
122/*
David Howells17926a72007-04-26 15:48:28 -0700123 * allocate a new call
124 */
David Howells00e90712016-09-08 11:10:12 +0100125struct rxrpc_call *rxrpc_alloc_call(gfp_t gfp)
David Howells17926a72007-04-26 15:48:28 -0700126{
127 struct rxrpc_call *call;
128
129 call = kmem_cache_zalloc(rxrpc_call_jar, gfp);
130 if (!call)
131 return NULL;
132
David Howells248f2192016-09-08 11:10:12 +0100133 call->rxtx_buffer = kcalloc(RXRPC_RXTX_BUFF_SIZE,
134 sizeof(struct sk_buff *),
David Howells17926a72007-04-26 15:48:28 -0700135 gfp);
David Howells248f2192016-09-08 11:10:12 +0100136 if (!call->rxtx_buffer)
137 goto nomem;
David Howells17926a72007-04-26 15:48:28 -0700138
David Howells248f2192016-09-08 11:10:12 +0100139 call->rxtx_annotations = kcalloc(RXRPC_RXTX_BUFF_SIZE, sizeof(u8), gfp);
140 if (!call->rxtx_annotations)
141 goto nomem_2;
142
143 setup_timer(&call->timer, rxrpc_call_timer_expired,
144 (unsigned long)call);
David Howells17926a72007-04-26 15:48:28 -0700145 INIT_WORK(&call->processor, &rxrpc_process_call);
David Howells999b69f2016-06-17 15:42:35 +0100146 INIT_LIST_HEAD(&call->link);
David Howells45025bc2016-08-24 07:30:52 +0100147 INIT_LIST_HEAD(&call->chan_wait_link);
David Howells17926a72007-04-26 15:48:28 -0700148 INIT_LIST_HEAD(&call->accept_link);
David Howells248f2192016-09-08 11:10:12 +0100149 INIT_LIST_HEAD(&call->recvmsg_link);
150 INIT_LIST_HEAD(&call->sock_link);
David Howells45025bc2016-08-24 07:30:52 +0100151 init_waitqueue_head(&call->waitq);
David Howells17926a72007-04-26 15:48:28 -0700152 spin_lock_init(&call->lock);
153 rwlock_init(&call->state_lock);
154 atomic_set(&call->usage, 1);
155 call->debug_id = atomic_inc_return(&rxrpc_debug_id);
David Howells17926a72007-04-26 15:48:28 -0700156
157 memset(&call->sock_node, 0xed, sizeof(call->sock_node));
158
David Howells248f2192016-09-08 11:10:12 +0100159 /* Leave space in the ring to handle a maxed-out jumbo packet */
David Howells75e421262016-09-13 22:36:22 +0100160 call->rx_winsize = rxrpc_rx_window_size;
David Howells248f2192016-09-08 11:10:12 +0100161 call->tx_winsize = 16;
162 call->rx_expect_next = 1;
David Howells17926a72007-04-26 15:48:28 -0700163 return call;
David Howells248f2192016-09-08 11:10:12 +0100164
165nomem_2:
166 kfree(call->rxtx_buffer);
167nomem:
168 kmem_cache_free(rxrpc_call_jar, call);
169 return NULL;
David Howells17926a72007-04-26 15:48:28 -0700170}
171
172/*
David Howells999b69f2016-06-17 15:42:35 +0100173 * Allocate a new client call.
David Howells17926a72007-04-26 15:48:28 -0700174 */
David Howells248f2192016-09-08 11:10:12 +0100175static struct rxrpc_call *rxrpc_alloc_client_call(struct sockaddr_rxrpc *srx,
David Howellsaa390bb2016-06-17 10:06:56 +0100176 gfp_t gfp)
David Howells17926a72007-04-26 15:48:28 -0700177{
178 struct rxrpc_call *call;
David Howells17926a72007-04-26 15:48:28 -0700179
180 _enter("");
181
David Howells17926a72007-04-26 15:48:28 -0700182 call = rxrpc_alloc_call(gfp);
183 if (!call)
184 return ERR_PTR(-ENOMEM);
David Howells999b69f2016-06-17 15:42:35 +0100185 call->state = RXRPC_CALL_CLIENT_AWAIT_CONN;
David Howells999b69f2016-06-17 15:42:35 +0100186 call->service_id = srx->srx_service;
David Howells71f3ca42016-09-17 10:49:14 +0100187 call->tx_phase = true;
David Howells999b69f2016-06-17 15:42:35 +0100188
189 _leave(" = %p", call);
190 return call;
191}
192
193/*
David Howells248f2192016-09-08 11:10:12 +0100194 * Initiate the call ack/resend/expiry timer.
David Howells999b69f2016-06-17 15:42:35 +0100195 */
David Howells248f2192016-09-08 11:10:12 +0100196static void rxrpc_start_call_timer(struct rxrpc_call *call)
David Howells999b69f2016-06-17 15:42:35 +0100197{
David Howells248f2192016-09-08 11:10:12 +0100198 unsigned long expire_at;
David Howells999b69f2016-06-17 15:42:35 +0100199
David Howells248f2192016-09-08 11:10:12 +0100200 expire_at = jiffies + rxrpc_max_call_lifetime;
201 call->expire_at = expire_at;
202 call->ack_at = expire_at;
203 call->resend_at = expire_at;
David Howells01a88f72016-09-23 12:39:22 +0100204 call->timer.expires = expire_at + 1;
David Howellsfc7ab6d2016-09-23 15:22:36 +0100205 rxrpc_set_timer(call, rxrpc_timer_begin);
David Howells17926a72007-04-26 15:48:28 -0700206}
207
208/*
209 * set up a call for the given data
210 * - called in process context with IRQs enabled
211 */
David Howells2341e072016-06-09 23:02:51 +0100212struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *rx,
David Howells19ffa012016-04-04 14:00:36 +0100213 struct rxrpc_conn_parameters *cp,
David Howells999b69f2016-06-17 15:42:35 +0100214 struct sockaddr_rxrpc *srx,
David Howells17926a72007-04-26 15:48:28 -0700215 unsigned long user_call_ID,
David Howells17926a72007-04-26 15:48:28 -0700216 gfp_t gfp)
217{
David Howells2341e072016-06-09 23:02:51 +0100218 struct rxrpc_call *call, *xcall;
219 struct rb_node *parent, **pp;
David Howellse34d4232016-08-30 09:49:29 +0100220 const void *here = __builtin_return_address(0);
David Howells999b69f2016-06-17 15:42:35 +0100221 int ret;
David Howells17926a72007-04-26 15:48:28 -0700222
David Howells999b69f2016-06-17 15:42:35 +0100223 _enter("%p,%lx", rx, user_call_ID);
David Howells17926a72007-04-26 15:48:28 -0700224
David Howells248f2192016-09-08 11:10:12 +0100225 call = rxrpc_alloc_client_call(srx, gfp);
David Howells2341e072016-06-09 23:02:51 +0100226 if (IS_ERR(call)) {
227 _leave(" = %ld", PTR_ERR(call));
228 return call;
David Howells17926a72007-04-26 15:48:28 -0700229 }
230
David Howellsa84a46d2016-09-17 10:49:14 +0100231 trace_rxrpc_call(call, rxrpc_call_new_client, atomic_read(&call->usage),
232 here, (const void *)user_call_ID);
David Howellse34d4232016-08-30 09:49:29 +0100233
David Howells999b69f2016-06-17 15:42:35 +0100234 /* Publish the call, even though it is incompletely set up as yet */
David Howells17926a72007-04-26 15:48:28 -0700235 write_lock(&rx->call_lock);
236
237 pp = &rx->calls.rb_node;
238 parent = NULL;
239 while (*pp) {
240 parent = *pp;
David Howells2341e072016-06-09 23:02:51 +0100241 xcall = rb_entry(parent, struct rxrpc_call, sock_node);
David Howells17926a72007-04-26 15:48:28 -0700242
David Howells2341e072016-06-09 23:02:51 +0100243 if (user_call_ID < xcall->user_call_ID)
David Howells17926a72007-04-26 15:48:28 -0700244 pp = &(*pp)->rb_left;
David Howells2341e072016-06-09 23:02:51 +0100245 else if (user_call_ID > xcall->user_call_ID)
David Howells17926a72007-04-26 15:48:28 -0700246 pp = &(*pp)->rb_right;
247 else
David Howells357f5ef2016-09-17 10:49:12 +0100248 goto error_dup_user_ID;
David Howells17926a72007-04-26 15:48:28 -0700249 }
250
David Howells248f2192016-09-08 11:10:12 +0100251 rcu_assign_pointer(call->socket, rx);
David Howells357f5ef2016-09-17 10:49:12 +0100252 call->user_call_ID = user_call_ID;
253 __set_bit(RXRPC_CALL_HAS_USERID, &call->flags);
David Howellsfff724292016-09-07 14:34:21 +0100254 rxrpc_get_call(call, rxrpc_call_got_userid);
David Howells17926a72007-04-26 15:48:28 -0700255 rb_link_node(&call->sock_node, parent, pp);
256 rb_insert_color(&call->sock_node, &rx->calls);
David Howells248f2192016-09-08 11:10:12 +0100257 list_add(&call->sock_link, &rx->sock_calls);
258
David Howells17926a72007-04-26 15:48:28 -0700259 write_unlock(&rx->call_lock);
260
David Howells248f2192016-09-08 11:10:12 +0100261 write_lock(&rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -0700262 list_add_tail(&call->link, &rxrpc_calls);
David Howells248f2192016-09-08 11:10:12 +0100263 write_unlock(&rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -0700264
David Howells248f2192016-09-08 11:10:12 +0100265 /* Set up or get a connection record and set the protocol parameters,
266 * including channel number and call ID.
267 */
268 ret = rxrpc_connect_call(call, cp, srx, gfp);
David Howells999b69f2016-06-17 15:42:35 +0100269 if (ret < 0)
270 goto error;
271
David Howellsa84a46d2016-09-17 10:49:14 +0100272 trace_rxrpc_call(call, rxrpc_call_connected, atomic_read(&call->usage),
273 here, ERR_PTR(ret));
274
David Howells248f2192016-09-08 11:10:12 +0100275 spin_lock_bh(&call->conn->params.peer->lock);
276 hlist_add_head(&call->error_link,
277 &call->conn->params.peer->error_targets);
278 spin_unlock_bh(&call->conn->params.peer->lock);
279
280 rxrpc_start_call_timer(call);
281
David Howells17926a72007-04-26 15:48:28 -0700282 _net("CALL new %d on CONN %d", call->debug_id, call->conn->debug_id);
283
284 _leave(" = %p [new]", call);
285 return call;
286
David Howells2341e072016-06-09 23:02:51 +0100287 /* We unexpectedly found the user ID in the list after taking
288 * the call_lock. This shouldn't happen unless the user races
289 * with itself and tries to add the same user ID twice at the
290 * same time in different threads.
291 */
David Howells357f5ef2016-09-17 10:49:12 +0100292error_dup_user_ID:
David Howells17926a72007-04-26 15:48:28 -0700293 write_unlock(&rx->call_lock);
David Howells8d94aa32016-09-07 09:19:31 +0100294 ret = -EEXIST;
David Howells357f5ef2016-09-17 10:49:12 +0100295
296error:
297 __rxrpc_set_call_completion(call, RXRPC_CALL_LOCAL_ERROR,
298 RX_CALL_DEAD, ret);
David Howellsa84a46d2016-09-17 10:49:14 +0100299 trace_rxrpc_call(call, rxrpc_call_error, atomic_read(&call->usage),
300 here, ERR_PTR(ret));
David Howells357f5ef2016-09-17 10:49:12 +0100301 rxrpc_release_call(rx, call);
302 rxrpc_put_call(call, rxrpc_call_put);
303 _leave(" = %d", ret);
304 return ERR_PTR(ret);
David Howells17926a72007-04-26 15:48:28 -0700305}
306
307/*
David Howells248f2192016-09-08 11:10:12 +0100308 * Set up an incoming call. call->conn points to the connection.
309 * This is called in BH context and isn't allowed to fail.
David Howells17926a72007-04-26 15:48:28 -0700310 */
David Howells248f2192016-09-08 11:10:12 +0100311void rxrpc_incoming_call(struct rxrpc_sock *rx,
312 struct rxrpc_call *call,
313 struct sk_buff *skb)
David Howells17926a72007-04-26 15:48:28 -0700314{
David Howells248f2192016-09-08 11:10:12 +0100315 struct rxrpc_connection *conn = call->conn;
David Howells42886ff2016-06-16 13:31:07 +0100316 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells248f2192016-09-08 11:10:12 +0100317 u32 chan;
David Howells17926a72007-04-26 15:48:28 -0700318
David Howells248f2192016-09-08 11:10:12 +0100319 _enter(",%d", call->conn->debug_id);
David Howells17926a72007-04-26 15:48:28 -0700320
David Howells248f2192016-09-08 11:10:12 +0100321 rcu_assign_pointer(call->socket, rx);
322 call->call_id = sp->hdr.callNumber;
323 call->service_id = sp->hdr.serviceId;
324 call->cid = sp->hdr.cid;
325 call->state = RXRPC_CALL_SERVER_ACCEPTING;
326 if (sp->hdr.securityIndex > 0)
327 call->state = RXRPC_CALL_SERVER_SECURING;
David Howells17926a72007-04-26 15:48:28 -0700328
David Howells248f2192016-09-08 11:10:12 +0100329 /* Set the channel for this call. We don't get channel_lock as we're
330 * only defending against the data_ready handler (which we're called
331 * from) and the RESPONSE packet parser (which is only really
332 * interested in call_counter and can cope with a disagreement with the
333 * call pointer).
David Howellsa1399f82016-06-27 14:39:44 +0100334 */
David Howells248f2192016-09-08 11:10:12 +0100335 chan = sp->hdr.cid & RXRPC_CHANNELMASK;
336 conn->channels[chan].call_counter = call->call_id;
337 conn->channels[chan].call_id = call->call_id;
David Howellsa1399f82016-06-27 14:39:44 +0100338 rcu_assign_pointer(conn->channels[chan].call, call);
David Howells17926a72007-04-26 15:48:28 -0700339
David Howells85f32272016-04-04 14:00:36 +0100340 spin_lock(&conn->params.peer->lock);
341 hlist_add_head(&call->error_link, &conn->params.peer->error_targets);
342 spin_unlock(&conn->params.peer->lock);
David Howells17926a72007-04-26 15:48:28 -0700343
David Howells17926a72007-04-26 15:48:28 -0700344 _net("CALL incoming %d on CONN %d", call->debug_id, call->conn->debug_id);
345
David Howells248f2192016-09-08 11:10:12 +0100346 rxrpc_start_call_timer(call);
347 _leave("");
David Howells17926a72007-04-26 15:48:28 -0700348}
349
350/*
David Howells8d94aa32016-09-07 09:19:31 +0100351 * Queue a call's work processor, getting a ref to pass to the work queue.
352 */
353bool rxrpc_queue_call(struct rxrpc_call *call)
354{
355 const void *here = __builtin_return_address(0);
356 int n = __atomic_add_unless(&call->usage, 1, 0);
David Howells8d94aa32016-09-07 09:19:31 +0100357 if (n == 0)
358 return false;
359 if (rxrpc_queue_work(&call->processor))
David Howells2ab27212016-09-08 11:10:12 +0100360 trace_rxrpc_call(call, rxrpc_call_queued, n + 1, here, NULL);
David Howells8d94aa32016-09-07 09:19:31 +0100361 else
362 rxrpc_put_call(call, rxrpc_call_put_noqueue);
363 return true;
364}
365
366/*
367 * Queue a call's work processor, passing the callers ref to the work queue.
368 */
369bool __rxrpc_queue_call(struct rxrpc_call *call)
370{
371 const void *here = __builtin_return_address(0);
372 int n = atomic_read(&call->usage);
David Howells8d94aa32016-09-07 09:19:31 +0100373 ASSERTCMP(n, >=, 1);
374 if (rxrpc_queue_work(&call->processor))
David Howells2ab27212016-09-08 11:10:12 +0100375 trace_rxrpc_call(call, rxrpc_call_queued_ref, n, here, NULL);
David Howells8d94aa32016-09-07 09:19:31 +0100376 else
377 rxrpc_put_call(call, rxrpc_call_put_noqueue);
378 return true;
379}
380
381/*
David Howellse34d4232016-08-30 09:49:29 +0100382 * Note the re-emergence of a call.
383 */
384void rxrpc_see_call(struct rxrpc_call *call)
385{
386 const void *here = __builtin_return_address(0);
387 if (call) {
388 int n = atomic_read(&call->usage);
David Howellse34d4232016-08-30 09:49:29 +0100389
David Howells2ab27212016-09-08 11:10:12 +0100390 trace_rxrpc_call(call, rxrpc_call_seen, n, here, NULL);
David Howellse34d4232016-08-30 09:49:29 +0100391 }
392}
393
394/*
395 * Note the addition of a ref on a call.
396 */
David Howellsfff724292016-09-07 14:34:21 +0100397void rxrpc_get_call(struct rxrpc_call *call, enum rxrpc_call_trace op)
David Howellse34d4232016-08-30 09:49:29 +0100398{
399 const void *here = __builtin_return_address(0);
400 int n = atomic_inc_return(&call->usage);
David Howellse34d4232016-08-30 09:49:29 +0100401
David Howells2ab27212016-09-08 11:10:12 +0100402 trace_rxrpc_call(call, op, n, here, NULL);
David Howellse34d4232016-08-30 09:49:29 +0100403}
404
405/*
David Howells248f2192016-09-08 11:10:12 +0100406 * Detach a call from its owning socket.
David Howells17926a72007-04-26 15:48:28 -0700407 */
David Howells8d94aa32016-09-07 09:19:31 +0100408void rxrpc_release_call(struct rxrpc_sock *rx, struct rxrpc_call *call)
David Howells17926a72007-04-26 15:48:28 -0700409{
David Howellsa84a46d2016-09-17 10:49:14 +0100410 const void *here = __builtin_return_address(0);
David Howells248f2192016-09-08 11:10:12 +0100411 struct rxrpc_connection *conn = call->conn;
412 bool put = false;
413 int i;
414
415 _enter("{%d,%d}", call->debug_id, atomic_read(&call->usage));
416
David Howellsa84a46d2016-09-17 10:49:14 +0100417 trace_rxrpc_call(call, rxrpc_call_release, atomic_read(&call->usage),
418 here, (const void *)call->flags);
David Howells17926a72007-04-26 15:48:28 -0700419
David Howellsa84a46d2016-09-17 10:49:14 +0100420 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
David Howellse34d4232016-08-30 09:49:29 +0100421
David Howells17926a72007-04-26 15:48:28 -0700422 spin_lock_bh(&call->lock);
423 if (test_and_set_bit(RXRPC_CALL_RELEASED, &call->flags))
424 BUG();
425 spin_unlock_bh(&call->lock);
426
David Howells248f2192016-09-08 11:10:12 +0100427 del_timer_sync(&call->timer);
David Howells17926a72007-04-26 15:48:28 -0700428
David Howells248f2192016-09-08 11:10:12 +0100429 /* Make sure we don't get any more notifications */
430 write_lock_bh(&rx->recvmsg_lock);
David Howellse653cfe2016-04-04 14:00:38 +0100431
David Howells248f2192016-09-08 11:10:12 +0100432 if (!list_empty(&call->recvmsg_link)) {
David Howells17926a72007-04-26 15:48:28 -0700433 _debug("unlinking once-pending call %p { e=%lx f=%lx }",
434 call, call->events, call->flags);
David Howells248f2192016-09-08 11:10:12 +0100435 list_del(&call->recvmsg_link);
436 put = true;
437 }
438
439 /* list_empty() must return false in rxrpc_notify_socket() */
440 call->recvmsg_link.next = NULL;
441 call->recvmsg_link.prev = NULL;
442
443 write_unlock_bh(&rx->recvmsg_lock);
444 if (put)
445 rxrpc_put_call(call, rxrpc_call_put);
446
447 write_lock(&rx->call_lock);
448
449 if (test_and_clear_bit(RXRPC_CALL_HAS_USERID, &call->flags)) {
David Howells17926a72007-04-26 15:48:28 -0700450 rb_erase(&call->sock_node, &rx->calls);
451 memset(&call->sock_node, 0xdd, sizeof(call->sock_node));
David Howells8d94aa32016-09-07 09:19:31 +0100452 rxrpc_put_call(call, rxrpc_call_put_userid);
David Howells17926a72007-04-26 15:48:28 -0700453 }
David Howells17926a72007-04-26 15:48:28 -0700454
David Howells248f2192016-09-08 11:10:12 +0100455 list_del(&call->sock_link);
456 write_unlock(&rx->call_lock);
David Howells651350d2007-04-26 15:50:17 -0700457
David Howells248f2192016-09-08 11:10:12 +0100458 _debug("RELEASE CALL %p (%d CONN %p)", call, call->debug_id, conn);
David Howells8d94aa32016-09-07 09:19:31 +0100459
David Howells248f2192016-09-08 11:10:12 +0100460 if (conn)
David Howells8d94aa32016-09-07 09:19:31 +0100461 rxrpc_disconnect_call(call);
David Howellse653cfe2016-04-04 14:00:38 +0100462
David Howells248f2192016-09-08 11:10:12 +0100463 for (i = 0; i < RXRPC_RXTX_BUFF_SIZE; i++) {
David Howells71f3ca42016-09-17 10:49:14 +0100464 rxrpc_free_skb(call->rxtx_buffer[i],
465 (call->tx_phase ? rxrpc_skb_tx_cleaned :
466 rxrpc_skb_rx_cleaned));
David Howells248f2192016-09-08 11:10:12 +0100467 call->rxtx_buffer[i] = NULL;
David Howells17926a72007-04-26 15:48:28 -0700468 }
David Howells17926a72007-04-26 15:48:28 -0700469
470 _leave("");
471}
472
473/*
David Howells17926a72007-04-26 15:48:28 -0700474 * release all the calls associated with a socket
475 */
476void rxrpc_release_calls_on_socket(struct rxrpc_sock *rx)
477{
478 struct rxrpc_call *call;
David Howells17926a72007-04-26 15:48:28 -0700479
480 _enter("%p", rx);
481
David Howells0360da62016-09-17 10:49:11 +0100482 while (!list_empty(&rx->to_be_accepted)) {
483 call = list_entry(rx->to_be_accepted.next,
484 struct rxrpc_call, accept_link);
485 list_del(&call->accept_link);
486 rxrpc_abort_call("SKR", call, 0, RX_CALL_DEAD, ECONNRESET);
David Howells0360da62016-09-17 10:49:11 +0100487 rxrpc_put_call(call, rxrpc_call_put);
488 }
489
David Howells248f2192016-09-08 11:10:12 +0100490 while (!list_empty(&rx->sock_calls)) {
491 call = list_entry(rx->sock_calls.next,
492 struct rxrpc_call, sock_link);
493 rxrpc_get_call(call, rxrpc_call_got);
494 rxrpc_abort_call("SKT", call, 0, RX_CALL_DEAD, ECONNRESET);
495 rxrpc_send_call_packet(call, RXRPC_PACKET_TYPE_ABORT);
David Howells8d94aa32016-09-07 09:19:31 +0100496 rxrpc_release_call(rx, call);
David Howells248f2192016-09-08 11:10:12 +0100497 rxrpc_put_call(call, rxrpc_call_put);
David Howells17926a72007-04-26 15:48:28 -0700498 }
499
David Howells17926a72007-04-26 15:48:28 -0700500 _leave("");
501}
502
503/*
504 * release a call
505 */
David Howellsfff724292016-09-07 14:34:21 +0100506void rxrpc_put_call(struct rxrpc_call *call, enum rxrpc_call_trace op)
David Howells17926a72007-04-26 15:48:28 -0700507{
David Howellse34d4232016-08-30 09:49:29 +0100508 const void *here = __builtin_return_address(0);
David Howells2ab27212016-09-08 11:10:12 +0100509 int n;
David Howellse34d4232016-08-30 09:49:29 +0100510
David Howells17926a72007-04-26 15:48:28 -0700511 ASSERT(call != NULL);
512
David Howellse34d4232016-08-30 09:49:29 +0100513 n = atomic_dec_return(&call->usage);
David Howells2ab27212016-09-08 11:10:12 +0100514 trace_rxrpc_call(call, op, n, here, NULL);
David Howellse34d4232016-08-30 09:49:29 +0100515 ASSERTCMP(n, >=, 0);
516 if (n == 0) {
David Howells17926a72007-04-26 15:48:28 -0700517 _debug("call %d dead", call->debug_id);
David Howells248f2192016-09-08 11:10:12 +0100518 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
David Howellse34d4232016-08-30 09:49:29 +0100519
David Howells248f2192016-09-08 11:10:12 +0100520 write_lock(&rxrpc_call_lock);
521 list_del_init(&call->link);
522 write_unlock(&rxrpc_call_lock);
David Howellse34d4232016-08-30 09:49:29 +0100523
David Howells8d94aa32016-09-07 09:19:31 +0100524 rxrpc_cleanup_call(call);
David Howellse34d4232016-08-30 09:49:29 +0100525 }
David Howells17926a72007-04-26 15:48:28 -0700526}
527
528/*
David Howellsdee46362016-06-27 17:11:19 +0100529 * Final call destruction under RCU.
530 */
531static void rxrpc_rcu_destroy_call(struct rcu_head *rcu)
532{
533 struct rxrpc_call *call = container_of(rcu, struct rxrpc_call, rcu);
534
David Howellsdf5d8bf2016-08-24 14:31:43 +0100535 rxrpc_put_peer(call->peer);
David Howells248f2192016-09-08 11:10:12 +0100536 kfree(call->rxtx_buffer);
537 kfree(call->rxtx_annotations);
David Howellsdee46362016-06-27 17:11:19 +0100538 kmem_cache_free(rxrpc_call_jar, call);
539}
540
541/*
David Howells17926a72007-04-26 15:48:28 -0700542 * clean up a call
543 */
David Howells00e90712016-09-08 11:10:12 +0100544void rxrpc_cleanup_call(struct rxrpc_call *call)
David Howells17926a72007-04-26 15:48:28 -0700545{
David Howells248f2192016-09-08 11:10:12 +0100546 int i;
David Howells17926a72007-04-26 15:48:28 -0700547
David Howells248f2192016-09-08 11:10:12 +0100548 _net("DESTROY CALL %d", call->debug_id);
David Howells17926a72007-04-26 15:48:28 -0700549
550 memset(&call->sock_node, 0xcd, sizeof(call->sock_node));
551
David Howells248f2192016-09-08 11:10:12 +0100552 del_timer_sync(&call->timer);
David Howells17926a72007-04-26 15:48:28 -0700553
David Howells8d94aa32016-09-07 09:19:31 +0100554 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
David Howells17926a72007-04-26 15:48:28 -0700555 ASSERT(test_bit(RXRPC_CALL_RELEASED, &call->flags));
David Howellse653cfe2016-04-04 14:00:38 +0100556 ASSERTCMP(call->conn, ==, NULL);
David Howells17926a72007-04-26 15:48:28 -0700557
David Howells248f2192016-09-08 11:10:12 +0100558 /* Clean up the Rx/Tx buffer */
559 for (i = 0; i < RXRPC_RXTX_BUFF_SIZE; i++)
David Howells71f3ca42016-09-17 10:49:14 +0100560 rxrpc_free_skb(call->rxtx_buffer[i],
561 (call->tx_phase ? rxrpc_skb_tx_cleaned :
562 rxrpc_skb_rx_cleaned));
David Howells17926a72007-04-26 15:48:28 -0700563
David Howells71f3ca42016-09-17 10:49:14 +0100564 rxrpc_free_skb(call->tx_pending, rxrpc_skb_tx_cleaned);
David Howells17926a72007-04-26 15:48:28 -0700565
David Howellsdee46362016-06-27 17:11:19 +0100566 call_rcu(&call->rcu, rxrpc_rcu_destroy_call);
David Howells17926a72007-04-26 15:48:28 -0700567}
568
569/*
David Howells8d94aa32016-09-07 09:19:31 +0100570 * Make sure that all calls are gone.
David Howells17926a72007-04-26 15:48:28 -0700571 */
572void __exit rxrpc_destroy_all_calls(void)
573{
574 struct rxrpc_call *call;
575
576 _enter("");
David Howells8d94aa32016-09-07 09:19:31 +0100577
578 if (list_empty(&rxrpc_calls))
579 return;
David Howells248f2192016-09-08 11:10:12 +0100580
581 write_lock(&rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -0700582
583 while (!list_empty(&rxrpc_calls)) {
584 call = list_entry(rxrpc_calls.next, struct rxrpc_call, link);
585 _debug("Zapping call %p", call);
586
David Howellse34d4232016-08-30 09:49:29 +0100587 rxrpc_see_call(call);
David Howells17926a72007-04-26 15:48:28 -0700588 list_del_init(&call->link);
589
David Howells248f2192016-09-08 11:10:12 +0100590 pr_err("Call %p still in use (%d,%s,%lx,%lx)!\n",
David Howells8d94aa32016-09-07 09:19:31 +0100591 call, atomic_read(&call->usage),
David Howells8d94aa32016-09-07 09:19:31 +0100592 rxrpc_call_states[call->state],
593 call->flags, call->events);
David Howells17926a72007-04-26 15:48:28 -0700594
David Howells248f2192016-09-08 11:10:12 +0100595 write_unlock(&rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -0700596 cond_resched();
David Howells248f2192016-09-08 11:10:12 +0100597 write_lock(&rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -0700598 }
599
David Howells248f2192016-09-08 11:10:12 +0100600 write_unlock(&rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -0700601}