blob: d7809a0620b4e19acd511d2bd5233e88bf2ba0b3 [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;
David Howells17926a72007-04-26 15:48:28 -070047
David Howells248f2192016-09-08 11:10:12 +010048static void rxrpc_call_timer_expired(unsigned long _call)
49{
50 struct rxrpc_call *call = (struct rxrpc_call *)_call;
51
52 _enter("%d", call->debug_id);
53
David Howells405dea12016-09-30 09:13:50 +010054 if (call->state < RXRPC_CALL_COMPLETE)
55 rxrpc_set_timer(call, rxrpc_timer_expired, ktime_get_real());
David Howells248f2192016-09-08 11:10:12 +010056}
David Howells17926a72007-04-26 15:48:28 -070057
58/*
David Howells2341e072016-06-09 23:02:51 +010059 * find an extant server call
60 * - called in process context with IRQs enabled
61 */
62struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *rx,
63 unsigned long user_call_ID)
64{
65 struct rxrpc_call *call;
66 struct rb_node *p;
67
68 _enter("%p,%lx", rx, user_call_ID);
69
70 read_lock(&rx->call_lock);
71
72 p = rx->calls.rb_node;
73 while (p) {
74 call = rb_entry(p, struct rxrpc_call, sock_node);
75
76 if (user_call_ID < call->user_call_ID)
77 p = p->rb_left;
78 else if (user_call_ID > call->user_call_ID)
79 p = p->rb_right;
80 else
81 goto found_extant_call;
82 }
83
84 read_unlock(&rx->call_lock);
85 _leave(" = NULL");
86 return NULL;
87
88found_extant_call:
David Howellsfff72422016-09-07 14:34:21 +010089 rxrpc_get_call(call, rxrpc_call_got);
David Howells2341e072016-06-09 23:02:51 +010090 read_unlock(&rx->call_lock);
91 _leave(" = %p [%d]", call, atomic_read(&call->usage));
92 return call;
93}
94
95/*
David Howells17926a72007-04-26 15:48:28 -070096 * allocate a new call
97 */
David Howells00e90712016-09-08 11:10:12 +010098struct rxrpc_call *rxrpc_alloc_call(gfp_t gfp)
David Howells17926a72007-04-26 15:48:28 -070099{
100 struct rxrpc_call *call;
101
102 call = kmem_cache_zalloc(rxrpc_call_jar, gfp);
103 if (!call)
104 return NULL;
105
David Howells248f2192016-09-08 11:10:12 +0100106 call->rxtx_buffer = kcalloc(RXRPC_RXTX_BUFF_SIZE,
107 sizeof(struct sk_buff *),
David Howells17926a72007-04-26 15:48:28 -0700108 gfp);
David Howells248f2192016-09-08 11:10:12 +0100109 if (!call->rxtx_buffer)
110 goto nomem;
David Howells17926a72007-04-26 15:48:28 -0700111
David Howells248f2192016-09-08 11:10:12 +0100112 call->rxtx_annotations = kcalloc(RXRPC_RXTX_BUFF_SIZE, sizeof(u8), gfp);
113 if (!call->rxtx_annotations)
114 goto nomem_2;
115
David Howells540b1c42017-02-27 15:43:06 +0000116 mutex_init(&call->user_mutex);
David Howells248f2192016-09-08 11:10:12 +0100117 setup_timer(&call->timer, rxrpc_call_timer_expired,
118 (unsigned long)call);
David Howells17926a72007-04-26 15:48:28 -0700119 INIT_WORK(&call->processor, &rxrpc_process_call);
David Howells999b69f2016-06-17 15:42:35 +0100120 INIT_LIST_HEAD(&call->link);
David Howells45025bc2016-08-24 07:30:52 +0100121 INIT_LIST_HEAD(&call->chan_wait_link);
David Howells17926a72007-04-26 15:48:28 -0700122 INIT_LIST_HEAD(&call->accept_link);
David Howells248f2192016-09-08 11:10:12 +0100123 INIT_LIST_HEAD(&call->recvmsg_link);
124 INIT_LIST_HEAD(&call->sock_link);
David Howells45025bc2016-08-24 07:30:52 +0100125 init_waitqueue_head(&call->waitq);
David Howells17926a72007-04-26 15:48:28 -0700126 spin_lock_init(&call->lock);
127 rwlock_init(&call->state_lock);
128 atomic_set(&call->usage, 1);
129 call->debug_id = atomic_inc_return(&rxrpc_debug_id);
David Howellse754eba2017-06-07 12:40:03 +0100130 call->tx_total_len = -1;
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
David Howellsf7aec122017-06-14 17:56:50 +0100139 call->cong_cwnd = 2;
David Howells57494342016-09-24 18:05:27 +0100140 call->cong_ssthresh = RXRPC_RXTX_BUFF_SIZE - 1;
David Howells17926a72007-04-26 15:48:28 -0700141 return call;
David Howells248f2192016-09-08 11:10:12 +0100142
143nomem_2:
144 kfree(call->rxtx_buffer);
145nomem:
146 kmem_cache_free(rxrpc_call_jar, call);
147 return NULL;
David Howells17926a72007-04-26 15:48:28 -0700148}
149
150/*
David Howells999b69f2016-06-17 15:42:35 +0100151 * Allocate a new client call.
David Howells17926a72007-04-26 15:48:28 -0700152 */
David Howells248f2192016-09-08 11:10:12 +0100153static struct rxrpc_call *rxrpc_alloc_client_call(struct sockaddr_rxrpc *srx,
David Howellsaa390bb2016-06-17 10:06:56 +0100154 gfp_t gfp)
David Howells17926a72007-04-26 15:48:28 -0700155{
156 struct rxrpc_call *call;
David Howells57494342016-09-24 18:05:27 +0100157 ktime_t now;
David Howells17926a72007-04-26 15:48:28 -0700158
159 _enter("");
160
David Howells17926a72007-04-26 15:48:28 -0700161 call = rxrpc_alloc_call(gfp);
162 if (!call)
163 return ERR_PTR(-ENOMEM);
David Howells999b69f2016-06-17 15:42:35 +0100164 call->state = RXRPC_CALL_CLIENT_AWAIT_CONN;
David Howells999b69f2016-06-17 15:42:35 +0100165 call->service_id = srx->srx_service;
David Howells71f3ca42016-09-17 10:49:14 +0100166 call->tx_phase = true;
David Howells57494342016-09-24 18:05:27 +0100167 now = ktime_get_real();
168 call->acks_latest_ts = now;
169 call->cong_tstamp = now;
David Howells999b69f2016-06-17 15:42:35 +0100170
171 _leave(" = %p", call);
172 return call;
173}
174
175/*
David Howells248f2192016-09-08 11:10:12 +0100176 * Initiate the call ack/resend/expiry timer.
David Howells999b69f2016-06-17 15:42:35 +0100177 */
David Howells248f2192016-09-08 11:10:12 +0100178static void rxrpc_start_call_timer(struct rxrpc_call *call)
David Howells999b69f2016-06-17 15:42:35 +0100179{
David Howellsdf0adc72016-09-26 22:12:49 +0100180 ktime_t now = ktime_get_real(), expire_at;
David Howells999b69f2016-06-17 15:42:35 +0100181
David Howellsdf0adc72016-09-26 22:12:49 +0100182 expire_at = ktime_add_ms(now, rxrpc_max_call_lifetime);
David Howells248f2192016-09-08 11:10:12 +0100183 call->expire_at = expire_at;
184 call->ack_at = expire_at;
David Howellsa5af7e12016-10-06 08:11:49 +0100185 call->ping_at = expire_at;
David Howells248f2192016-09-08 11:10:12 +0100186 call->resend_at = expire_at;
David Howellsdf0adc72016-09-26 22:12:49 +0100187 call->timer.expires = jiffies + LONG_MAX / 2;
188 rxrpc_set_timer(call, rxrpc_timer_begin, now);
David Howells17926a72007-04-26 15:48:28 -0700189}
190
191/*
David Howells540b1c42017-02-27 15:43:06 +0000192 * Set up a call for the given parameters.
193 * - Called with the socket lock held, which it must release.
194 * - If it returns a call, the call's lock will need releasing by the caller.
David Howells17926a72007-04-26 15:48:28 -0700195 */
David Howells2341e072016-06-09 23:02:51 +0100196struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *rx,
David Howells19ffa012016-04-04 14:00:36 +0100197 struct rxrpc_conn_parameters *cp,
David Howells999b69f2016-06-17 15:42:35 +0100198 struct sockaddr_rxrpc *srx,
David Howells17926a72007-04-26 15:48:28 -0700199 unsigned long user_call_ID,
David Howellse754eba2017-06-07 12:40:03 +0100200 s64 tx_total_len,
David Howells17926a72007-04-26 15:48:28 -0700201 gfp_t gfp)
David Howells540b1c42017-02-27 15:43:06 +0000202 __releases(&rx->sk.sk_lock.slock)
David Howells17926a72007-04-26 15:48:28 -0700203{
David Howells2341e072016-06-09 23:02:51 +0100204 struct rxrpc_call *call, *xcall;
David Howells2baec2c2017-05-24 17:02:32 +0100205 struct rxrpc_net *rxnet = rxrpc_net(sock_net(&rx->sk));
David Howells2341e072016-06-09 23:02:51 +0100206 struct rb_node *parent, **pp;
David Howellse34d4232016-08-30 09:49:29 +0100207 const void *here = __builtin_return_address(0);
David Howells999b69f2016-06-17 15:42:35 +0100208 int ret;
David Howells17926a72007-04-26 15:48:28 -0700209
David Howells999b69f2016-06-17 15:42:35 +0100210 _enter("%p,%lx", rx, user_call_ID);
David Howells17926a72007-04-26 15:48:28 -0700211
David Howells248f2192016-09-08 11:10:12 +0100212 call = rxrpc_alloc_client_call(srx, gfp);
David Howells2341e072016-06-09 23:02:51 +0100213 if (IS_ERR(call)) {
David Howells540b1c42017-02-27 15:43:06 +0000214 release_sock(&rx->sk);
David Howells2341e072016-06-09 23:02:51 +0100215 _leave(" = %ld", PTR_ERR(call));
216 return call;
David Howells17926a72007-04-26 15:48:28 -0700217 }
218
David Howellse754eba2017-06-07 12:40:03 +0100219 call->tx_total_len = tx_total_len;
David Howellsa84a46d2016-09-17 10:49:14 +0100220 trace_rxrpc_call(call, rxrpc_call_new_client, atomic_read(&call->usage),
221 here, (const void *)user_call_ID);
David Howellse34d4232016-08-30 09:49:29 +0100222
David Howells540b1c42017-02-27 15:43:06 +0000223 /* We need to protect a partially set up call against the user as we
224 * will be acting outside the socket lock.
225 */
226 mutex_lock(&call->user_mutex);
227
David Howells999b69f2016-06-17 15:42:35 +0100228 /* Publish the call, even though it is incompletely set up as yet */
David Howells17926a72007-04-26 15:48:28 -0700229 write_lock(&rx->call_lock);
230
231 pp = &rx->calls.rb_node;
232 parent = NULL;
233 while (*pp) {
234 parent = *pp;
David Howells2341e072016-06-09 23:02:51 +0100235 xcall = rb_entry(parent, struct rxrpc_call, sock_node);
David Howells17926a72007-04-26 15:48:28 -0700236
David Howells2341e072016-06-09 23:02:51 +0100237 if (user_call_ID < xcall->user_call_ID)
David Howells17926a72007-04-26 15:48:28 -0700238 pp = &(*pp)->rb_left;
David Howells2341e072016-06-09 23:02:51 +0100239 else if (user_call_ID > xcall->user_call_ID)
David Howells17926a72007-04-26 15:48:28 -0700240 pp = &(*pp)->rb_right;
241 else
David Howells357f5ef2016-09-17 10:49:12 +0100242 goto error_dup_user_ID;
David Howells17926a72007-04-26 15:48:28 -0700243 }
244
David Howells248f2192016-09-08 11:10:12 +0100245 rcu_assign_pointer(call->socket, rx);
David Howells357f5ef2016-09-17 10:49:12 +0100246 call->user_call_ID = user_call_ID;
247 __set_bit(RXRPC_CALL_HAS_USERID, &call->flags);
David Howellsfff72422016-09-07 14:34:21 +0100248 rxrpc_get_call(call, rxrpc_call_got_userid);
David Howells17926a72007-04-26 15:48:28 -0700249 rb_link_node(&call->sock_node, parent, pp);
250 rb_insert_color(&call->sock_node, &rx->calls);
David Howells248f2192016-09-08 11:10:12 +0100251 list_add(&call->sock_link, &rx->sock_calls);
252
David Howells17926a72007-04-26 15:48:28 -0700253 write_unlock(&rx->call_lock);
254
David Howells2baec2c2017-05-24 17:02:32 +0100255 write_lock(&rxnet->call_lock);
256 list_add_tail(&call->link, &rxnet->calls);
257 write_unlock(&rxnet->call_lock);
David Howells17926a72007-04-26 15:48:28 -0700258
David Howells540b1c42017-02-27 15:43:06 +0000259 /* From this point on, the call is protected by its own lock. */
260 release_sock(&rx->sk);
261
David Howells248f2192016-09-08 11:10:12 +0100262 /* Set up or get a connection record and set the protocol parameters,
263 * including channel number and call ID.
264 */
265 ret = rxrpc_connect_call(call, cp, srx, gfp);
David Howells999b69f2016-06-17 15:42:35 +0100266 if (ret < 0)
267 goto error;
268
David Howellsa84a46d2016-09-17 10:49:14 +0100269 trace_rxrpc_call(call, rxrpc_call_connected, atomic_read(&call->usage),
David Howells54fde422016-10-13 08:39:52 +0100270 here, NULL);
David Howellsa84a46d2016-09-17 10:49:14 +0100271
David Howells248f2192016-09-08 11:10:12 +0100272 spin_lock_bh(&call->conn->params.peer->lock);
273 hlist_add_head(&call->error_link,
274 &call->conn->params.peer->error_targets);
275 spin_unlock_bh(&call->conn->params.peer->lock);
276
277 rxrpc_start_call_timer(call);
278
David Howells17926a72007-04-26 15:48:28 -0700279 _net("CALL new %d on CONN %d", call->debug_id, call->conn->debug_id);
280
281 _leave(" = %p [new]", call);
282 return call;
283
David Howells2341e072016-06-09 23:02:51 +0100284 /* We unexpectedly found the user ID in the list after taking
285 * the call_lock. This shouldn't happen unless the user races
286 * with itself and tries to add the same user ID twice at the
287 * same time in different threads.
288 */
David Howells357f5ef2016-09-17 10:49:12 +0100289error_dup_user_ID:
David Howells17926a72007-04-26 15:48:28 -0700290 write_unlock(&rx->call_lock);
David Howells540b1c42017-02-27 15:43:06 +0000291 release_sock(&rx->sk);
David Howells8d94aa32016-09-07 09:19:31 +0100292 ret = -EEXIST;
David Howells357f5ef2016-09-17 10:49:12 +0100293
294error:
295 __rxrpc_set_call_completion(call, RXRPC_CALL_LOCAL_ERROR,
296 RX_CALL_DEAD, ret);
David Howellsa84a46d2016-09-17 10:49:14 +0100297 trace_rxrpc_call(call, rxrpc_call_error, atomic_read(&call->usage),
298 here, ERR_PTR(ret));
David Howells357f5ef2016-09-17 10:49:12 +0100299 rxrpc_release_call(rx, call);
David Howells540b1c42017-02-27 15:43:06 +0000300 mutex_unlock(&call->user_mutex);
David Howells357f5ef2016-09-17 10:49:12 +0100301 rxrpc_put_call(call, rxrpc_call_put);
302 _leave(" = %d", ret);
303 return ERR_PTR(ret);
David Howells17926a72007-04-26 15:48:28 -0700304}
305
306/*
David Howells248f2192016-09-08 11:10:12 +0100307 * Set up an incoming call. call->conn points to the connection.
308 * This is called in BH context and isn't allowed to fail.
David Howells17926a72007-04-26 15:48:28 -0700309 */
David Howells248f2192016-09-08 11:10:12 +0100310void rxrpc_incoming_call(struct rxrpc_sock *rx,
311 struct rxrpc_call *call,
312 struct sk_buff *skb)
David Howells17926a72007-04-26 15:48:28 -0700313{
David Howells248f2192016-09-08 11:10:12 +0100314 struct rxrpc_connection *conn = call->conn;
David Howells42886ff2016-06-16 13:31:07 +0100315 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells248f2192016-09-08 11:10:12 +0100316 u32 chan;
David Howells17926a72007-04-26 15:48:28 -0700317
David Howells248f2192016-09-08 11:10:12 +0100318 _enter(",%d", call->conn->debug_id);
David Howells17926a72007-04-26 15:48:28 -0700319
David Howells248f2192016-09-08 11:10:12 +0100320 rcu_assign_pointer(call->socket, rx);
321 call->call_id = sp->hdr.callNumber;
322 call->service_id = sp->hdr.serviceId;
323 call->cid = sp->hdr.cid;
324 call->state = RXRPC_CALL_SERVER_ACCEPTING;
325 if (sp->hdr.securityIndex > 0)
326 call->state = RXRPC_CALL_SERVER_SECURING;
David Howells57494342016-09-24 18:05:27 +0100327 call->cong_tstamp = skb->tstamp;
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 Howellsfff72422016-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);
David Howells3a927892017-04-06 10:11:56 +0100486 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);
David Howells3a927892017-04-06 10:11:56 +0100494 rxrpc_abort_call("SKT", call, 0, RX_CALL_DEAD, -ECONNRESET);
David Howells26cb02a2016-10-06 08:11:49 +0100495 rxrpc_send_abort_packet(call);
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 Howellsfff72422016-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 Howells2baec2c2017-05-24 17:02:32 +0100508 struct rxrpc_net *rxnet;
David Howellse34d4232016-08-30 09:49:29 +0100509 const void *here = __builtin_return_address(0);
David Howells2ab27212016-09-08 11:10:12 +0100510 int n;
David Howellse34d4232016-08-30 09:49:29 +0100511
David Howells17926a72007-04-26 15:48:28 -0700512 ASSERT(call != NULL);
513
David Howellse34d4232016-08-30 09:49:29 +0100514 n = atomic_dec_return(&call->usage);
David Howells2ab27212016-09-08 11:10:12 +0100515 trace_rxrpc_call(call, op, n, here, NULL);
David Howellse34d4232016-08-30 09:49:29 +0100516 ASSERTCMP(n, >=, 0);
517 if (n == 0) {
David Howells17926a72007-04-26 15:48:28 -0700518 _debug("call %d dead", call->debug_id);
David Howells248f2192016-09-08 11:10:12 +0100519 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
David Howellse34d4232016-08-30 09:49:29 +0100520
David Howells2baec2c2017-05-24 17:02:32 +0100521 if (!list_empty(&call->link)) {
522 rxnet = rxrpc_net(sock_net(&call->socket->sk));
523 write_lock(&rxnet->call_lock);
524 list_del_init(&call->link);
525 write_unlock(&rxnet->call_lock);
526 }
David Howellse34d4232016-08-30 09:49:29 +0100527
David Howells8d94aa32016-09-07 09:19:31 +0100528 rxrpc_cleanup_call(call);
David Howellse34d4232016-08-30 09:49:29 +0100529 }
David Howells17926a72007-04-26 15:48:28 -0700530}
531
532/*
David Howellsdee46362016-06-27 17:11:19 +0100533 * Final call destruction under RCU.
534 */
535static void rxrpc_rcu_destroy_call(struct rcu_head *rcu)
536{
537 struct rxrpc_call *call = container_of(rcu, struct rxrpc_call, rcu);
538
David Howellsdf5d8bf2016-08-24 14:31:43 +0100539 rxrpc_put_peer(call->peer);
David Howells248f2192016-09-08 11:10:12 +0100540 kfree(call->rxtx_buffer);
541 kfree(call->rxtx_annotations);
David Howellsdee46362016-06-27 17:11:19 +0100542 kmem_cache_free(rxrpc_call_jar, call);
543}
544
545/*
David Howells17926a72007-04-26 15:48:28 -0700546 * clean up a call
547 */
David Howells00e90712016-09-08 11:10:12 +0100548void rxrpc_cleanup_call(struct rxrpc_call *call)
David Howells17926a72007-04-26 15:48:28 -0700549{
David Howells248f2192016-09-08 11:10:12 +0100550 int i;
David Howells17926a72007-04-26 15:48:28 -0700551
David Howells248f2192016-09-08 11:10:12 +0100552 _net("DESTROY CALL %d", call->debug_id);
David Howells17926a72007-04-26 15:48:28 -0700553
554 memset(&call->sock_node, 0xcd, sizeof(call->sock_node));
555
David Howells248f2192016-09-08 11:10:12 +0100556 del_timer_sync(&call->timer);
David Howells17926a72007-04-26 15:48:28 -0700557
David Howells8d94aa32016-09-07 09:19:31 +0100558 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
David Howells17926a72007-04-26 15:48:28 -0700559 ASSERT(test_bit(RXRPC_CALL_RELEASED, &call->flags));
David Howellse653cfe2016-04-04 14:00:38 +0100560 ASSERTCMP(call->conn, ==, NULL);
David Howells17926a72007-04-26 15:48:28 -0700561
David Howells248f2192016-09-08 11:10:12 +0100562 /* Clean up the Rx/Tx buffer */
563 for (i = 0; i < RXRPC_RXTX_BUFF_SIZE; i++)
David Howells71f3ca42016-09-17 10:49:14 +0100564 rxrpc_free_skb(call->rxtx_buffer[i],
565 (call->tx_phase ? rxrpc_skb_tx_cleaned :
566 rxrpc_skb_rx_cleaned));
David Howells17926a72007-04-26 15:48:28 -0700567
David Howells71f3ca42016-09-17 10:49:14 +0100568 rxrpc_free_skb(call->tx_pending, rxrpc_skb_tx_cleaned);
David Howells17926a72007-04-26 15:48:28 -0700569
David Howellsdee46362016-06-27 17:11:19 +0100570 call_rcu(&call->rcu, rxrpc_rcu_destroy_call);
David Howells17926a72007-04-26 15:48:28 -0700571}
572
573/*
David Howells2baec2c2017-05-24 17:02:32 +0100574 * Make sure that all calls are gone from a network namespace. To reach this
575 * point, any open UDP sockets in that namespace must have been closed, so any
576 * outstanding calls cannot be doing I/O.
David Howells17926a72007-04-26 15:48:28 -0700577 */
David Howells2baec2c2017-05-24 17:02:32 +0100578void rxrpc_destroy_all_calls(struct rxrpc_net *rxnet)
David Howells17926a72007-04-26 15:48:28 -0700579{
580 struct rxrpc_call *call;
581
582 _enter("");
David Howells8d94aa32016-09-07 09:19:31 +0100583
David Howells2baec2c2017-05-24 17:02:32 +0100584 if (list_empty(&rxnet->calls))
David Howells8d94aa32016-09-07 09:19:31 +0100585 return;
David Howells248f2192016-09-08 11:10:12 +0100586
David Howells2baec2c2017-05-24 17:02:32 +0100587 write_lock(&rxnet->call_lock);
David Howells17926a72007-04-26 15:48:28 -0700588
David Howells2baec2c2017-05-24 17:02:32 +0100589 while (!list_empty(&rxnet->calls)) {
590 call = list_entry(rxnet->calls.next, struct rxrpc_call, link);
David Howells17926a72007-04-26 15:48:28 -0700591 _debug("Zapping call %p", call);
592
David Howellse34d4232016-08-30 09:49:29 +0100593 rxrpc_see_call(call);
David Howells17926a72007-04-26 15:48:28 -0700594 list_del_init(&call->link);
595
David Howells248f2192016-09-08 11:10:12 +0100596 pr_err("Call %p still in use (%d,%s,%lx,%lx)!\n",
David Howells8d94aa32016-09-07 09:19:31 +0100597 call, atomic_read(&call->usage),
David Howells8d94aa32016-09-07 09:19:31 +0100598 rxrpc_call_states[call->state],
599 call->flags, call->events);
David Howells17926a72007-04-26 15:48:28 -0700600
David Howells2baec2c2017-05-24 17:02:32 +0100601 write_unlock(&rxnet->call_lock);
David Howells17926a72007-04-26 15:48:28 -0700602 cond_resched();
David Howells2baec2c2017-05-24 17:02:32 +0100603 write_lock(&rxnet->call_lock);
David Howells17926a72007-04-26 15:48:28 -0700604 }
605
David Howells2baec2c2017-05-24 17:02:32 +0100606 write_unlock(&rxnet->call_lock);
David Howells17926a72007-04-26 15:48:28 -0700607}