]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - net/rxrpc/call_object.c
UBUNTU: [Config] CONFIG_CRYPTO_DEV_VMX=y
[mirror_ubuntu-zesty-kernel.git] / net / rxrpc / call_object.c
CommitLineData
17926a79
DH
1/* 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
9b6d5398
JP
12#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
5a0e3ad6 14#include <linux/slab.h>
17926a79
DH
15#include <linux/module.h>
16#include <linux/circ_buf.h>
7727640c 17#include <linux/spinlock_types.h>
17926a79
DH
18#include <net/sock.h>
19#include <net/af_rxrpc.h>
20#include "ar-internal.h"
21
5b8848d1 22const char *const rxrpc_call_states[NR__RXRPC_CALL_STATES] = {
f5c17aae 23 [RXRPC_CALL_UNINITIALISED] = "Uninit ",
999b69f8 24 [RXRPC_CALL_CLIENT_AWAIT_CONN] = "ClWtConn",
1f8481d1
DH
25 [RXRPC_CALL_CLIENT_SEND_REQUEST] = "ClSndReq",
26 [RXRPC_CALL_CLIENT_AWAIT_REPLY] = "ClAwtRpl",
27 [RXRPC_CALL_CLIENT_RECV_REPLY] = "ClRcvRpl",
00e90712 28 [RXRPC_CALL_SERVER_PREALLOC] = "SvPrealc",
1f8481d1
DH
29 [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",
f5c17aae
DH
36};
37
38const char *const rxrpc_call_completions[NR__RXRPC_CALL_COMPLETIONS] = {
39 [RXRPC_CALL_SUCCEEDED] = "Complete",
1f8481d1
DH
40 [RXRPC_CALL_REMOTELY_ABORTED] = "RmtAbort",
41 [RXRPC_CALL_LOCALLY_ABORTED] = "LocAbort",
f5c17aae 42 [RXRPC_CALL_LOCAL_ERROR] = "LocError",
1f8481d1 43 [RXRPC_CALL_NETWORK_ERROR] = "NetError",
1f8481d1
DH
44};
45
fff72429
DH
46const char rxrpc_call_traces[rxrpc_call__nr_trace][4] = {
47 [rxrpc_call_new_client] = "NWc",
48 [rxrpc_call_new_service] = "NWs",
49 [rxrpc_call_queued] = "QUE",
50 [rxrpc_call_queued_ref] = "QUR",
a84a46d7
DH
51 [rxrpc_call_connected] = "CON",
52 [rxrpc_call_release] = "RLS",
fff72429
DH
53 [rxrpc_call_seen] = "SEE",
54 [rxrpc_call_got] = "GOT",
fff72429 55 [rxrpc_call_got_userid] = "Gus",
cbd00891 56 [rxrpc_call_got_kernel] = "Gke",
fff72429 57 [rxrpc_call_put] = "PUT",
fff72429 58 [rxrpc_call_put_userid] = "Pus",
cbd00891 59 [rxrpc_call_put_kernel] = "Pke",
fff72429 60 [rxrpc_call_put_noqueue] = "PNQ",
a84a46d7 61 [rxrpc_call_error] = "*E*",
fff72429
DH
62};
63
17926a79
DH
64struct kmem_cache *rxrpc_call_jar;
65LIST_HEAD(rxrpc_calls);
66DEFINE_RWLOCK(rxrpc_call_lock);
17926a79 67
248f219c
DH
68static void rxrpc_call_timer_expired(unsigned long _call)
69{
70 struct rxrpc_call *call = (struct rxrpc_call *)_call;
71
72 _enter("%d", call->debug_id);
73
405dea1d
DH
74 if (call->state < RXRPC_CALL_COMPLETE)
75 rxrpc_set_timer(call, rxrpc_timer_expired, ktime_get_real());
248f219c 76}
17926a79 77
2341e077
DH
78/*
79 * find an extant server call
80 * - called in process context with IRQs enabled
81 */
82struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *rx,
83 unsigned long user_call_ID)
84{
85 struct rxrpc_call *call;
86 struct rb_node *p;
87
88 _enter("%p,%lx", rx, user_call_ID);
89
90 read_lock(&rx->call_lock);
91
92 p = rx->calls.rb_node;
93 while (p) {
94 call = rb_entry(p, struct rxrpc_call, sock_node);
95
96 if (user_call_ID < call->user_call_ID)
97 p = p->rb_left;
98 else if (user_call_ID > call->user_call_ID)
99 p = p->rb_right;
100 else
101 goto found_extant_call;
102 }
103
104 read_unlock(&rx->call_lock);
105 _leave(" = NULL");
106 return NULL;
107
108found_extant_call:
fff72429 109 rxrpc_get_call(call, rxrpc_call_got);
2341e077
DH
110 read_unlock(&rx->call_lock);
111 _leave(" = %p [%d]", call, atomic_read(&call->usage));
112 return call;
113}
114
17926a79
DH
115/*
116 * allocate a new call
117 */
00e90712 118struct rxrpc_call *rxrpc_alloc_call(gfp_t gfp)
17926a79
DH
119{
120 struct rxrpc_call *call;
121
122 call = kmem_cache_zalloc(rxrpc_call_jar, gfp);
123 if (!call)
124 return NULL;
125
248f219c
DH
126 call->rxtx_buffer = kcalloc(RXRPC_RXTX_BUFF_SIZE,
127 sizeof(struct sk_buff *),
17926a79 128 gfp);
248f219c
DH
129 if (!call->rxtx_buffer)
130 goto nomem;
17926a79 131
248f219c
DH
132 call->rxtx_annotations = kcalloc(RXRPC_RXTX_BUFF_SIZE, sizeof(u8), gfp);
133 if (!call->rxtx_annotations)
134 goto nomem_2;
135
136 setup_timer(&call->timer, rxrpc_call_timer_expired,
137 (unsigned long)call);
17926a79 138 INIT_WORK(&call->processor, &rxrpc_process_call);
999b69f8 139 INIT_LIST_HEAD(&call->link);
45025bce 140 INIT_LIST_HEAD(&call->chan_wait_link);
17926a79 141 INIT_LIST_HEAD(&call->accept_link);
248f219c
DH
142 INIT_LIST_HEAD(&call->recvmsg_link);
143 INIT_LIST_HEAD(&call->sock_link);
45025bce 144 init_waitqueue_head(&call->waitq);
17926a79
DH
145 spin_lock_init(&call->lock);
146 rwlock_init(&call->state_lock);
147 atomic_set(&call->usage, 1);
148 call->debug_id = atomic_inc_return(&rxrpc_debug_id);
17926a79
DH
149
150 memset(&call->sock_node, 0xed, sizeof(call->sock_node));
151
248f219c 152 /* Leave space in the ring to handle a maxed-out jumbo packet */
75e42126 153 call->rx_winsize = rxrpc_rx_window_size;
248f219c
DH
154 call->tx_winsize = 16;
155 call->rx_expect_next = 1;
57494343
DH
156
157 if (RXRPC_TX_SMSS > 2190)
158 call->cong_cwnd = 2;
159 else if (RXRPC_TX_SMSS > 1095)
160 call->cong_cwnd = 3;
161 else
162 call->cong_cwnd = 4;
163 call->cong_ssthresh = RXRPC_RXTX_BUFF_SIZE - 1;
17926a79 164 return call;
248f219c
DH
165
166nomem_2:
167 kfree(call->rxtx_buffer);
168nomem:
169 kmem_cache_free(rxrpc_call_jar, call);
170 return NULL;
17926a79
DH
171}
172
173/*
999b69f8 174 * Allocate a new client call.
17926a79 175 */
248f219c 176static struct rxrpc_call *rxrpc_alloc_client_call(struct sockaddr_rxrpc *srx,
aa390bbe 177 gfp_t gfp)
17926a79
DH
178{
179 struct rxrpc_call *call;
57494343 180 ktime_t now;
17926a79
DH
181
182 _enter("");
183
17926a79
DH
184 call = rxrpc_alloc_call(gfp);
185 if (!call)
186 return ERR_PTR(-ENOMEM);
999b69f8 187 call->state = RXRPC_CALL_CLIENT_AWAIT_CONN;
999b69f8 188 call->service_id = srx->srx_service;
71f3ca40 189 call->tx_phase = true;
57494343
DH
190 now = ktime_get_real();
191 call->acks_latest_ts = now;
192 call->cong_tstamp = now;
999b69f8
DH
193
194 _leave(" = %p", call);
195 return call;
196}
197
198/*
248f219c 199 * Initiate the call ack/resend/expiry timer.
999b69f8 200 */
248f219c 201static void rxrpc_start_call_timer(struct rxrpc_call *call)
999b69f8 202{
df0adc78 203 ktime_t now = ktime_get_real(), expire_at;
248f219c 204
df0adc78 205 expire_at = ktime_add_ms(now, rxrpc_max_call_lifetime);
248f219c
DH
206 call->expire_at = expire_at;
207 call->ack_at = expire_at;
a5af7e1f 208 call->ping_at = expire_at;
248f219c 209 call->resend_at = expire_at;
df0adc78
DH
210 call->timer.expires = jiffies + LONG_MAX / 2;
211 rxrpc_set_timer(call, rxrpc_timer_begin, now);
17926a79
DH
212}
213
214/*
215 * set up a call for the given data
216 * - called in process context with IRQs enabled
217 */
2341e077 218struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *rx,
19ffa01c 219 struct rxrpc_conn_parameters *cp,
999b69f8 220 struct sockaddr_rxrpc *srx,
17926a79 221 unsigned long user_call_ID,
17926a79
DH
222 gfp_t gfp)
223{
2341e077
DH
224 struct rxrpc_call *call, *xcall;
225 struct rb_node *parent, **pp;
e34d4234 226 const void *here = __builtin_return_address(0);
999b69f8 227 int ret;
17926a79 228
999b69f8 229 _enter("%p,%lx", rx, user_call_ID);
17926a79 230
248f219c 231 call = rxrpc_alloc_client_call(srx, gfp);
2341e077
DH
232 if (IS_ERR(call)) {
233 _leave(" = %ld", PTR_ERR(call));
234 return call;
17926a79
DH
235 }
236
a84a46d7
DH
237 trace_rxrpc_call(call, rxrpc_call_new_client, atomic_read(&call->usage),
238 here, (const void *)user_call_ID);
e34d4234 239
999b69f8 240 /* Publish the call, even though it is incompletely set up as yet */
17926a79
DH
241 write_lock(&rx->call_lock);
242
243 pp = &rx->calls.rb_node;
244 parent = NULL;
245 while (*pp) {
246 parent = *pp;
2341e077 247 xcall = rb_entry(parent, struct rxrpc_call, sock_node);
17926a79 248
2341e077 249 if (user_call_ID < xcall->user_call_ID)
17926a79 250 pp = &(*pp)->rb_left;
2341e077 251 else if (user_call_ID > xcall->user_call_ID)
17926a79
DH
252 pp = &(*pp)->rb_right;
253 else
357f5ef6 254 goto error_dup_user_ID;
17926a79
DH
255 }
256
248f219c 257 rcu_assign_pointer(call->socket, rx);
357f5ef6
DH
258 call->user_call_ID = user_call_ID;
259 __set_bit(RXRPC_CALL_HAS_USERID, &call->flags);
fff72429 260 rxrpc_get_call(call, rxrpc_call_got_userid);
17926a79
DH
261 rb_link_node(&call->sock_node, parent, pp);
262 rb_insert_color(&call->sock_node, &rx->calls);
248f219c
DH
263 list_add(&call->sock_link, &rx->sock_calls);
264
17926a79
DH
265 write_unlock(&rx->call_lock);
266
248f219c 267 write_lock(&rxrpc_call_lock);
17926a79 268 list_add_tail(&call->link, &rxrpc_calls);
248f219c 269 write_unlock(&rxrpc_call_lock);
17926a79 270
248f219c
DH
271 /* Set up or get a connection record and set the protocol parameters,
272 * including channel number and call ID.
273 */
274 ret = rxrpc_connect_call(call, cp, srx, gfp);
999b69f8
DH
275 if (ret < 0)
276 goto error;
277
a84a46d7 278 trace_rxrpc_call(call, rxrpc_call_connected, atomic_read(&call->usage),
54fde423 279 here, NULL);
a84a46d7 280
248f219c
DH
281 spin_lock_bh(&call->conn->params.peer->lock);
282 hlist_add_head(&call->error_link,
283 &call->conn->params.peer->error_targets);
284 spin_unlock_bh(&call->conn->params.peer->lock);
285
286 rxrpc_start_call_timer(call);
287
17926a79
DH
288 _net("CALL new %d on CONN %d", call->debug_id, call->conn->debug_id);
289
290 _leave(" = %p [new]", call);
291 return call;
292
2341e077
DH
293 /* We unexpectedly found the user ID in the list after taking
294 * the call_lock. This shouldn't happen unless the user races
295 * with itself and tries to add the same user ID twice at the
296 * same time in different threads.
297 */
357f5ef6 298error_dup_user_ID:
17926a79 299 write_unlock(&rx->call_lock);
8d94aa38 300 ret = -EEXIST;
357f5ef6
DH
301
302error:
303 __rxrpc_set_call_completion(call, RXRPC_CALL_LOCAL_ERROR,
304 RX_CALL_DEAD, ret);
a84a46d7
DH
305 trace_rxrpc_call(call, rxrpc_call_error, atomic_read(&call->usage),
306 here, ERR_PTR(ret));
357f5ef6
DH
307 rxrpc_release_call(rx, call);
308 rxrpc_put_call(call, rxrpc_call_put);
309 _leave(" = %d", ret);
310 return ERR_PTR(ret);
17926a79
DH
311}
312
313/*
248f219c
DH
314 * Set up an incoming call. call->conn points to the connection.
315 * This is called in BH context and isn't allowed to fail.
17926a79 316 */
248f219c
DH
317void rxrpc_incoming_call(struct rxrpc_sock *rx,
318 struct rxrpc_call *call,
319 struct sk_buff *skb)
17926a79 320{
248f219c 321 struct rxrpc_connection *conn = call->conn;
42886ffe 322 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
248f219c 323 u32 chan;
17926a79 324
248f219c 325 _enter(",%d", call->conn->debug_id);
e34d4234 326
248f219c
DH
327 rcu_assign_pointer(call->socket, rx);
328 call->call_id = sp->hdr.callNumber;
329 call->service_id = sp->hdr.serviceId;
330 call->cid = sp->hdr.cid;
331 call->state = RXRPC_CALL_SERVER_ACCEPTING;
332 if (sp->hdr.securityIndex > 0)
333 call->state = RXRPC_CALL_SERVER_SECURING;
57494343 334 call->cong_tstamp = skb->tstamp;
248f219c
DH
335
336 /* Set the channel for this call. We don't get channel_lock as we're
337 * only defending against the data_ready handler (which we're called
338 * from) and the RESPONSE packet parser (which is only really
339 * interested in call_counter and can cope with a disagreement with the
340 * call pointer).
a1399f8b 341 */
248f219c
DH
342 chan = sp->hdr.cid & RXRPC_CHANNELMASK;
343 conn->channels[chan].call_counter = call->call_id;
344 conn->channels[chan].call_id = call->call_id;
a1399f8b 345 rcu_assign_pointer(conn->channels[chan].call, call);
17926a79 346
85f32278
DH
347 spin_lock(&conn->params.peer->lock);
348 hlist_add_head(&call->error_link, &conn->params.peer->error_targets);
349 spin_unlock(&conn->params.peer->lock);
17926a79 350
17926a79
DH
351 _net("CALL incoming %d on CONN %d", call->debug_id, call->conn->debug_id);
352
248f219c
DH
353 rxrpc_start_call_timer(call);
354 _leave("");
17926a79
DH
355}
356
8d94aa38
DH
357/*
358 * Queue a call's work processor, getting a ref to pass to the work queue.
359 */
360bool rxrpc_queue_call(struct rxrpc_call *call)
361{
362 const void *here = __builtin_return_address(0);
363 int n = __atomic_add_unless(&call->usage, 1, 0);
8d94aa38
DH
364 if (n == 0)
365 return false;
366 if (rxrpc_queue_work(&call->processor))
2ab27215 367 trace_rxrpc_call(call, rxrpc_call_queued, n + 1, here, NULL);
8d94aa38
DH
368 else
369 rxrpc_put_call(call, rxrpc_call_put_noqueue);
370 return true;
371}
372
373/*
374 * Queue a call's work processor, passing the callers ref to the work queue.
375 */
376bool __rxrpc_queue_call(struct rxrpc_call *call)
377{
378 const void *here = __builtin_return_address(0);
379 int n = atomic_read(&call->usage);
8d94aa38
DH
380 ASSERTCMP(n, >=, 1);
381 if (rxrpc_queue_work(&call->processor))
2ab27215 382 trace_rxrpc_call(call, rxrpc_call_queued_ref, n, here, NULL);
8d94aa38
DH
383 else
384 rxrpc_put_call(call, rxrpc_call_put_noqueue);
385 return true;
386}
387
e34d4234
DH
388/*
389 * Note the re-emergence of a call.
390 */
391void rxrpc_see_call(struct rxrpc_call *call)
392{
393 const void *here = __builtin_return_address(0);
394 if (call) {
395 int n = atomic_read(&call->usage);
e34d4234 396
2ab27215 397 trace_rxrpc_call(call, rxrpc_call_seen, n, here, NULL);
e34d4234
DH
398 }
399}
400
401/*
402 * Note the addition of a ref on a call.
403 */
fff72429 404void rxrpc_get_call(struct rxrpc_call *call, enum rxrpc_call_trace op)
e34d4234
DH
405{
406 const void *here = __builtin_return_address(0);
407 int n = atomic_inc_return(&call->usage);
e34d4234 408
2ab27215 409 trace_rxrpc_call(call, op, n, here, NULL);
e34d4234
DH
410}
411
412/*
248f219c 413 * Detach a call from its owning socket.
e34d4234 414 */
248f219c 415void rxrpc_release_call(struct rxrpc_sock *rx, struct rxrpc_call *call)
e34d4234 416{
a84a46d7 417 const void *here = __builtin_return_address(0);
248f219c
DH
418 struct rxrpc_connection *conn = call->conn;
419 bool put = false;
420 int i;
e34d4234 421
248f219c 422 _enter("{%d,%d}", call->debug_id, atomic_read(&call->usage));
e34d4234 423
a84a46d7
DH
424 trace_rxrpc_call(call, rxrpc_call_release, atomic_read(&call->usage),
425 here, (const void *)call->flags);
17926a79 426
a84a46d7 427 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
e34d4234 428
17926a79
DH
429 spin_lock_bh(&call->lock);
430 if (test_and_set_bit(RXRPC_CALL_RELEASED, &call->flags))
431 BUG();
432 spin_unlock_bh(&call->lock);
433
248f219c 434 del_timer_sync(&call->timer);
17926a79 435
248f219c
DH
436 /* Make sure we don't get any more notifications */
437 write_lock_bh(&rx->recvmsg_lock);
e653cfe4 438
248f219c 439 if (!list_empty(&call->recvmsg_link)) {
17926a79
DH
440 _debug("unlinking once-pending call %p { e=%lx f=%lx }",
441 call, call->events, call->flags);
248f219c
DH
442 list_del(&call->recvmsg_link);
443 put = true;
444 }
445
446 /* list_empty() must return false in rxrpc_notify_socket() */
447 call->recvmsg_link.next = NULL;
448 call->recvmsg_link.prev = NULL;
449
450 write_unlock_bh(&rx->recvmsg_lock);
451 if (put)
452 rxrpc_put_call(call, rxrpc_call_put);
453
454 write_lock(&rx->call_lock);
455
456 if (test_and_clear_bit(RXRPC_CALL_HAS_USERID, &call->flags)) {
17926a79
DH
457 rb_erase(&call->sock_node, &rx->calls);
458 memset(&call->sock_node, 0xdd, sizeof(call->sock_node));
8d94aa38 459 rxrpc_put_call(call, rxrpc_call_put_userid);
17926a79 460 }
17926a79 461
248f219c
DH
462 list_del(&call->sock_link);
463 write_unlock(&rx->call_lock);
464
465 _debug("RELEASE CALL %p (%d CONN %p)", call, call->debug_id, conn);
466
467 if (conn)
8d94aa38 468 rxrpc_disconnect_call(call);
e653cfe4 469
248f219c 470 for (i = 0; i < RXRPC_RXTX_BUFF_SIZE; i++) {
71f3ca40
DH
471 rxrpc_free_skb(call->rxtx_buffer[i],
472 (call->tx_phase ? rxrpc_skb_tx_cleaned :
473 rxrpc_skb_rx_cleaned));
248f219c 474 call->rxtx_buffer[i] = NULL;
17926a79 475 }
17926a79
DH
476
477 _leave("");
478}
479
17926a79
DH
480/*
481 * release all the calls associated with a socket
482 */
483void rxrpc_release_calls_on_socket(struct rxrpc_sock *rx)
484{
485 struct rxrpc_call *call;
17926a79
DH
486
487 _enter("%p", rx);
488
0360da6d
DH
489 while (!list_empty(&rx->to_be_accepted)) {
490 call = list_entry(rx->to_be_accepted.next,
491 struct rxrpc_call, accept_link);
492 list_del(&call->accept_link);
493 rxrpc_abort_call("SKR", call, 0, RX_CALL_DEAD, ECONNRESET);
0360da6d
DH
494 rxrpc_put_call(call, rxrpc_call_put);
495 }
496
248f219c
DH
497 while (!list_empty(&rx->sock_calls)) {
498 call = list_entry(rx->sock_calls.next,
499 struct rxrpc_call, sock_link);
500 rxrpc_get_call(call, rxrpc_call_got);
501 rxrpc_abort_call("SKT", call, 0, RX_CALL_DEAD, ECONNRESET);
26cb02aa 502 rxrpc_send_abort_packet(call);
8d94aa38 503 rxrpc_release_call(rx, call);
248f219c 504 rxrpc_put_call(call, rxrpc_call_put);
f36b5e44
DH
505 }
506
17926a79
DH
507 _leave("");
508}
509
510/*
511 * release a call
512 */
fff72429 513void rxrpc_put_call(struct rxrpc_call *call, enum rxrpc_call_trace op)
17926a79 514{
e34d4234 515 const void *here = __builtin_return_address(0);
2ab27215 516 int n;
17926a79 517
e34d4234 518 ASSERT(call != NULL);
17926a79 519
e34d4234 520 n = atomic_dec_return(&call->usage);
2ab27215 521 trace_rxrpc_call(call, op, n, here, NULL);
e34d4234
DH
522 ASSERTCMP(n, >=, 0);
523 if (n == 0) {
524 _debug("call %d dead", call->debug_id);
248f219c 525 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
17926a79 526
248f219c
DH
527 write_lock(&rxrpc_call_lock);
528 list_del_init(&call->link);
529 write_unlock(&rxrpc_call_lock);
e34d4234 530
8d94aa38 531 rxrpc_cleanup_call(call);
17926a79 532 }
17926a79
DH
533}
534
dee46364
DH
535/*
536 * Final call destruction under RCU.
537 */
538static void rxrpc_rcu_destroy_call(struct rcu_head *rcu)
539{
540 struct rxrpc_call *call = container_of(rcu, struct rxrpc_call, rcu);
541
df5d8bf7 542 rxrpc_put_peer(call->peer);
248f219c
DH
543 kfree(call->rxtx_buffer);
544 kfree(call->rxtx_annotations);
dee46364
DH
545 kmem_cache_free(rxrpc_call_jar, call);
546}
547
17926a79
DH
548/*
549 * clean up a call
550 */
00e90712 551void rxrpc_cleanup_call(struct rxrpc_call *call)
17926a79 552{
248f219c 553 int i;
17926a79 554
248f219c 555 _net("DESTROY CALL %d", call->debug_id);
17926a79
DH
556
557 memset(&call->sock_node, 0xcd, sizeof(call->sock_node));
558
248f219c 559 del_timer_sync(&call->timer);
17926a79 560
8d94aa38 561 ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
17926a79 562 ASSERT(test_bit(RXRPC_CALL_RELEASED, &call->flags));
e653cfe4 563 ASSERTCMP(call->conn, ==, NULL);
17926a79 564
248f219c
DH
565 /* Clean up the Rx/Tx buffer */
566 for (i = 0; i < RXRPC_RXTX_BUFF_SIZE; i++)
71f3ca40
DH
567 rxrpc_free_skb(call->rxtx_buffer[i],
568 (call->tx_phase ? rxrpc_skb_tx_cleaned :
569 rxrpc_skb_rx_cleaned));
17926a79 570
71f3ca40 571 rxrpc_free_skb(call->tx_pending, rxrpc_skb_tx_cleaned);
17926a79 572
dee46364 573 call_rcu(&call->rcu, rxrpc_rcu_destroy_call);
17926a79
DH
574}
575
576/*
8d94aa38 577 * Make sure that all calls are gone.
17926a79
DH
578 */
579void __exit rxrpc_destroy_all_calls(void)
580{
581 struct rxrpc_call *call;
582
583 _enter("");
8d94aa38
DH
584
585 if (list_empty(&rxrpc_calls))
586 return;
248f219c
DH
587
588 write_lock(&rxrpc_call_lock);
17926a79
DH
589
590 while (!list_empty(&rxrpc_calls)) {
591 call = list_entry(rxrpc_calls.next, struct rxrpc_call, link);
592 _debug("Zapping call %p", call);
593
e34d4234 594 rxrpc_see_call(call);
17926a79
DH
595 list_del_init(&call->link);
596
248f219c 597 pr_err("Call %p still in use (%d,%s,%lx,%lx)!\n",
8d94aa38 598 call, atomic_read(&call->usage),
8d94aa38
DH
599 rxrpc_call_states[call->state],
600 call->flags, call->events);
17926a79 601
248f219c 602 write_unlock(&rxrpc_call_lock);
17926a79 603 cond_resched();
248f219c 604 write_lock(&rxrpc_call_lock);
17926a79
DH
605 }
606
248f219c 607 write_unlock(&rxrpc_call_lock);
17926a79 608}