blob: b305970a9b63a4ae03d091782027ef143075636d [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 Howellsa158bdd2017-11-24 10:18:41 +000054 if (call->state < RXRPC_CALL_COMPLETE) {
55 trace_rxrpc_timer(call, rxrpc_timer_expired, jiffies);
56 rxrpc_queue_call(call);
57 }
David Howells248f2192016-09-08 11:10:12 +010058}
David Howells17926a72007-04-26 15:48:28 -070059
David Howells9faaff52017-11-24 10:18:40 +000060static struct lock_class_key rxrpc_call_user_mutex_lock_class_key;
61
David Howells17926a72007-04-26 15:48:28 -070062/*
David Howells2341e072016-06-09 23:02:51 +010063 * find an extant server call
64 * - called in process context with IRQs enabled
65 */
66struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *rx,
67 unsigned long user_call_ID)
68{
69 struct rxrpc_call *call;
70 struct rb_node *p;
71
72 _enter("%p,%lx", rx, user_call_ID);
73
74 read_lock(&rx->call_lock);
75
76 p = rx->calls.rb_node;
77 while (p) {
78 call = rb_entry(p, struct rxrpc_call, sock_node);
79
80 if (user_call_ID < call->user_call_ID)
81 p = p->rb_left;
82 else if (user_call_ID > call->user_call_ID)
83 p = p->rb_right;
84 else
85 goto found_extant_call;
86 }
87
88 read_unlock(&rx->call_lock);
89 _leave(" = NULL");
90 return NULL;
91
92found_extant_call:
David Howellsfff724292016-09-07 14:34:21 +010093 rxrpc_get_call(call, rxrpc_call_got);
David Howells2341e072016-06-09 23:02:51 +010094 read_unlock(&rx->call_lock);
95 _leave(" = %p [%d]", call, atomic_read(&call->usage));
96 return call;
97}
98
99/*
David Howells17926a72007-04-26 15:48:28 -0700100 * allocate a new call
101 */
David Howells9faaff52017-11-24 10:18:40 +0000102struct rxrpc_call *rxrpc_alloc_call(struct rxrpc_sock *rx, gfp_t gfp)
David Howells17926a72007-04-26 15:48:28 -0700103{
104 struct rxrpc_call *call;
105
106 call = kmem_cache_zalloc(rxrpc_call_jar, gfp);
107 if (!call)
108 return NULL;
109
David Howells248f2192016-09-08 11:10:12 +0100110 call->rxtx_buffer = kcalloc(RXRPC_RXTX_BUFF_SIZE,
111 sizeof(struct sk_buff *),
David Howells17926a72007-04-26 15:48:28 -0700112 gfp);
David Howells248f2192016-09-08 11:10:12 +0100113 if (!call->rxtx_buffer)
114 goto nomem;
David Howells17926a72007-04-26 15:48:28 -0700115
David Howells248f2192016-09-08 11:10:12 +0100116 call->rxtx_annotations = kcalloc(RXRPC_RXTX_BUFF_SIZE, sizeof(u8), gfp);
117 if (!call->rxtx_annotations)
118 goto nomem_2;
119
David Howells540b1c42017-02-27 15:43:06 +0000120 mutex_init(&call->user_mutex);
David Howells9faaff52017-11-24 10:18:40 +0000121
122 /* Prevent lockdep reporting a deadlock false positive between the afs
123 * filesystem and sys_sendmsg() via the mmap sem.
124 */
125 if (rx->sk.sk_kern_sock)
126 lockdep_set_class(&call->user_mutex,
127 &rxrpc_call_user_mutex_lock_class_key);
128
David Howells248f2192016-09-08 11:10:12 +0100129 setup_timer(&call->timer, rxrpc_call_timer_expired,
130 (unsigned long)call);
David Howells17926a72007-04-26 15:48:28 -0700131 INIT_WORK(&call->processor, &rxrpc_process_call);
David Howells999b69f2016-06-17 15:42:35 +0100132 INIT_LIST_HEAD(&call->link);
David Howells45025bc2016-08-24 07:30:52 +0100133 INIT_LIST_HEAD(&call->chan_wait_link);
David Howells17926a72007-04-26 15:48:28 -0700134 INIT_LIST_HEAD(&call->accept_link);
David Howells248f2192016-09-08 11:10:12 +0100135 INIT_LIST_HEAD(&call->recvmsg_link);
136 INIT_LIST_HEAD(&call->sock_link);
David Howells45025bc2016-08-24 07:30:52 +0100137 init_waitqueue_head(&call->waitq);
David Howells17926a72007-04-26 15:48:28 -0700138 spin_lock_init(&call->lock);
David Howells20acbd92017-11-02 15:06:08 +0000139 spin_lock_init(&call->notify_lock);
David Howells17926a72007-04-26 15:48:28 -0700140 rwlock_init(&call->state_lock);
141 atomic_set(&call->usage, 1);
142 call->debug_id = atomic_inc_return(&rxrpc_debug_id);
David Howellse754eba2017-06-07 12:40:03 +0100143 call->tx_total_len = -1;
David Howellsa158bdd2017-11-24 10:18:41 +0000144 call->next_rx_timo = 20 * HZ;
145 call->next_req_timo = 1 * HZ;
David Howells17926a72007-04-26 15:48:28 -0700146
147 memset(&call->sock_node, 0xed, sizeof(call->sock_node));
148
David Howells248f2192016-09-08 11:10:12 +0100149 /* Leave space in the ring to handle a maxed-out jumbo packet */
David Howells75e42122016-09-13 22:36:22 +0100150 call->rx_winsize = rxrpc_rx_window_size;
David Howells248f2192016-09-08 11:10:12 +0100151 call->tx_winsize = 16;
152 call->rx_expect_next = 1;
David Howells57494342016-09-24 18:05:27 +0100153
David Howellsf7aec122017-06-14 17:56:50 +0100154 call->cong_cwnd = 2;
David Howells57494342016-09-24 18:05:27 +0100155 call->cong_ssthresh = RXRPC_RXTX_BUFF_SIZE - 1;
David Howells17926a72007-04-26 15:48:28 -0700156 return call;
David Howells248f2192016-09-08 11:10:12 +0100157
158nomem_2:
159 kfree(call->rxtx_buffer);
160nomem:
161 kmem_cache_free(rxrpc_call_jar, call);
162 return NULL;
David Howells17926a72007-04-26 15:48:28 -0700163}
164
165/*
David Howells999b69f2016-06-17 15:42:35 +0100166 * Allocate a new client call.
David Howells17926a72007-04-26 15:48:28 -0700167 */
David Howells9faaff52017-11-24 10:18:40 +0000168static struct rxrpc_call *rxrpc_alloc_client_call(struct rxrpc_sock *rx,
169 struct sockaddr_rxrpc *srx,
David Howellsaa390bb2016-06-17 10:06:56 +0100170 gfp_t gfp)
David Howells17926a72007-04-26 15:48:28 -0700171{
172 struct rxrpc_call *call;
David Howells57494342016-09-24 18:05:27 +0100173 ktime_t now;
David Howells17926a72007-04-26 15:48:28 -0700174
175 _enter("");
176
David Howells9faaff52017-11-24 10:18:40 +0000177 call = rxrpc_alloc_call(rx, gfp);
David Howells17926a72007-04-26 15:48:28 -0700178 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 Howells71f3ca42016-09-17 10:49:14 +0100182 call->tx_phase = true;
David Howells57494342016-09-24 18:05:27 +0100183 now = ktime_get_real();
184 call->acks_latest_ts = now;
185 call->cong_tstamp = now;
David Howells999b69f2016-06-17 15:42:35 +0100186
187 _leave(" = %p", call);
188 return call;
189}
190
191/*
David Howells248f2192016-09-08 11:10:12 +0100192 * Initiate the call ack/resend/expiry timer.
David Howells999b69f2016-06-17 15:42:35 +0100193 */
David Howells248f2192016-09-08 11:10:12 +0100194static void rxrpc_start_call_timer(struct rxrpc_call *call)
David Howells999b69f2016-06-17 15:42:35 +0100195{
David Howellsa158bdd2017-11-24 10:18:41 +0000196 unsigned long now = jiffies;
197 unsigned long j = now + MAX_JIFFY_OFFSET;
David Howells999b69f2016-06-17 15:42:35 +0100198
David Howellsa158bdd2017-11-24 10:18:41 +0000199 call->ack_at = j;
200 call->resend_at = j;
201 call->ping_at = j;
202 call->expect_rx_by = j;
203 call->expect_req_by = j;
204 call->expect_term_by = j;
205 call->timer.expires = now;
David Howells17926a72007-04-26 15:48:28 -0700206}
207
208/*
David Howells540b1c42017-02-27 15:43:06 +0000209 * Set up a call for the given parameters.
210 * - Called with the socket lock held, which it must release.
211 * - If it returns a call, the call's lock will need releasing by the caller.
David Howells17926a72007-04-26 15:48:28 -0700212 */
David Howells2341e072016-06-09 23:02:51 +0100213struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *rx,
David Howells19ffa012016-04-04 14:00:36 +0100214 struct rxrpc_conn_parameters *cp,
David Howells999b69f2016-06-17 15:42:35 +0100215 struct sockaddr_rxrpc *srx,
David Howells48124172017-11-24 10:18:41 +0000216 struct rxrpc_call_params *p,
David Howells17926a72007-04-26 15:48:28 -0700217 gfp_t gfp)
David Howells540b1c42017-02-27 15:43:06 +0000218 __releases(&rx->sk.sk_lock.slock)
David Howells17926a72007-04-26 15:48:28 -0700219{
David Howells2341e072016-06-09 23:02:51 +0100220 struct rxrpc_call *call, *xcall;
David Howells2baec2c2017-05-24 17:02:32 +0100221 struct rxrpc_net *rxnet = rxrpc_net(sock_net(&rx->sk));
David Howells2341e072016-06-09 23:02:51 +0100222 struct rb_node *parent, **pp;
David Howellse34d4232016-08-30 09:49:29 +0100223 const void *here = __builtin_return_address(0);
David Howells999b69f2016-06-17 15:42:35 +0100224 int ret;
David Howells17926a72007-04-26 15:48:28 -0700225
David Howells48124172017-11-24 10:18:41 +0000226 _enter("%p,%lx", rx, p->user_call_ID);
David Howells17926a72007-04-26 15:48:28 -0700227
David Howells9faaff52017-11-24 10:18:40 +0000228 call = rxrpc_alloc_client_call(rx, srx, gfp);
David Howells2341e072016-06-09 23:02:51 +0100229 if (IS_ERR(call)) {
David Howells540b1c42017-02-27 15:43:06 +0000230 release_sock(&rx->sk);
David Howells2341e072016-06-09 23:02:51 +0100231 _leave(" = %ld", PTR_ERR(call));
232 return call;
David Howells17926a72007-04-26 15:48:28 -0700233 }
234
David Howells48124172017-11-24 10:18:41 +0000235 call->tx_total_len = p->tx_total_len;
David Howellsa84a46d2016-09-17 10:49:14 +0100236 trace_rxrpc_call(call, rxrpc_call_new_client, atomic_read(&call->usage),
David Howells48124172017-11-24 10:18:41 +0000237 here, (const void *)p->user_call_ID);
David Howellse34d4232016-08-30 09:49:29 +0100238
David Howells540b1c42017-02-27 15:43:06 +0000239 /* We need to protect a partially set up call against the user as we
240 * will be acting outside the socket lock.
241 */
242 mutex_lock(&call->user_mutex);
243
David Howells999b69f2016-06-17 15:42:35 +0100244 /* Publish the call, even though it is incompletely set up as yet */
David Howells17926a72007-04-26 15:48:28 -0700245 write_lock(&rx->call_lock);
246
247 pp = &rx->calls.rb_node;
248 parent = NULL;
249 while (*pp) {
250 parent = *pp;
David Howells2341e072016-06-09 23:02:51 +0100251 xcall = rb_entry(parent, struct rxrpc_call, sock_node);
David Howells17926a72007-04-26 15:48:28 -0700252
David Howells48124172017-11-24 10:18:41 +0000253 if (p->user_call_ID < xcall->user_call_ID)
David Howells17926a72007-04-26 15:48:28 -0700254 pp = &(*pp)->rb_left;
David Howells48124172017-11-24 10:18:41 +0000255 else if (p->user_call_ID > xcall->user_call_ID)
David Howells17926a72007-04-26 15:48:28 -0700256 pp = &(*pp)->rb_right;
257 else
David Howells357f5ef2016-09-17 10:49:12 +0100258 goto error_dup_user_ID;
David Howells17926a72007-04-26 15:48:28 -0700259 }
260
David Howells248f2192016-09-08 11:10:12 +0100261 rcu_assign_pointer(call->socket, rx);
David Howells48124172017-11-24 10:18:41 +0000262 call->user_call_ID = p->user_call_ID;
David Howells357f5ef2016-09-17 10:49:12 +0100263 __set_bit(RXRPC_CALL_HAS_USERID, &call->flags);
David Howellsfff724292016-09-07 14:34:21 +0100264 rxrpc_get_call(call, rxrpc_call_got_userid);
David Howells17926a72007-04-26 15:48:28 -0700265 rb_link_node(&call->sock_node, parent, pp);
266 rb_insert_color(&call->sock_node, &rx->calls);
David Howells248f2192016-09-08 11:10:12 +0100267 list_add(&call->sock_link, &rx->sock_calls);
268
David Howells17926a72007-04-26 15:48:28 -0700269 write_unlock(&rx->call_lock);
270
David Howells2baec2c2017-05-24 17:02:32 +0100271 write_lock(&rxnet->call_lock);
272 list_add_tail(&call->link, &rxnet->calls);
273 write_unlock(&rxnet->call_lock);
David Howells17926a72007-04-26 15:48:28 -0700274
David Howells540b1c42017-02-27 15:43:06 +0000275 /* From this point on, the call is protected by its own lock. */
276 release_sock(&rx->sk);
277
David Howells248f2192016-09-08 11:10:12 +0100278 /* Set up or get a connection record and set the protocol parameters,
279 * including channel number and call ID.
280 */
281 ret = rxrpc_connect_call(call, cp, srx, gfp);
David Howells999b69f2016-06-17 15:42:35 +0100282 if (ret < 0)
283 goto error;
284
David Howellsa84a46d2016-09-17 10:49:14 +0100285 trace_rxrpc_call(call, rxrpc_call_connected, atomic_read(&call->usage),
David Howells54fde422016-10-13 08:39:52 +0100286 here, NULL);
David Howellsa84a46d2016-09-17 10:49:14 +0100287
David Howells248f2192016-09-08 11:10:12 +0100288 rxrpc_start_call_timer(call);
289
David Howells17926a72007-04-26 15:48:28 -0700290 _net("CALL new %d on CONN %d", call->debug_id, call->conn->debug_id);
291
292 _leave(" = %p [new]", call);
293 return call;
294
David Howells2341e072016-06-09 23:02:51 +0100295 /* We unexpectedly found the user ID in the list after taking
296 * the call_lock. This shouldn't happen unless the user races
297 * with itself and tries to add the same user ID twice at the
298 * same time in different threads.
299 */
David Howells357f5ef2016-09-17 10:49:12 +0100300error_dup_user_ID:
David Howells17926a72007-04-26 15:48:28 -0700301 write_unlock(&rx->call_lock);
David Howells540b1c42017-02-27 15:43:06 +0000302 release_sock(&rx->sk);
David Howells8d94aa32016-09-07 09:19:31 +0100303 ret = -EEXIST;
David Howells357f5ef2016-09-17 10:49:12 +0100304
305error:
306 __rxrpc_set_call_completion(call, RXRPC_CALL_LOCAL_ERROR,
307 RX_CALL_DEAD, ret);
David Howellsa84a46d2016-09-17 10:49:14 +0100308 trace_rxrpc_call(call, rxrpc_call_error, atomic_read(&call->usage),
309 here, ERR_PTR(ret));
David Howells357f5ef2016-09-17 10:49:12 +0100310 rxrpc_release_call(rx, call);
David Howells540b1c42017-02-27 15:43:06 +0000311 mutex_unlock(&call->user_mutex);
David Howells357f5ef2016-09-17 10:49:12 +0100312 rxrpc_put_call(call, rxrpc_call_put);
313 _leave(" = %d", ret);
314 return ERR_PTR(ret);
David Howells17926a72007-04-26 15:48:28 -0700315}
316
317/*
David Howellsc038a582017-08-29 10:19:01 +0100318 * Retry a call to a new address. It is expected that the Tx queue of the call
319 * will contain data previously packaged for an old call.
320 */
321int rxrpc_retry_client_call(struct rxrpc_sock *rx,
322 struct rxrpc_call *call,
323 struct rxrpc_conn_parameters *cp,
324 struct sockaddr_rxrpc *srx,
325 gfp_t gfp)
326{
327 const void *here = __builtin_return_address(0);
328 int ret;
329
330 /* Set up or get a connection record and set the protocol parameters,
331 * including channel number and call ID.
332 */
333 ret = rxrpc_connect_call(call, cp, srx, gfp);
334 if (ret < 0)
335 goto error;
336
337 trace_rxrpc_call(call, rxrpc_call_connected, atomic_read(&call->usage),
338 here, NULL);
339
340 rxrpc_start_call_timer(call);
341
342 _net("CALL new %d on CONN %d", call->debug_id, call->conn->debug_id);
343
344 if (!test_and_set_bit(RXRPC_CALL_EV_RESEND, &call->events))
345 rxrpc_queue_call(call);
346
347 _leave(" = 0");
348 return 0;
349
350error:
351 rxrpc_set_call_completion(call, RXRPC_CALL_LOCAL_ERROR,
352 RX_CALL_DEAD, ret);
353 trace_rxrpc_call(call, rxrpc_call_error, atomic_read(&call->usage),
354 here, ERR_PTR(ret));
355 _leave(" = %d", ret);
356 return ret;
357}
358
359/*
David Howells248f2192016-09-08 11:10:12 +0100360 * Set up an incoming call. call->conn points to the connection.
361 * This is called in BH context and isn't allowed to fail.
David Howells17926a72007-04-26 15:48:28 -0700362 */
David Howells248f2192016-09-08 11:10:12 +0100363void rxrpc_incoming_call(struct rxrpc_sock *rx,
364 struct rxrpc_call *call,
365 struct sk_buff *skb)
David Howells17926a72007-04-26 15:48:28 -0700366{
David Howells248f2192016-09-08 11:10:12 +0100367 struct rxrpc_connection *conn = call->conn;
David Howells42886ff2016-06-16 13:31:07 +0100368 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells248f2192016-09-08 11:10:12 +0100369 u32 chan;
David Howells17926a72007-04-26 15:48:28 -0700370
David Howells248f2192016-09-08 11:10:12 +0100371 _enter(",%d", call->conn->debug_id);
David Howells17926a72007-04-26 15:48:28 -0700372
David Howells248f2192016-09-08 11:10:12 +0100373 rcu_assign_pointer(call->socket, rx);
374 call->call_id = sp->hdr.callNumber;
375 call->service_id = sp->hdr.serviceId;
376 call->cid = sp->hdr.cid;
377 call->state = RXRPC_CALL_SERVER_ACCEPTING;
378 if (sp->hdr.securityIndex > 0)
379 call->state = RXRPC_CALL_SERVER_SECURING;
David Howells57494342016-09-24 18:05:27 +0100380 call->cong_tstamp = skb->tstamp;
David Howells17926a72007-04-26 15:48:28 -0700381
David Howells248f2192016-09-08 11:10:12 +0100382 /* Set the channel for this call. We don't get channel_lock as we're
383 * only defending against the data_ready handler (which we're called
384 * from) and the RESPONSE packet parser (which is only really
385 * interested in call_counter and can cope with a disagreement with the
386 * call pointer).
David Howellsa1399f82016-06-27 14:39:44 +0100387 */
David Howells248f2192016-09-08 11:10:12 +0100388 chan = sp->hdr.cid & RXRPC_CHANNELMASK;
389 conn->channels[chan].call_counter = call->call_id;
390 conn->channels[chan].call_id = call->call_id;
David Howellsa1399f82016-06-27 14:39:44 +0100391 rcu_assign_pointer(conn->channels[chan].call, call);
David Howells17926a72007-04-26 15:48:28 -0700392
David Howells85f32272016-04-04 14:00:36 +0100393 spin_lock(&conn->params.peer->lock);
394 hlist_add_head(&call->error_link, &conn->params.peer->error_targets);
395 spin_unlock(&conn->params.peer->lock);
David Howells17926a72007-04-26 15:48:28 -0700396
David Howells17926a72007-04-26 15:48:28 -0700397 _net("CALL incoming %d on CONN %d", call->debug_id, call->conn->debug_id);
398
David Howells248f2192016-09-08 11:10:12 +0100399 rxrpc_start_call_timer(call);
400 _leave("");
David Howells17926a72007-04-26 15:48:28 -0700401}
402
403/*
David Howells8d94aa32016-09-07 09:19:31 +0100404 * Queue a call's work processor, getting a ref to pass 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_add_unless(&call->usage, 1, 0);
David Howells8d94aa32016-09-07 09:19:31 +0100410 if (n == 0)
411 return false;
412 if (rxrpc_queue_work(&call->processor))
David Howells2ab27212016-09-08 11:10:12 +0100413 trace_rxrpc_call(call, rxrpc_call_queued, n + 1, here, NULL);
David Howells8d94aa32016-09-07 09:19:31 +0100414 else
415 rxrpc_put_call(call, rxrpc_call_put_noqueue);
416 return true;
417}
418
419/*
420 * Queue a call's work processor, passing the callers ref to the work queue.
421 */
422bool __rxrpc_queue_call(struct rxrpc_call *call)
423{
424 const void *here = __builtin_return_address(0);
425 int n = atomic_read(&call->usage);
David Howells8d94aa32016-09-07 09:19:31 +0100426 ASSERTCMP(n, >=, 1);
427 if (rxrpc_queue_work(&call->processor))
David Howells2ab27212016-09-08 11:10:12 +0100428 trace_rxrpc_call(call, rxrpc_call_queued_ref, n, here, NULL);
David Howells8d94aa32016-09-07 09:19:31 +0100429 else
430 rxrpc_put_call(call, rxrpc_call_put_noqueue);
431 return true;
432}
433
434/*
David Howellse34d4232016-08-30 09:49:29 +0100435 * Note the re-emergence of a call.
436 */
437void rxrpc_see_call(struct rxrpc_call *call)
438{
439 const void *here = __builtin_return_address(0);
440 if (call) {
441 int n = atomic_read(&call->usage);
David Howellse34d4232016-08-30 09:49:29 +0100442
David Howells2ab27212016-09-08 11:10:12 +0100443 trace_rxrpc_call(call, rxrpc_call_seen, n, here, NULL);
David Howellse34d4232016-08-30 09:49:29 +0100444 }
445}
446
447/*
448 * Note the addition of a ref on a call.
449 */
David Howellsfff724292016-09-07 14:34:21 +0100450void rxrpc_get_call(struct rxrpc_call *call, enum rxrpc_call_trace op)
David Howellse34d4232016-08-30 09:49:29 +0100451{
452 const void *here = __builtin_return_address(0);
453 int n = atomic_inc_return(&call->usage);
David Howellse34d4232016-08-30 09:49:29 +0100454
David Howells2ab27212016-09-08 11:10:12 +0100455 trace_rxrpc_call(call, op, n, here, NULL);
David Howellse34d4232016-08-30 09:49:29 +0100456}
457
458/*
David Howells248f2192016-09-08 11:10:12 +0100459 * Detach a call from its owning socket.
David Howells17926a72007-04-26 15:48:28 -0700460 */
David Howells8d94aa32016-09-07 09:19:31 +0100461void rxrpc_release_call(struct rxrpc_sock *rx, struct rxrpc_call *call)
David Howells17926a72007-04-26 15:48:28 -0700462{
David Howellsa84a46d2016-09-17 10:49:14 +0100463 const void *here = __builtin_return_address(0);
David Howells248f2192016-09-08 11:10:12 +0100464 struct rxrpc_connection *conn = call->conn;
465 bool put = false;
466 int i;
467
468 _enter("{%d,%d}", call->debug_id, atomic_read(&call->usage));
469
David Howellsa84a46d2016-09-17 10:49:14 +0100470 trace_rxrpc_call(call, rxrpc_call_release, atomic_read(&call->usage),
471 here, (const void *)call->flags);
David Howells17926a72007-04-26 15:48:28 -0700472
David Howellsa84a46d2016-09-17 10:49:14 +0100473 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
David Howellse34d4232016-08-30 09:49:29 +0100474
David Howells17926a72007-04-26 15:48:28 -0700475 spin_lock_bh(&call->lock);
476 if (test_and_set_bit(RXRPC_CALL_RELEASED, &call->flags))
477 BUG();
478 spin_unlock_bh(&call->lock);
479
David Howells248f2192016-09-08 11:10:12 +0100480 del_timer_sync(&call->timer);
David Howells17926a72007-04-26 15:48:28 -0700481
David Howells248f2192016-09-08 11:10:12 +0100482 /* Make sure we don't get any more notifications */
483 write_lock_bh(&rx->recvmsg_lock);
David Howellse653cfe2016-04-04 14:00:38 +0100484
David Howells248f2192016-09-08 11:10:12 +0100485 if (!list_empty(&call->recvmsg_link)) {
David Howells17926a72007-04-26 15:48:28 -0700486 _debug("unlinking once-pending call %p { e=%lx f=%lx }",
487 call, call->events, call->flags);
David Howells248f2192016-09-08 11:10:12 +0100488 list_del(&call->recvmsg_link);
489 put = true;
490 }
491
492 /* list_empty() must return false in rxrpc_notify_socket() */
493 call->recvmsg_link.next = NULL;
494 call->recvmsg_link.prev = NULL;
495
496 write_unlock_bh(&rx->recvmsg_lock);
497 if (put)
498 rxrpc_put_call(call, rxrpc_call_put);
499
500 write_lock(&rx->call_lock);
501
502 if (test_and_clear_bit(RXRPC_CALL_HAS_USERID, &call->flags)) {
David Howells17926a72007-04-26 15:48:28 -0700503 rb_erase(&call->sock_node, &rx->calls);
504 memset(&call->sock_node, 0xdd, sizeof(call->sock_node));
David Howells8d94aa32016-09-07 09:19:31 +0100505 rxrpc_put_call(call, rxrpc_call_put_userid);
David Howells17926a72007-04-26 15:48:28 -0700506 }
David Howells17926a72007-04-26 15:48:28 -0700507
David Howells248f2192016-09-08 11:10:12 +0100508 list_del(&call->sock_link);
509 write_unlock(&rx->call_lock);
David Howells651350d2007-04-26 15:50:17 -0700510
David Howells248f2192016-09-08 11:10:12 +0100511 _debug("RELEASE CALL %p (%d CONN %p)", call, call->debug_id, conn);
David Howells8d94aa32016-09-07 09:19:31 +0100512
David Howells248f2192016-09-08 11:10:12 +0100513 if (conn)
David Howells8d94aa32016-09-07 09:19:31 +0100514 rxrpc_disconnect_call(call);
David Howellse653cfe2016-04-04 14:00:38 +0100515
David Howells248f2192016-09-08 11:10:12 +0100516 for (i = 0; i < RXRPC_RXTX_BUFF_SIZE; i++) {
David Howells71f3ca42016-09-17 10:49:14 +0100517 rxrpc_free_skb(call->rxtx_buffer[i],
518 (call->tx_phase ? rxrpc_skb_tx_cleaned :
519 rxrpc_skb_rx_cleaned));
David Howells248f2192016-09-08 11:10:12 +0100520 call->rxtx_buffer[i] = NULL;
David Howells17926a72007-04-26 15:48:28 -0700521 }
David Howells17926a72007-04-26 15:48:28 -0700522
523 _leave("");
524}
525
526/*
David Howellsc038a582017-08-29 10:19:01 +0100527 * Prepare a kernel service call for retry.
528 */
529int rxrpc_prepare_call_for_retry(struct rxrpc_sock *rx, struct rxrpc_call *call)
530{
531 const void *here = __builtin_return_address(0);
532 int i;
533 u8 last = 0;
534
535 _enter("{%d,%d}", call->debug_id, atomic_read(&call->usage));
536
537 trace_rxrpc_call(call, rxrpc_call_release, atomic_read(&call->usage),
538 here, (const void *)call->flags);
539
540 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
541 ASSERTCMP(call->completion, !=, RXRPC_CALL_REMOTELY_ABORTED);
542 ASSERTCMP(call->completion, !=, RXRPC_CALL_LOCALLY_ABORTED);
543 ASSERT(list_empty(&call->recvmsg_link));
544
545 del_timer_sync(&call->timer);
546
547 _debug("RELEASE CALL %p (%d CONN %p)", call, call->debug_id, call->conn);
548
549 if (call->conn)
550 rxrpc_disconnect_call(call);
551
552 if (rxrpc_is_service_call(call) ||
553 !call->tx_phase ||
554 call->tx_hard_ack != 0 ||
555 call->rx_hard_ack != 0 ||
556 call->rx_top != 0)
557 return -EINVAL;
558
559 call->state = RXRPC_CALL_UNINITIALISED;
560 call->completion = RXRPC_CALL_SUCCEEDED;
561 call->call_id = 0;
562 call->cid = 0;
563 call->cong_cwnd = 0;
564 call->cong_extra = 0;
565 call->cong_ssthresh = 0;
566 call->cong_mode = 0;
567 call->cong_dup_acks = 0;
568 call->cong_cumul_acks = 0;
569 call->acks_lowest_nak = 0;
570
571 for (i = 0; i < RXRPC_RXTX_BUFF_SIZE; i++) {
572 last |= call->rxtx_annotations[i];
573 call->rxtx_annotations[i] &= RXRPC_TX_ANNO_LAST;
574 call->rxtx_annotations[i] |= RXRPC_TX_ANNO_RETRANS;
575 }
576
577 _leave(" = 0");
578 return 0;
579}
580
581/*
David Howells17926a72007-04-26 15:48:28 -0700582 * release all the calls associated with a socket
583 */
584void rxrpc_release_calls_on_socket(struct rxrpc_sock *rx)
585{
586 struct rxrpc_call *call;
David Howells17926a72007-04-26 15:48:28 -0700587
588 _enter("%p", rx);
589
David Howells0360da62016-09-17 10:49:11 +0100590 while (!list_empty(&rx->to_be_accepted)) {
591 call = list_entry(rx->to_be_accepted.next,
592 struct rxrpc_call, accept_link);
593 list_del(&call->accept_link);
David Howells3a927892017-04-06 10:11:56 +0100594 rxrpc_abort_call("SKR", call, 0, RX_CALL_DEAD, -ECONNRESET);
David Howells0360da62016-09-17 10:49:11 +0100595 rxrpc_put_call(call, rxrpc_call_put);
596 }
597
David Howells248f2192016-09-08 11:10:12 +0100598 while (!list_empty(&rx->sock_calls)) {
599 call = list_entry(rx->sock_calls.next,
600 struct rxrpc_call, sock_link);
601 rxrpc_get_call(call, rxrpc_call_got);
David Howells3a927892017-04-06 10:11:56 +0100602 rxrpc_abort_call("SKT", call, 0, RX_CALL_DEAD, -ECONNRESET);
David Howells26cb02a2016-10-06 08:11:49 +0100603 rxrpc_send_abort_packet(call);
David Howells8d94aa32016-09-07 09:19:31 +0100604 rxrpc_release_call(rx, call);
David Howells248f2192016-09-08 11:10:12 +0100605 rxrpc_put_call(call, rxrpc_call_put);
David Howells17926a72007-04-26 15:48:28 -0700606 }
607
David Howells17926a72007-04-26 15:48:28 -0700608 _leave("");
609}
610
611/*
612 * release a call
613 */
David Howellsfff724292016-09-07 14:34:21 +0100614void rxrpc_put_call(struct rxrpc_call *call, enum rxrpc_call_trace op)
David Howells17926a72007-04-26 15:48:28 -0700615{
David Howells2baec2c2017-05-24 17:02:32 +0100616 struct rxrpc_net *rxnet;
David Howellse34d4232016-08-30 09:49:29 +0100617 const void *here = __builtin_return_address(0);
David Howells2ab27212016-09-08 11:10:12 +0100618 int n;
David Howellse34d4232016-08-30 09:49:29 +0100619
David Howells17926a72007-04-26 15:48:28 -0700620 ASSERT(call != NULL);
621
David Howellse34d4232016-08-30 09:49:29 +0100622 n = atomic_dec_return(&call->usage);
David Howells2ab27212016-09-08 11:10:12 +0100623 trace_rxrpc_call(call, op, n, here, NULL);
David Howellse34d4232016-08-30 09:49:29 +0100624 ASSERTCMP(n, >=, 0);
625 if (n == 0) {
David Howells17926a72007-04-26 15:48:28 -0700626 _debug("call %d dead", call->debug_id);
David Howells248f2192016-09-08 11:10:12 +0100627 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
David Howellse34d4232016-08-30 09:49:29 +0100628
David Howells2baec2c2017-05-24 17:02:32 +0100629 if (!list_empty(&call->link)) {
630 rxnet = rxrpc_net(sock_net(&call->socket->sk));
631 write_lock(&rxnet->call_lock);
632 list_del_init(&call->link);
633 write_unlock(&rxnet->call_lock);
634 }
David Howellse34d4232016-08-30 09:49:29 +0100635
David Howells8d94aa32016-09-07 09:19:31 +0100636 rxrpc_cleanup_call(call);
David Howellse34d4232016-08-30 09:49:29 +0100637 }
David Howells17926a72007-04-26 15:48:28 -0700638}
639
640/*
David Howellsdee46362016-06-27 17:11:19 +0100641 * Final call destruction under RCU.
642 */
643static void rxrpc_rcu_destroy_call(struct rcu_head *rcu)
644{
645 struct rxrpc_call *call = container_of(rcu, struct rxrpc_call, rcu);
646
David Howellsdf5d8bf2016-08-24 14:31:43 +0100647 rxrpc_put_peer(call->peer);
David Howells248f2192016-09-08 11:10:12 +0100648 kfree(call->rxtx_buffer);
649 kfree(call->rxtx_annotations);
David Howellsdee46362016-06-27 17:11:19 +0100650 kmem_cache_free(rxrpc_call_jar, call);
651}
652
653/*
David Howells17926a72007-04-26 15:48:28 -0700654 * clean up a call
655 */
David Howells00e90712016-09-08 11:10:12 +0100656void rxrpc_cleanup_call(struct rxrpc_call *call)
David Howells17926a72007-04-26 15:48:28 -0700657{
David Howells248f2192016-09-08 11:10:12 +0100658 int i;
David Howells17926a72007-04-26 15:48:28 -0700659
David Howells248f2192016-09-08 11:10:12 +0100660 _net("DESTROY CALL %d", call->debug_id);
David Howells17926a72007-04-26 15:48:28 -0700661
662 memset(&call->sock_node, 0xcd, sizeof(call->sock_node));
663
David Howells248f2192016-09-08 11:10:12 +0100664 del_timer_sync(&call->timer);
David Howells17926a72007-04-26 15:48:28 -0700665
David Howells8d94aa32016-09-07 09:19:31 +0100666 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
David Howells17926a72007-04-26 15:48:28 -0700667 ASSERT(test_bit(RXRPC_CALL_RELEASED, &call->flags));
David Howellse653cfe2016-04-04 14:00:38 +0100668 ASSERTCMP(call->conn, ==, NULL);
David Howells17926a72007-04-26 15:48:28 -0700669
David Howells248f2192016-09-08 11:10:12 +0100670 /* Clean up the Rx/Tx buffer */
671 for (i = 0; i < RXRPC_RXTX_BUFF_SIZE; i++)
David Howells71f3ca42016-09-17 10:49:14 +0100672 rxrpc_free_skb(call->rxtx_buffer[i],
673 (call->tx_phase ? rxrpc_skb_tx_cleaned :
674 rxrpc_skb_rx_cleaned));
David Howells17926a72007-04-26 15:48:28 -0700675
David Howells71f3ca42016-09-17 10:49:14 +0100676 rxrpc_free_skb(call->tx_pending, rxrpc_skb_tx_cleaned);
David Howells17926a72007-04-26 15:48:28 -0700677
David Howellsdee46362016-06-27 17:11:19 +0100678 call_rcu(&call->rcu, rxrpc_rcu_destroy_call);
David Howells17926a72007-04-26 15:48:28 -0700679}
680
681/*
David Howells2baec2c2017-05-24 17:02:32 +0100682 * Make sure that all calls are gone from a network namespace. To reach this
683 * point, any open UDP sockets in that namespace must have been closed, so any
684 * outstanding calls cannot be doing I/O.
David Howells17926a72007-04-26 15:48:28 -0700685 */
David Howells2baec2c2017-05-24 17:02:32 +0100686void rxrpc_destroy_all_calls(struct rxrpc_net *rxnet)
David Howells17926a72007-04-26 15:48:28 -0700687{
688 struct rxrpc_call *call;
689
690 _enter("");
David Howells8d94aa32016-09-07 09:19:31 +0100691
David Howells2baec2c2017-05-24 17:02:32 +0100692 if (list_empty(&rxnet->calls))
David Howells8d94aa32016-09-07 09:19:31 +0100693 return;
David Howells248f2192016-09-08 11:10:12 +0100694
David Howells2baec2c2017-05-24 17:02:32 +0100695 write_lock(&rxnet->call_lock);
David Howells17926a72007-04-26 15:48:28 -0700696
David Howells2baec2c2017-05-24 17:02:32 +0100697 while (!list_empty(&rxnet->calls)) {
698 call = list_entry(rxnet->calls.next, struct rxrpc_call, link);
David Howells17926a72007-04-26 15:48:28 -0700699 _debug("Zapping call %p", call);
700
David Howellse34d4232016-08-30 09:49:29 +0100701 rxrpc_see_call(call);
David Howells17926a72007-04-26 15:48:28 -0700702 list_del_init(&call->link);
703
David Howells248f2192016-09-08 11:10:12 +0100704 pr_err("Call %p still in use (%d,%s,%lx,%lx)!\n",
David Howells8d94aa32016-09-07 09:19:31 +0100705 call, atomic_read(&call->usage),
David Howells8d94aa32016-09-07 09:19:31 +0100706 rxrpc_call_states[call->state],
707 call->flags, call->events);
David Howells17926a72007-04-26 15:48:28 -0700708
David Howells2baec2c2017-05-24 17:02:32 +0100709 write_unlock(&rxnet->call_lock);
David Howells17926a72007-04-26 15:48:28 -0700710 cond_resched();
David Howells2baec2c2017-05-24 17:02:32 +0100711 write_lock(&rxnet->call_lock);
David Howells17926a72007-04-26 15:48:28 -0700712 }
713
David Howells2baec2c2017-05-24 17:02:32 +0100714 write_unlock(&rxnet->call_lock);
David Howells17926a72007-04-26 15:48:28 -0700715}