blob: fcdd6555a820ed224ca01a32930ba04d0f6b58e5 [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 Howellsfff724292016-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 Howells75e42122016-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 Howellsfff724292016-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 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 Howells2341e072016-06-09 23:02:51 +0100279 /* We unexpectedly found the user ID in the list after taking
280 * the call_lock. This shouldn't happen unless the user races
281 * with itself and tries to add the same user ID twice at the
282 * same time in different threads.
283 */
David Howells357f5ef2016-09-17 10:49:12 +0100284error_dup_user_ID:
David Howells17926a72007-04-26 15:48:28 -0700285 write_unlock(&rx->call_lock);
David Howells540b1c42017-02-27 15:43:06 +0000286 release_sock(&rx->sk);
David Howells8d94aa32016-09-07 09:19:31 +0100287 ret = -EEXIST;
David Howells357f5ef2016-09-17 10:49:12 +0100288
289error:
290 __rxrpc_set_call_completion(call, RXRPC_CALL_LOCAL_ERROR,
291 RX_CALL_DEAD, ret);
David Howellsa84a46d2016-09-17 10:49:14 +0100292 trace_rxrpc_call(call, rxrpc_call_error, atomic_read(&call->usage),
293 here, ERR_PTR(ret));
David Howells357f5ef2016-09-17 10:49:12 +0100294 rxrpc_release_call(rx, call);
David Howells540b1c42017-02-27 15:43:06 +0000295 mutex_unlock(&call->user_mutex);
David Howells357f5ef2016-09-17 10:49:12 +0100296 rxrpc_put_call(call, rxrpc_call_put);
297 _leave(" = %d", ret);
298 return ERR_PTR(ret);
David Howells17926a72007-04-26 15:48:28 -0700299}
300
301/*
David Howellsc038a582017-08-29 10:19:01 +0100302 * Retry a call to a new address. It is expected that the Tx queue of the call
303 * will contain data previously packaged for an old call.
304 */
305int rxrpc_retry_client_call(struct rxrpc_sock *rx,
306 struct rxrpc_call *call,
307 struct rxrpc_conn_parameters *cp,
308 struct sockaddr_rxrpc *srx,
309 gfp_t gfp)
310{
311 const void *here = __builtin_return_address(0);
312 int ret;
313
314 /* Set up or get a connection record and set the protocol parameters,
315 * including channel number and call ID.
316 */
317 ret = rxrpc_connect_call(call, cp, srx, gfp);
318 if (ret < 0)
319 goto error;
320
321 trace_rxrpc_call(call, rxrpc_call_connected, atomic_read(&call->usage),
322 here, NULL);
323
324 rxrpc_start_call_timer(call);
325
326 _net("CALL new %d on CONN %d", call->debug_id, call->conn->debug_id);
327
328 if (!test_and_set_bit(RXRPC_CALL_EV_RESEND, &call->events))
329 rxrpc_queue_call(call);
330
331 _leave(" = 0");
332 return 0;
333
334error:
335 rxrpc_set_call_completion(call, RXRPC_CALL_LOCAL_ERROR,
336 RX_CALL_DEAD, ret);
337 trace_rxrpc_call(call, rxrpc_call_error, atomic_read(&call->usage),
338 here, ERR_PTR(ret));
339 _leave(" = %d", ret);
340 return ret;
341}
342
343/*
David Howells248f2192016-09-08 11:10:12 +0100344 * Set up an incoming call. call->conn points to the connection.
345 * This is called in BH context and isn't allowed to fail.
David Howells17926a72007-04-26 15:48:28 -0700346 */
David Howells248f2192016-09-08 11:10:12 +0100347void rxrpc_incoming_call(struct rxrpc_sock *rx,
348 struct rxrpc_call *call,
349 struct sk_buff *skb)
David Howells17926a72007-04-26 15:48:28 -0700350{
David Howells248f2192016-09-08 11:10:12 +0100351 struct rxrpc_connection *conn = call->conn;
David Howells42886ff2016-06-16 13:31:07 +0100352 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells248f2192016-09-08 11:10:12 +0100353 u32 chan;
David Howells17926a72007-04-26 15:48:28 -0700354
David Howells248f2192016-09-08 11:10:12 +0100355 _enter(",%d", call->conn->debug_id);
David Howells17926a72007-04-26 15:48:28 -0700356
David Howells248f2192016-09-08 11:10:12 +0100357 rcu_assign_pointer(call->socket, rx);
358 call->call_id = sp->hdr.callNumber;
359 call->service_id = sp->hdr.serviceId;
360 call->cid = sp->hdr.cid;
361 call->state = RXRPC_CALL_SERVER_ACCEPTING;
362 if (sp->hdr.securityIndex > 0)
363 call->state = RXRPC_CALL_SERVER_SECURING;
David Howells57494342016-09-24 18:05:27 +0100364 call->cong_tstamp = skb->tstamp;
David Howells17926a72007-04-26 15:48:28 -0700365
David Howells248f2192016-09-08 11:10:12 +0100366 /* Set the channel for this call. We don't get channel_lock as we're
367 * only defending against the data_ready handler (which we're called
368 * from) and the RESPONSE packet parser (which is only really
369 * interested in call_counter and can cope with a disagreement with the
370 * call pointer).
David Howellsa1399f82016-06-27 14:39:44 +0100371 */
David Howells248f2192016-09-08 11:10:12 +0100372 chan = sp->hdr.cid & RXRPC_CHANNELMASK;
373 conn->channels[chan].call_counter = call->call_id;
374 conn->channels[chan].call_id = call->call_id;
David Howellsa1399f82016-06-27 14:39:44 +0100375 rcu_assign_pointer(conn->channels[chan].call, call);
David Howells17926a72007-04-26 15:48:28 -0700376
David Howells85f32272016-04-04 14:00:36 +0100377 spin_lock(&conn->params.peer->lock);
378 hlist_add_head(&call->error_link, &conn->params.peer->error_targets);
379 spin_unlock(&conn->params.peer->lock);
David Howells17926a72007-04-26 15:48:28 -0700380
David Howells17926a72007-04-26 15:48:28 -0700381 _net("CALL incoming %d on CONN %d", call->debug_id, call->conn->debug_id);
382
David Howells248f2192016-09-08 11:10:12 +0100383 rxrpc_start_call_timer(call);
384 _leave("");
David Howells17926a72007-04-26 15:48:28 -0700385}
386
387/*
David Howells8d94aa32016-09-07 09:19:31 +0100388 * Queue a call's work processor, getting a ref to pass to the work queue.
389 */
390bool rxrpc_queue_call(struct rxrpc_call *call)
391{
392 const void *here = __builtin_return_address(0);
393 int n = __atomic_add_unless(&call->usage, 1, 0);
David Howells8d94aa32016-09-07 09:19:31 +0100394 if (n == 0)
395 return false;
396 if (rxrpc_queue_work(&call->processor))
David Howells2ab27212016-09-08 11:10:12 +0100397 trace_rxrpc_call(call, rxrpc_call_queued, n + 1, here, NULL);
David Howells8d94aa32016-09-07 09:19:31 +0100398 else
399 rxrpc_put_call(call, rxrpc_call_put_noqueue);
400 return true;
401}
402
403/*
404 * Queue a call's work processor, passing the callers ref to the work queue.
405 */
406bool __rxrpc_queue_call(struct rxrpc_call *call)
407{
408 const void *here = __builtin_return_address(0);
409 int n = atomic_read(&call->usage);
David Howells8d94aa32016-09-07 09:19:31 +0100410 ASSERTCMP(n, >=, 1);
411 if (rxrpc_queue_work(&call->processor))
David Howells2ab27212016-09-08 11:10:12 +0100412 trace_rxrpc_call(call, rxrpc_call_queued_ref, n, here, NULL);
David Howells8d94aa32016-09-07 09:19:31 +0100413 else
414 rxrpc_put_call(call, rxrpc_call_put_noqueue);
415 return true;
416}
417
418/*
David Howellse34d4232016-08-30 09:49:29 +0100419 * Note the re-emergence of a call.
420 */
421void rxrpc_see_call(struct rxrpc_call *call)
422{
423 const void *here = __builtin_return_address(0);
424 if (call) {
425 int n = atomic_read(&call->usage);
David Howellse34d4232016-08-30 09:49:29 +0100426
David Howells2ab27212016-09-08 11:10:12 +0100427 trace_rxrpc_call(call, rxrpc_call_seen, n, here, NULL);
David Howellse34d4232016-08-30 09:49:29 +0100428 }
429}
430
431/*
432 * Note the addition of a ref on a call.
433 */
David Howellsfff724292016-09-07 14:34:21 +0100434void rxrpc_get_call(struct rxrpc_call *call, enum rxrpc_call_trace op)
David Howellse34d4232016-08-30 09:49:29 +0100435{
436 const void *here = __builtin_return_address(0);
437 int n = atomic_inc_return(&call->usage);
David Howellse34d4232016-08-30 09:49:29 +0100438
David Howells2ab27212016-09-08 11:10:12 +0100439 trace_rxrpc_call(call, op, n, here, NULL);
David Howellse34d4232016-08-30 09:49:29 +0100440}
441
442/*
David Howells248f2192016-09-08 11:10:12 +0100443 * Detach a call from its owning socket.
David Howells17926a72007-04-26 15:48:28 -0700444 */
David Howells8d94aa32016-09-07 09:19:31 +0100445void rxrpc_release_call(struct rxrpc_sock *rx, struct rxrpc_call *call)
David Howells17926a72007-04-26 15:48:28 -0700446{
David Howellsa84a46d2016-09-17 10:49:14 +0100447 const void *here = __builtin_return_address(0);
David Howells248f2192016-09-08 11:10:12 +0100448 struct rxrpc_connection *conn = call->conn;
449 bool put = false;
450 int i;
451
452 _enter("{%d,%d}", call->debug_id, atomic_read(&call->usage));
453
David Howellsa84a46d2016-09-17 10:49:14 +0100454 trace_rxrpc_call(call, rxrpc_call_release, atomic_read(&call->usage),
455 here, (const void *)call->flags);
David Howells17926a72007-04-26 15:48:28 -0700456
David Howellsa84a46d2016-09-17 10:49:14 +0100457 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
David Howellse34d4232016-08-30 09:49:29 +0100458
David Howells17926a72007-04-26 15:48:28 -0700459 spin_lock_bh(&call->lock);
460 if (test_and_set_bit(RXRPC_CALL_RELEASED, &call->flags))
461 BUG();
462 spin_unlock_bh(&call->lock);
463
David Howells248f2192016-09-08 11:10:12 +0100464 del_timer_sync(&call->timer);
David Howells17926a72007-04-26 15:48:28 -0700465
David Howells248f2192016-09-08 11:10:12 +0100466 /* Make sure we don't get any more notifications */
467 write_lock_bh(&rx->recvmsg_lock);
David Howellse653cfe2016-04-04 14:00:38 +0100468
David Howells248f2192016-09-08 11:10:12 +0100469 if (!list_empty(&call->recvmsg_link)) {
David Howells17926a72007-04-26 15:48:28 -0700470 _debug("unlinking once-pending call %p { e=%lx f=%lx }",
471 call, call->events, call->flags);
David Howells248f2192016-09-08 11:10:12 +0100472 list_del(&call->recvmsg_link);
473 put = true;
474 }
475
476 /* list_empty() must return false in rxrpc_notify_socket() */
477 call->recvmsg_link.next = NULL;
478 call->recvmsg_link.prev = NULL;
479
480 write_unlock_bh(&rx->recvmsg_lock);
481 if (put)
482 rxrpc_put_call(call, rxrpc_call_put);
483
484 write_lock(&rx->call_lock);
485
486 if (test_and_clear_bit(RXRPC_CALL_HAS_USERID, &call->flags)) {
David Howells17926a72007-04-26 15:48:28 -0700487 rb_erase(&call->sock_node, &rx->calls);
488 memset(&call->sock_node, 0xdd, sizeof(call->sock_node));
David Howells8d94aa32016-09-07 09:19:31 +0100489 rxrpc_put_call(call, rxrpc_call_put_userid);
David Howells17926a72007-04-26 15:48:28 -0700490 }
David Howells17926a72007-04-26 15:48:28 -0700491
David Howells248f2192016-09-08 11:10:12 +0100492 list_del(&call->sock_link);
493 write_unlock(&rx->call_lock);
David Howells651350d2007-04-26 15:50:17 -0700494
David Howells248f2192016-09-08 11:10:12 +0100495 _debug("RELEASE CALL %p (%d CONN %p)", call, call->debug_id, conn);
David Howells8d94aa32016-09-07 09:19:31 +0100496
David Howells248f2192016-09-08 11:10:12 +0100497 if (conn)
David Howells8d94aa32016-09-07 09:19:31 +0100498 rxrpc_disconnect_call(call);
David Howellse653cfe2016-04-04 14:00:38 +0100499
David Howells248f2192016-09-08 11:10:12 +0100500 for (i = 0; i < RXRPC_RXTX_BUFF_SIZE; i++) {
David Howells71f3ca42016-09-17 10:49:14 +0100501 rxrpc_free_skb(call->rxtx_buffer[i],
502 (call->tx_phase ? rxrpc_skb_tx_cleaned :
503 rxrpc_skb_rx_cleaned));
David Howells248f2192016-09-08 11:10:12 +0100504 call->rxtx_buffer[i] = NULL;
David Howells17926a72007-04-26 15:48:28 -0700505 }
David Howells17926a72007-04-26 15:48:28 -0700506
507 _leave("");
508}
509
510/*
David Howellsc038a582017-08-29 10:19:01 +0100511 * Prepare a kernel service call for retry.
512 */
513int rxrpc_prepare_call_for_retry(struct rxrpc_sock *rx, struct rxrpc_call *call)
514{
515 const void *here = __builtin_return_address(0);
516 int i;
517 u8 last = 0;
518
519 _enter("{%d,%d}", call->debug_id, atomic_read(&call->usage));
520
521 trace_rxrpc_call(call, rxrpc_call_release, atomic_read(&call->usage),
522 here, (const void *)call->flags);
523
524 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
525 ASSERTCMP(call->completion, !=, RXRPC_CALL_REMOTELY_ABORTED);
526 ASSERTCMP(call->completion, !=, RXRPC_CALL_LOCALLY_ABORTED);
527 ASSERT(list_empty(&call->recvmsg_link));
528
529 del_timer_sync(&call->timer);
530
531 _debug("RELEASE CALL %p (%d CONN %p)", call, call->debug_id, call->conn);
532
533 if (call->conn)
534 rxrpc_disconnect_call(call);
535
536 if (rxrpc_is_service_call(call) ||
537 !call->tx_phase ||
538 call->tx_hard_ack != 0 ||
539 call->rx_hard_ack != 0 ||
540 call->rx_top != 0)
541 return -EINVAL;
542
543 call->state = RXRPC_CALL_UNINITIALISED;
544 call->completion = RXRPC_CALL_SUCCEEDED;
545 call->call_id = 0;
546 call->cid = 0;
547 call->cong_cwnd = 0;
548 call->cong_extra = 0;
549 call->cong_ssthresh = 0;
550 call->cong_mode = 0;
551 call->cong_dup_acks = 0;
552 call->cong_cumul_acks = 0;
553 call->acks_lowest_nak = 0;
554
555 for (i = 0; i < RXRPC_RXTX_BUFF_SIZE; i++) {
556 last |= call->rxtx_annotations[i];
557 call->rxtx_annotations[i] &= RXRPC_TX_ANNO_LAST;
558 call->rxtx_annotations[i] |= RXRPC_TX_ANNO_RETRANS;
559 }
560
561 _leave(" = 0");
562 return 0;
563}
564
565/*
David Howells17926a72007-04-26 15:48:28 -0700566 * release all the calls associated with a socket
567 */
568void rxrpc_release_calls_on_socket(struct rxrpc_sock *rx)
569{
570 struct rxrpc_call *call;
David Howells17926a72007-04-26 15:48:28 -0700571
572 _enter("%p", rx);
573
David Howells0360da62016-09-17 10:49:11 +0100574 while (!list_empty(&rx->to_be_accepted)) {
575 call = list_entry(rx->to_be_accepted.next,
576 struct rxrpc_call, accept_link);
577 list_del(&call->accept_link);
David Howells3a927892017-04-06 10:11:56 +0100578 rxrpc_abort_call("SKR", call, 0, RX_CALL_DEAD, -ECONNRESET);
David Howells0360da62016-09-17 10:49:11 +0100579 rxrpc_put_call(call, rxrpc_call_put);
580 }
581
David Howells248f2192016-09-08 11:10:12 +0100582 while (!list_empty(&rx->sock_calls)) {
583 call = list_entry(rx->sock_calls.next,
584 struct rxrpc_call, sock_link);
585 rxrpc_get_call(call, rxrpc_call_got);
David Howells3a927892017-04-06 10:11:56 +0100586 rxrpc_abort_call("SKT", call, 0, RX_CALL_DEAD, -ECONNRESET);
David Howells26cb02a2016-10-06 08:11:49 +0100587 rxrpc_send_abort_packet(call);
David Howells8d94aa32016-09-07 09:19:31 +0100588 rxrpc_release_call(rx, call);
David Howells248f2192016-09-08 11:10:12 +0100589 rxrpc_put_call(call, rxrpc_call_put);
David Howells17926a72007-04-26 15:48:28 -0700590 }
591
David Howells17926a72007-04-26 15:48:28 -0700592 _leave("");
593}
594
595/*
596 * release a call
597 */
David Howellsfff724292016-09-07 14:34:21 +0100598void rxrpc_put_call(struct rxrpc_call *call, enum rxrpc_call_trace op)
David Howells17926a72007-04-26 15:48:28 -0700599{
David Howells2baec2c2017-05-24 17:02:32 +0100600 struct rxrpc_net *rxnet;
David Howellse34d4232016-08-30 09:49:29 +0100601 const void *here = __builtin_return_address(0);
David Howells2ab27212016-09-08 11:10:12 +0100602 int n;
David Howellse34d4232016-08-30 09:49:29 +0100603
David Howells17926a72007-04-26 15:48:28 -0700604 ASSERT(call != NULL);
605
David Howellse34d4232016-08-30 09:49:29 +0100606 n = atomic_dec_return(&call->usage);
David Howells2ab27212016-09-08 11:10:12 +0100607 trace_rxrpc_call(call, op, n, here, NULL);
David Howellse34d4232016-08-30 09:49:29 +0100608 ASSERTCMP(n, >=, 0);
609 if (n == 0) {
David Howells17926a72007-04-26 15:48:28 -0700610 _debug("call %d dead", call->debug_id);
David Howells248f2192016-09-08 11:10:12 +0100611 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
David Howellse34d4232016-08-30 09:49:29 +0100612
David Howells2baec2c2017-05-24 17:02:32 +0100613 if (!list_empty(&call->link)) {
614 rxnet = rxrpc_net(sock_net(&call->socket->sk));
615 write_lock(&rxnet->call_lock);
616 list_del_init(&call->link);
617 write_unlock(&rxnet->call_lock);
618 }
David Howellse34d4232016-08-30 09:49:29 +0100619
David Howells8d94aa32016-09-07 09:19:31 +0100620 rxrpc_cleanup_call(call);
David Howellse34d4232016-08-30 09:49:29 +0100621 }
David Howells17926a72007-04-26 15:48:28 -0700622}
623
624/*
David Howellsdee46362016-06-27 17:11:19 +0100625 * Final call destruction under RCU.
626 */
627static void rxrpc_rcu_destroy_call(struct rcu_head *rcu)
628{
629 struct rxrpc_call *call = container_of(rcu, struct rxrpc_call, rcu);
630
David Howellsdf5d8bf2016-08-24 14:31:43 +0100631 rxrpc_put_peer(call->peer);
David Howells248f2192016-09-08 11:10:12 +0100632 kfree(call->rxtx_buffer);
633 kfree(call->rxtx_annotations);
David Howellsdee46362016-06-27 17:11:19 +0100634 kmem_cache_free(rxrpc_call_jar, call);
635}
636
637/*
David Howells17926a72007-04-26 15:48:28 -0700638 * clean up a call
639 */
David Howells00e90712016-09-08 11:10:12 +0100640void rxrpc_cleanup_call(struct rxrpc_call *call)
David Howells17926a72007-04-26 15:48:28 -0700641{
David Howells248f2192016-09-08 11:10:12 +0100642 int i;
David Howells17926a72007-04-26 15:48:28 -0700643
David Howells248f2192016-09-08 11:10:12 +0100644 _net("DESTROY CALL %d", call->debug_id);
David Howells17926a72007-04-26 15:48:28 -0700645
646 memset(&call->sock_node, 0xcd, sizeof(call->sock_node));
647
David Howells248f2192016-09-08 11:10:12 +0100648 del_timer_sync(&call->timer);
David Howells17926a72007-04-26 15:48:28 -0700649
David Howells8d94aa32016-09-07 09:19:31 +0100650 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
David Howells17926a72007-04-26 15:48:28 -0700651 ASSERT(test_bit(RXRPC_CALL_RELEASED, &call->flags));
David Howellse653cfe2016-04-04 14:00:38 +0100652 ASSERTCMP(call->conn, ==, NULL);
David Howells17926a72007-04-26 15:48:28 -0700653
David Howells248f2192016-09-08 11:10:12 +0100654 /* Clean up the Rx/Tx buffer */
655 for (i = 0; i < RXRPC_RXTX_BUFF_SIZE; i++)
David Howells71f3ca42016-09-17 10:49:14 +0100656 rxrpc_free_skb(call->rxtx_buffer[i],
657 (call->tx_phase ? rxrpc_skb_tx_cleaned :
658 rxrpc_skb_rx_cleaned));
David Howells17926a72007-04-26 15:48:28 -0700659
David Howells71f3ca42016-09-17 10:49:14 +0100660 rxrpc_free_skb(call->tx_pending, rxrpc_skb_tx_cleaned);
David Howells17926a72007-04-26 15:48:28 -0700661
David Howellsdee46362016-06-27 17:11:19 +0100662 call_rcu(&call->rcu, rxrpc_rcu_destroy_call);
David Howells17926a72007-04-26 15:48:28 -0700663}
664
665/*
David Howells2baec2c2017-05-24 17:02:32 +0100666 * Make sure that all calls are gone from a network namespace. To reach this
667 * point, any open UDP sockets in that namespace must have been closed, so any
668 * outstanding calls cannot be doing I/O.
David Howells17926a72007-04-26 15:48:28 -0700669 */
David Howells2baec2c2017-05-24 17:02:32 +0100670void rxrpc_destroy_all_calls(struct rxrpc_net *rxnet)
David Howells17926a72007-04-26 15:48:28 -0700671{
672 struct rxrpc_call *call;
673
674 _enter("");
David Howells8d94aa32016-09-07 09:19:31 +0100675
David Howells2baec2c2017-05-24 17:02:32 +0100676 if (list_empty(&rxnet->calls))
David Howells8d94aa32016-09-07 09:19:31 +0100677 return;
David Howells248f2192016-09-08 11:10:12 +0100678
David Howells2baec2c2017-05-24 17:02:32 +0100679 write_lock(&rxnet->call_lock);
David Howells17926a72007-04-26 15:48:28 -0700680
David Howells2baec2c2017-05-24 17:02:32 +0100681 while (!list_empty(&rxnet->calls)) {
682 call = list_entry(rxnet->calls.next, struct rxrpc_call, link);
David Howells17926a72007-04-26 15:48:28 -0700683 _debug("Zapping call %p", call);
684
David Howellse34d4232016-08-30 09:49:29 +0100685 rxrpc_see_call(call);
David Howells17926a72007-04-26 15:48:28 -0700686 list_del_init(&call->link);
687
David Howells248f2192016-09-08 11:10:12 +0100688 pr_err("Call %p still in use (%d,%s,%lx,%lx)!\n",
David Howells8d94aa32016-09-07 09:19:31 +0100689 call, atomic_read(&call->usage),
David Howells8d94aa32016-09-07 09:19:31 +0100690 rxrpc_call_states[call->state],
691 call->flags, call->events);
David Howells17926a72007-04-26 15:48:28 -0700692
David Howells2baec2c2017-05-24 17:02:32 +0100693 write_unlock(&rxnet->call_lock);
David Howells17926a72007-04-26 15:48:28 -0700694 cond_resched();
David Howells2baec2c2017-05-24 17:02:32 +0100695 write_lock(&rxnet->call_lock);
David Howells17926a72007-04-26 15:48:28 -0700696 }
697
David Howells2baec2c2017-05-24 17:02:32 +0100698 write_unlock(&rxnet->call_lock);
David Howells17926a72007-04-26 15:48:28 -0700699}