blob: 22f9b0d1a138b4c01ea4d76964e9583aee04ace3 [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",
56 [rxrpc_call_seen] = "SEE",
57 [rxrpc_call_got] = "GOT",
David Howellsfff724292016-09-07 14:34:21 +010058 [rxrpc_call_got_userid] = "Gus",
David Howellscbd00892016-09-13 09:12:34 +010059 [rxrpc_call_got_kernel] = "Gke",
David Howellsfff724292016-09-07 14:34:21 +010060 [rxrpc_call_put] = "PUT",
David Howellsfff724292016-09-07 14:34:21 +010061 [rxrpc_call_put_userid] = "Pus",
David Howellscbd00892016-09-13 09:12:34 +010062 [rxrpc_call_put_kernel] = "Pke",
David Howellsfff724292016-09-07 14:34:21 +010063 [rxrpc_call_put_noqueue] = "PNQ",
64};
65
David Howells17926a72007-04-26 15:48:28 -070066struct kmem_cache *rxrpc_call_jar;
67LIST_HEAD(rxrpc_calls);
68DEFINE_RWLOCK(rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -070069
David Howells248f2192016-09-08 11:10:12 +010070static void rxrpc_call_timer_expired(unsigned long _call)
71{
72 struct rxrpc_call *call = (struct rxrpc_call *)_call;
73
74 _enter("%d", call->debug_id);
75
76 if (call->state < RXRPC_CALL_COMPLETE)
77 rxrpc_queue_call(call);
78}
David Howells17926a72007-04-26 15:48:28 -070079
80/*
David Howells2341e072016-06-09 23:02:51 +010081 * find an extant server call
82 * - called in process context with IRQs enabled
83 */
84struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *rx,
85 unsigned long user_call_ID)
86{
87 struct rxrpc_call *call;
88 struct rb_node *p;
89
90 _enter("%p,%lx", rx, user_call_ID);
91
92 read_lock(&rx->call_lock);
93
94 p = rx->calls.rb_node;
95 while (p) {
96 call = rb_entry(p, struct rxrpc_call, sock_node);
97
98 if (user_call_ID < call->user_call_ID)
99 p = p->rb_left;
100 else if (user_call_ID > call->user_call_ID)
101 p = p->rb_right;
102 else
103 goto found_extant_call;
104 }
105
106 read_unlock(&rx->call_lock);
107 _leave(" = NULL");
108 return NULL;
109
110found_extant_call:
David Howellsfff724292016-09-07 14:34:21 +0100111 rxrpc_get_call(call, rxrpc_call_got);
David Howells2341e072016-06-09 23:02:51 +0100112 read_unlock(&rx->call_lock);
113 _leave(" = %p [%d]", call, atomic_read(&call->usage));
114 return call;
115}
116
117/*
David Howells17926a72007-04-26 15:48:28 -0700118 * allocate a new call
119 */
David Howells00e90712016-09-08 11:10:12 +0100120struct rxrpc_call *rxrpc_alloc_call(gfp_t gfp)
David Howells17926a72007-04-26 15:48:28 -0700121{
122 struct rxrpc_call *call;
123
124 call = kmem_cache_zalloc(rxrpc_call_jar, gfp);
125 if (!call)
126 return NULL;
127
David Howells248f2192016-09-08 11:10:12 +0100128 call->rxtx_buffer = kcalloc(RXRPC_RXTX_BUFF_SIZE,
129 sizeof(struct sk_buff *),
David Howells17926a72007-04-26 15:48:28 -0700130 gfp);
David Howells248f2192016-09-08 11:10:12 +0100131 if (!call->rxtx_buffer)
132 goto nomem;
David Howells17926a72007-04-26 15:48:28 -0700133
David Howells248f2192016-09-08 11:10:12 +0100134 call->rxtx_annotations = kcalloc(RXRPC_RXTX_BUFF_SIZE, sizeof(u8), gfp);
135 if (!call->rxtx_annotations)
136 goto nomem_2;
137
138 setup_timer(&call->timer, rxrpc_call_timer_expired,
139 (unsigned long)call);
David Howells17926a72007-04-26 15:48:28 -0700140 INIT_WORK(&call->processor, &rxrpc_process_call);
David Howells999b69f2016-06-17 15:42:35 +0100141 INIT_LIST_HEAD(&call->link);
David Howells45025bc2016-08-24 07:30:52 +0100142 INIT_LIST_HEAD(&call->chan_wait_link);
David Howells17926a72007-04-26 15:48:28 -0700143 INIT_LIST_HEAD(&call->accept_link);
David Howells248f2192016-09-08 11:10:12 +0100144 INIT_LIST_HEAD(&call->recvmsg_link);
145 INIT_LIST_HEAD(&call->sock_link);
David Howells45025bc2016-08-24 07:30:52 +0100146 init_waitqueue_head(&call->waitq);
David Howells17926a72007-04-26 15:48:28 -0700147 spin_lock_init(&call->lock);
148 rwlock_init(&call->state_lock);
149 atomic_set(&call->usage, 1);
150 call->debug_id = atomic_inc_return(&rxrpc_debug_id);
David Howells17926a72007-04-26 15:48:28 -0700151
152 memset(&call->sock_node, 0xed, sizeof(call->sock_node));
153
David Howells248f2192016-09-08 11:10:12 +0100154 /* Leave space in the ring to handle a maxed-out jumbo packet */
David Howells75e42122016-09-13 22:36:22 +0100155 call->rx_winsize = rxrpc_rx_window_size;
David Howells248f2192016-09-08 11:10:12 +0100156 call->tx_winsize = 16;
157 call->rx_expect_next = 1;
David Howells17926a72007-04-26 15:48:28 -0700158 return call;
David Howells248f2192016-09-08 11:10:12 +0100159
160nomem_2:
161 kfree(call->rxtx_buffer);
162nomem:
163 kmem_cache_free(rxrpc_call_jar, call);
164 return NULL;
David Howells17926a72007-04-26 15:48:28 -0700165}
166
167/*
David Howells999b69f2016-06-17 15:42:35 +0100168 * Allocate a new client call.
David Howells17926a72007-04-26 15:48:28 -0700169 */
David Howells248f2192016-09-08 11:10:12 +0100170static struct rxrpc_call *rxrpc_alloc_client_call(struct sockaddr_rxrpc *srx,
David Howellsaa390bb2016-06-17 10:06:56 +0100171 gfp_t gfp)
David Howells17926a72007-04-26 15:48:28 -0700172{
173 struct rxrpc_call *call;
David Howells17926a72007-04-26 15:48:28 -0700174
175 _enter("");
176
David Howells17926a72007-04-26 15:48:28 -0700177 call = rxrpc_alloc_call(gfp);
178 if (!call)
179 return ERR_PTR(-ENOMEM);
David Howells999b69f2016-06-17 15:42:35 +0100180 call->state = RXRPC_CALL_CLIENT_AWAIT_CONN;
David Howells999b69f2016-06-17 15:42:35 +0100181 call->service_id = srx->srx_service;
David Howells999b69f2016-06-17 15:42:35 +0100182
183 _leave(" = %p", call);
184 return call;
185}
186
187/*
David Howells248f2192016-09-08 11:10:12 +0100188 * Initiate the call ack/resend/expiry timer.
David Howells999b69f2016-06-17 15:42:35 +0100189 */
David Howells248f2192016-09-08 11:10:12 +0100190static void rxrpc_start_call_timer(struct rxrpc_call *call)
David Howells999b69f2016-06-17 15:42:35 +0100191{
David Howells248f2192016-09-08 11:10:12 +0100192 unsigned long expire_at;
David Howells999b69f2016-06-17 15:42:35 +0100193
David Howells248f2192016-09-08 11:10:12 +0100194 expire_at = jiffies + rxrpc_max_call_lifetime;
195 call->expire_at = expire_at;
196 call->ack_at = expire_at;
197 call->resend_at = expire_at;
198 call->timer.expires = expire_at;
199 add_timer(&call->timer);
David Howells17926a72007-04-26 15:48:28 -0700200}
201
202/*
203 * set up a call for the given data
204 * - called in process context with IRQs enabled
205 */
David Howells2341e072016-06-09 23:02:51 +0100206struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *rx,
David Howells19ffa012016-04-04 14:00:36 +0100207 struct rxrpc_conn_parameters *cp,
David Howells999b69f2016-06-17 15:42:35 +0100208 struct sockaddr_rxrpc *srx,
David Howells17926a72007-04-26 15:48:28 -0700209 unsigned long user_call_ID,
David Howells17926a72007-04-26 15:48:28 -0700210 gfp_t gfp)
211{
David Howells2341e072016-06-09 23:02:51 +0100212 struct rxrpc_call *call, *xcall;
213 struct rb_node *parent, **pp;
David Howellse34d4232016-08-30 09:49:29 +0100214 const void *here = __builtin_return_address(0);
David Howells999b69f2016-06-17 15:42:35 +0100215 int ret;
David Howells17926a72007-04-26 15:48:28 -0700216
David Howells999b69f2016-06-17 15:42:35 +0100217 _enter("%p,%lx", rx, user_call_ID);
David Howells17926a72007-04-26 15:48:28 -0700218
David Howells248f2192016-09-08 11:10:12 +0100219 call = rxrpc_alloc_client_call(srx, gfp);
David Howells2341e072016-06-09 23:02:51 +0100220 if (IS_ERR(call)) {
221 _leave(" = %ld", PTR_ERR(call));
222 return call;
David Howells17926a72007-04-26 15:48:28 -0700223 }
224
David Howells2ab27212016-09-08 11:10:12 +0100225 trace_rxrpc_call(call, 0, atomic_read(&call->usage), here,
226 (const void *)user_call_ID);
David Howellse34d4232016-08-30 09:49:29 +0100227
David Howells999b69f2016-06-17 15:42:35 +0100228 /* Publish the call, even though it is incompletely set up as yet */
David Howells2341e072016-06-09 23:02:51 +0100229 call->user_call_ID = user_call_ID;
230 __set_bit(RXRPC_CALL_HAS_USERID, &call->flags);
David Howells17926a72007-04-26 15:48:28 -0700231
232 write_lock(&rx->call_lock);
233
234 pp = &rx->calls.rb_node;
235 parent = NULL;
236 while (*pp) {
237 parent = *pp;
David Howells2341e072016-06-09 23:02:51 +0100238 xcall = rb_entry(parent, struct rxrpc_call, sock_node);
David Howells17926a72007-04-26 15:48:28 -0700239
David Howells2341e072016-06-09 23:02:51 +0100240 if (user_call_ID < xcall->user_call_ID)
David Howells17926a72007-04-26 15:48:28 -0700241 pp = &(*pp)->rb_left;
David Howells2341e072016-06-09 23:02:51 +0100242 else if (user_call_ID > xcall->user_call_ID)
David Howells17926a72007-04-26 15:48:28 -0700243 pp = &(*pp)->rb_right;
244 else
David Howells2341e072016-06-09 23:02:51 +0100245 goto found_user_ID_now_present;
David Howells17926a72007-04-26 15:48:28 -0700246 }
247
David Howells248f2192016-09-08 11:10:12 +0100248 rcu_assign_pointer(call->socket, rx);
David Howellsfff724292016-09-07 14:34:21 +0100249 rxrpc_get_call(call, rxrpc_call_got_userid);
David Howells17926a72007-04-26 15:48:28 -0700250 rb_link_node(&call->sock_node, parent, pp);
251 rb_insert_color(&call->sock_node, &rx->calls);
David Howells248f2192016-09-08 11:10:12 +0100252 list_add(&call->sock_link, &rx->sock_calls);
253
David Howells17926a72007-04-26 15:48:28 -0700254 write_unlock(&rx->call_lock);
255
David Howells248f2192016-09-08 11:10:12 +0100256 write_lock(&rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -0700257 list_add_tail(&call->link, &rxrpc_calls);
David Howells248f2192016-09-08 11:10:12 +0100258 write_unlock(&rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -0700259
David Howells248f2192016-09-08 11:10:12 +0100260 /* Set up or get a connection record and set the protocol parameters,
261 * including channel number and call ID.
262 */
263 ret = rxrpc_connect_call(call, cp, srx, gfp);
David Howells999b69f2016-06-17 15:42:35 +0100264 if (ret < 0)
265 goto error;
266
David Howells248f2192016-09-08 11:10:12 +0100267 spin_lock_bh(&call->conn->params.peer->lock);
268 hlist_add_head(&call->error_link,
269 &call->conn->params.peer->error_targets);
270 spin_unlock_bh(&call->conn->params.peer->lock);
271
272 rxrpc_start_call_timer(call);
273
David Howells17926a72007-04-26 15:48:28 -0700274 _net("CALL new %d on CONN %d", call->debug_id, call->conn->debug_id);
275
276 _leave(" = %p [new]", call);
277 return call;
278
David Howells999b69f2016-06-17 15:42:35 +0100279error:
280 write_lock(&rx->call_lock);
281 rb_erase(&call->sock_node, &rx->calls);
282 write_unlock(&rx->call_lock);
David Howellsfff724292016-09-07 14:34:21 +0100283 rxrpc_put_call(call, rxrpc_call_put_userid);
David Howells999b69f2016-06-17 15:42:35 +0100284
David Howells248f2192016-09-08 11:10:12 +0100285 write_lock(&rxrpc_call_lock);
David Howellsd1e858c2016-04-04 14:00:39 +0100286 list_del_init(&call->link);
David Howells248f2192016-09-08 11:10:12 +0100287 write_unlock(&rxrpc_call_lock);
David Howells999b69f2016-06-17 15:42:35 +0100288
David Howells8d94aa32016-09-07 09:19:31 +0100289error_out:
290 __rxrpc_set_call_completion(call, RXRPC_CALL_LOCAL_ERROR,
291 RX_CALL_DEAD, ret);
David Howells17b963e2016-08-08 13:06:41 +0100292 set_bit(RXRPC_CALL_RELEASED, &call->flags);
David Howellsfff724292016-09-07 14:34:21 +0100293 rxrpc_put_call(call, rxrpc_call_put);
David Howells999b69f2016-06-17 15:42:35 +0100294 _leave(" = %d", ret);
295 return ERR_PTR(ret);
296
David Howells2341e072016-06-09 23:02:51 +0100297 /* We unexpectedly found the user ID in the list after taking
298 * the call_lock. This shouldn't happen unless the user races
299 * with itself and tries to add the same user ID twice at the
300 * same time in different threads.
301 */
302found_user_ID_now_present:
David Howells17926a72007-04-26 15:48:28 -0700303 write_unlock(&rx->call_lock);
David Howells8d94aa32016-09-07 09:19:31 +0100304 ret = -EEXIST;
305 goto error_out;
David Howells17926a72007-04-26 15:48:28 -0700306}
307
308/*
David Howells248f2192016-09-08 11:10:12 +0100309 * Set up an incoming call. call->conn points to the connection.
310 * This is called in BH context and isn't allowed to fail.
David Howells17926a72007-04-26 15:48:28 -0700311 */
David Howells248f2192016-09-08 11:10:12 +0100312void rxrpc_incoming_call(struct rxrpc_sock *rx,
313 struct rxrpc_call *call,
314 struct sk_buff *skb)
David Howells17926a72007-04-26 15:48:28 -0700315{
David Howells248f2192016-09-08 11:10:12 +0100316 struct rxrpc_connection *conn = call->conn;
David Howells42886ff2016-06-16 13:31:07 +0100317 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells248f2192016-09-08 11:10:12 +0100318 u32 chan;
David Howells17926a72007-04-26 15:48:28 -0700319
David Howells248f2192016-09-08 11:10:12 +0100320 _enter(",%d", call->conn->debug_id);
David Howells17926a72007-04-26 15:48:28 -0700321
David Howells248f2192016-09-08 11:10:12 +0100322 rcu_assign_pointer(call->socket, rx);
323 call->call_id = sp->hdr.callNumber;
324 call->service_id = sp->hdr.serviceId;
325 call->cid = sp->hdr.cid;
326 call->state = RXRPC_CALL_SERVER_ACCEPTING;
327 if (sp->hdr.securityIndex > 0)
328 call->state = RXRPC_CALL_SERVER_SECURING;
David Howells17926a72007-04-26 15:48:28 -0700329
David Howells248f2192016-09-08 11:10:12 +0100330 /* Set the channel for this call. We don't get channel_lock as we're
331 * only defending against the data_ready handler (which we're called
332 * from) and the RESPONSE packet parser (which is only really
333 * interested in call_counter and can cope with a disagreement with the
334 * call pointer).
David Howellsa1399f82016-06-27 14:39:44 +0100335 */
David Howells248f2192016-09-08 11:10:12 +0100336 chan = sp->hdr.cid & RXRPC_CHANNELMASK;
337 conn->channels[chan].call_counter = call->call_id;
338 conn->channels[chan].call_id = call->call_id;
David Howellsa1399f82016-06-27 14:39:44 +0100339 rcu_assign_pointer(conn->channels[chan].call, call);
David Howells17926a72007-04-26 15:48:28 -0700340
David Howells85f32272016-04-04 14:00:36 +0100341 spin_lock(&conn->params.peer->lock);
342 hlist_add_head(&call->error_link, &conn->params.peer->error_targets);
343 spin_unlock(&conn->params.peer->lock);
David Howells17926a72007-04-26 15:48:28 -0700344
David Howells17926a72007-04-26 15:48:28 -0700345 _net("CALL incoming %d on CONN %d", call->debug_id, call->conn->debug_id);
346
David Howells248f2192016-09-08 11:10:12 +0100347 rxrpc_start_call_timer(call);
348 _leave("");
David Howells17926a72007-04-26 15:48:28 -0700349}
350
351/*
David Howells8d94aa32016-09-07 09:19:31 +0100352 * Queue a call's work processor, getting a ref to pass to the work queue.
353 */
354bool rxrpc_queue_call(struct rxrpc_call *call)
355{
356 const void *here = __builtin_return_address(0);
357 int n = __atomic_add_unless(&call->usage, 1, 0);
David Howells8d94aa32016-09-07 09:19:31 +0100358 if (n == 0)
359 return false;
360 if (rxrpc_queue_work(&call->processor))
David Howells2ab27212016-09-08 11:10:12 +0100361 trace_rxrpc_call(call, rxrpc_call_queued, n + 1, here, NULL);
David Howells8d94aa32016-09-07 09:19:31 +0100362 else
363 rxrpc_put_call(call, rxrpc_call_put_noqueue);
364 return true;
365}
366
367/*
368 * Queue a call's work processor, passing the callers ref to the work queue.
369 */
370bool __rxrpc_queue_call(struct rxrpc_call *call)
371{
372 const void *here = __builtin_return_address(0);
373 int n = atomic_read(&call->usage);
David Howells8d94aa32016-09-07 09:19:31 +0100374 ASSERTCMP(n, >=, 1);
375 if (rxrpc_queue_work(&call->processor))
David Howells2ab27212016-09-08 11:10:12 +0100376 trace_rxrpc_call(call, rxrpc_call_queued_ref, n, here, NULL);
David Howells8d94aa32016-09-07 09:19:31 +0100377 else
378 rxrpc_put_call(call, rxrpc_call_put_noqueue);
379 return true;
380}
381
382/*
David Howellse34d4232016-08-30 09:49:29 +0100383 * Note the re-emergence of a call.
384 */
385void rxrpc_see_call(struct rxrpc_call *call)
386{
387 const void *here = __builtin_return_address(0);
388 if (call) {
389 int n = atomic_read(&call->usage);
David Howellse34d4232016-08-30 09:49:29 +0100390
David Howells2ab27212016-09-08 11:10:12 +0100391 trace_rxrpc_call(call, rxrpc_call_seen, n, here, NULL);
David Howellse34d4232016-08-30 09:49:29 +0100392 }
393}
394
395/*
396 * Note the addition of a ref on a call.
397 */
David Howellsfff724292016-09-07 14:34:21 +0100398void rxrpc_get_call(struct rxrpc_call *call, enum rxrpc_call_trace op)
David Howellse34d4232016-08-30 09:49:29 +0100399{
400 const void *here = __builtin_return_address(0);
401 int n = atomic_inc_return(&call->usage);
David Howellse34d4232016-08-30 09:49:29 +0100402
David Howells2ab27212016-09-08 11:10:12 +0100403 trace_rxrpc_call(call, op, n, here, NULL);
David Howellse34d4232016-08-30 09:49:29 +0100404}
405
406/*
David Howells248f2192016-09-08 11:10:12 +0100407 * Detach a call from its owning socket.
David Howells17926a72007-04-26 15:48:28 -0700408 */
David Howells8d94aa32016-09-07 09:19:31 +0100409void rxrpc_release_call(struct rxrpc_sock *rx, struct rxrpc_call *call)
David Howells17926a72007-04-26 15:48:28 -0700410{
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
417 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
David Howells17926a72007-04-26 15:48:28 -0700418
David Howellse34d4232016-08-30 09:49:29 +0100419 rxrpc_see_call(call);
420
David Howells17926a72007-04-26 15:48:28 -0700421 spin_lock_bh(&call->lock);
422 if (test_and_set_bit(RXRPC_CALL_RELEASED, &call->flags))
423 BUG();
424 spin_unlock_bh(&call->lock);
425
David Howells248f2192016-09-08 11:10:12 +0100426 del_timer_sync(&call->timer);
David Howells17926a72007-04-26 15:48:28 -0700427
David Howells248f2192016-09-08 11:10:12 +0100428 /* Make sure we don't get any more notifications */
429 write_lock_bh(&rx->recvmsg_lock);
David Howellse653cfe2016-04-04 14:00:38 +0100430
David Howells248f2192016-09-08 11:10:12 +0100431 if (!list_empty(&call->recvmsg_link)) {
David Howells17926a72007-04-26 15:48:28 -0700432 _debug("unlinking once-pending call %p { e=%lx f=%lx }",
433 call, call->events, call->flags);
David Howells248f2192016-09-08 11:10:12 +0100434 list_del(&call->recvmsg_link);
435 put = true;
436 }
437
438 /* list_empty() must return false in rxrpc_notify_socket() */
439 call->recvmsg_link.next = NULL;
440 call->recvmsg_link.prev = NULL;
441
442 write_unlock_bh(&rx->recvmsg_lock);
443 if (put)
444 rxrpc_put_call(call, rxrpc_call_put);
445
446 write_lock(&rx->call_lock);
447
448 if (test_and_clear_bit(RXRPC_CALL_HAS_USERID, &call->flags)) {
David Howells17926a72007-04-26 15:48:28 -0700449 rb_erase(&call->sock_node, &rx->calls);
450 memset(&call->sock_node, 0xdd, sizeof(call->sock_node));
David Howells8d94aa32016-09-07 09:19:31 +0100451 rxrpc_put_call(call, rxrpc_call_put_userid);
David Howells17926a72007-04-26 15:48:28 -0700452 }
David Howells17926a72007-04-26 15:48:28 -0700453
David Howells248f2192016-09-08 11:10:12 +0100454 list_del(&call->sock_link);
455 write_unlock(&rx->call_lock);
David Howells651350d2007-04-26 15:50:17 -0700456
David Howells248f2192016-09-08 11:10:12 +0100457 _debug("RELEASE CALL %p (%d CONN %p)", call, call->debug_id, conn);
David Howells8d94aa32016-09-07 09:19:31 +0100458
David Howells248f2192016-09-08 11:10:12 +0100459 if (conn)
David Howells8d94aa32016-09-07 09:19:31 +0100460 rxrpc_disconnect_call(call);
David Howellse653cfe2016-04-04 14:00:38 +0100461
David Howells248f2192016-09-08 11:10:12 +0100462 for (i = 0; i < RXRPC_RXTX_BUFF_SIZE; i++) {
463 rxrpc_free_skb(call->rxtx_buffer[i]);
464 call->rxtx_buffer[i] = NULL;
David Howells17926a72007-04-26 15:48:28 -0700465 }
David Howells17926a72007-04-26 15:48:28 -0700466
467 _leave("");
468}
469
470/*
David Howells17926a72007-04-26 15:48:28 -0700471 * release all the calls associated with a socket
472 */
473void rxrpc_release_calls_on_socket(struct rxrpc_sock *rx)
474{
475 struct rxrpc_call *call;
David Howells17926a72007-04-26 15:48:28 -0700476
477 _enter("%p", rx);
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);
484 rxrpc_send_call_packet(call, RXRPC_PACKET_TYPE_ABORT);
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 Howellsfff724292016-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++)
549 rxrpc_free_skb(call->rxtx_buffer[i]);
David Howells17926a72007-04-26 15:48:28 -0700550
551 rxrpc_free_skb(call->tx_pending);
552
David Howellsdee46362016-06-27 17:11:19 +0100553 call_rcu(&call->rcu, rxrpc_rcu_destroy_call);
David Howells17926a72007-04-26 15:48:28 -0700554}
555
556/*
David Howells8d94aa32016-09-07 09:19:31 +0100557 * Make sure that all calls are gone.
David Howells17926a72007-04-26 15:48:28 -0700558 */
559void __exit rxrpc_destroy_all_calls(void)
560{
561 struct rxrpc_call *call;
562
563 _enter("");
David Howells8d94aa32016-09-07 09:19:31 +0100564
565 if (list_empty(&rxrpc_calls))
566 return;
David Howells248f2192016-09-08 11:10:12 +0100567
568 write_lock(&rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -0700569
570 while (!list_empty(&rxrpc_calls)) {
571 call = list_entry(rxrpc_calls.next, struct rxrpc_call, link);
572 _debug("Zapping call %p", call);
573
David Howellse34d4232016-08-30 09:49:29 +0100574 rxrpc_see_call(call);
David Howells17926a72007-04-26 15:48:28 -0700575 list_del_init(&call->link);
576
David Howells248f2192016-09-08 11:10:12 +0100577 pr_err("Call %p still in use (%d,%s,%lx,%lx)!\n",
David Howells8d94aa32016-09-07 09:19:31 +0100578 call, atomic_read(&call->usage),
David Howells8d94aa32016-09-07 09:19:31 +0100579 rxrpc_call_states[call->state],
580 call->flags, call->events);
David Howells17926a72007-04-26 15:48:28 -0700581
David Howells248f2192016-09-08 11:10:12 +0100582 write_unlock(&rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -0700583 cond_resched();
David Howells248f2192016-09-08 11:10:12 +0100584 write_lock(&rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -0700585 }
586
David Howells248f2192016-09-08 11:10:12 +0100587 write_unlock(&rxrpc_call_lock);
David Howells17926a72007-04-26 15:48:28 -0700588}