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