1 /* RxRPC virtual connection handler
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
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.
12 #include <linux/module.h>
13 #include <linux/net.h>
14 #include <linux/skbuff.h>
15 #include <linux/crypto.h>
17 #include <net/af_rxrpc.h>
18 #include "ar-internal.h"
20 static void rxrpc_connection_reaper(struct work_struct
*work
);
22 LIST_HEAD(rxrpc_connections
);
23 DEFINE_RWLOCK(rxrpc_connection_lock
);
24 static unsigned long rxrpc_connection_timeout
= 10 * 60;
25 static DECLARE_DELAYED_WORK(rxrpc_connection_reap
, rxrpc_connection_reaper
);
28 * allocate a new client connection bundle
30 static struct rxrpc_conn_bundle
*rxrpc_alloc_bundle(gfp_t gfp
)
32 struct rxrpc_conn_bundle
*bundle
;
36 bundle
= kzalloc(sizeof(struct rxrpc_conn_bundle
), gfp
);
38 INIT_LIST_HEAD(&bundle
->unused_conns
);
39 INIT_LIST_HEAD(&bundle
->avail_conns
);
40 INIT_LIST_HEAD(&bundle
->busy_conns
);
41 init_waitqueue_head(&bundle
->chanwait
);
42 atomic_set(&bundle
->usage
, 1);
45 _leave(" = %p", bundle
);
50 * compare bundle parameters with what we're looking for
51 * - return -ve, 0 or +ve
54 int rxrpc_cmp_bundle(const struct rxrpc_conn_bundle
*bundle
,
55 struct key
*key
, __be16 service_id
)
57 return (bundle
->service_id
- service_id
) ?:
58 ((unsigned long) bundle
->key
- (unsigned long) key
);
62 * get bundle of client connections that a client socket can make use of
64 struct rxrpc_conn_bundle
*rxrpc_get_bundle(struct rxrpc_sock
*rx
,
65 struct rxrpc_transport
*trans
,
70 struct rxrpc_conn_bundle
*bundle
, *candidate
;
71 struct rb_node
*p
, *parent
, **pp
;
73 _enter("%p{%x},%x,%hx,",
74 rx
, key_serial(key
), trans
->debug_id
, ntohs(service_id
));
76 if (rx
->trans
== trans
&& rx
->bundle
) {
77 atomic_inc(&rx
->bundle
->usage
);
81 /* search the extant bundles first for one that matches the specified
83 spin_lock(&trans
->client_lock
);
85 p
= trans
->bundles
.rb_node
;
87 bundle
= rb_entry(p
, struct rxrpc_conn_bundle
, node
);
89 if (rxrpc_cmp_bundle(bundle
, key
, service_id
) < 0)
91 else if (rxrpc_cmp_bundle(bundle
, key
, service_id
) > 0)
94 goto found_extant_bundle
;
97 spin_unlock(&trans
->client_lock
);
99 /* not yet present - create a candidate for a new record and then
101 candidate
= rxrpc_alloc_bundle(gfp
);
103 _leave(" = -ENOMEM");
104 return ERR_PTR(-ENOMEM
);
107 candidate
->key
= key_get(key
);
108 candidate
->service_id
= service_id
;
110 spin_lock(&trans
->client_lock
);
112 pp
= &trans
->bundles
.rb_node
;
116 bundle
= rb_entry(parent
, struct rxrpc_conn_bundle
, node
);
118 if (rxrpc_cmp_bundle(bundle
, key
, service_id
) < 0)
119 pp
= &(*pp
)->rb_left
;
120 else if (rxrpc_cmp_bundle(bundle
, key
, service_id
) > 0)
121 pp
= &(*pp
)->rb_right
;
123 goto found_extant_second
;
126 /* second search also failed; add the new bundle */
130 rb_link_node(&bundle
->node
, parent
, pp
);
131 rb_insert_color(&bundle
->node
, &trans
->bundles
);
132 spin_unlock(&trans
->client_lock
);
133 _net("BUNDLE new on trans %d", trans
->debug_id
);
134 if (!rx
->bundle
&& rx
->sk
.sk_state
== RXRPC_CLIENT_CONNECTED
) {
135 atomic_inc(&bundle
->usage
);
138 _leave(" = %p [new]", bundle
);
141 /* we found the bundle in the list immediately */
143 atomic_inc(&bundle
->usage
);
144 spin_unlock(&trans
->client_lock
);
145 _net("BUNDLE old on trans %d", trans
->debug_id
);
146 if (!rx
->bundle
&& rx
->sk
.sk_state
== RXRPC_CLIENT_CONNECTED
) {
147 atomic_inc(&bundle
->usage
);
150 _leave(" = %p [extant %d]", bundle
, atomic_read(&bundle
->usage
));
153 /* we found the bundle on the second time through the list */
155 atomic_inc(&bundle
->usage
);
156 spin_unlock(&trans
->client_lock
);
158 _net("BUNDLE old2 on trans %d", trans
->debug_id
);
159 if (!rx
->bundle
&& rx
->sk
.sk_state
== RXRPC_CLIENT_CONNECTED
) {
160 atomic_inc(&bundle
->usage
);
163 _leave(" = %p [second %d]", bundle
, atomic_read(&bundle
->usage
));
170 void rxrpc_put_bundle(struct rxrpc_transport
*trans
,
171 struct rxrpc_conn_bundle
*bundle
)
173 _enter("%p,%p{%d}",trans
, bundle
, atomic_read(&bundle
->usage
));
175 if (atomic_dec_and_lock(&bundle
->usage
, &trans
->client_lock
)) {
176 _debug("Destroy bundle");
177 rb_erase(&bundle
->node
, &trans
->bundles
);
178 spin_unlock(&trans
->client_lock
);
179 ASSERT(list_empty(&bundle
->unused_conns
));
180 ASSERT(list_empty(&bundle
->avail_conns
));
181 ASSERT(list_empty(&bundle
->busy_conns
));
182 ASSERTCMP(bundle
->num_conns
, ==, 0);
183 key_put(bundle
->key
);
191 * allocate a new connection
193 static struct rxrpc_connection
*rxrpc_alloc_connection(gfp_t gfp
)
195 struct rxrpc_connection
*conn
;
199 conn
= kzalloc(sizeof(struct rxrpc_connection
), gfp
);
201 INIT_WORK(&conn
->processor
, &rxrpc_process_connection
);
202 INIT_LIST_HEAD(&conn
->bundle_link
);
203 conn
->calls
= RB_ROOT
;
204 skb_queue_head_init(&conn
->rx_queue
);
205 rwlock_init(&conn
->lock
);
206 spin_lock_init(&conn
->state_lock
);
207 atomic_set(&conn
->usage
, 1);
208 conn
->debug_id
= atomic_inc_return(&rxrpc_debug_id
);
209 conn
->avail_calls
= RXRPC_MAXCALLS
;
210 conn
->size_align
= 4;
211 conn
->header_size
= sizeof(struct rxrpc_header
);
214 _leave(" = %p{%d}", conn
, conn
? conn
->debug_id
: 0);
219 * assign a connection ID to a connection and add it to the transport's
220 * connection lookup tree
221 * - called with transport client lock held
223 static void rxrpc_assign_connection_id(struct rxrpc_connection
*conn
)
225 struct rxrpc_connection
*xconn
;
226 struct rb_node
*parent
, **p
;
234 write_lock_bh(&conn
->trans
->conn_lock
);
236 conn
->trans
->conn_idcounter
+= RXRPC_CID_INC
;
237 if (conn
->trans
->conn_idcounter
< RXRPC_CID_INC
)
238 conn
->trans
->conn_idcounter
= RXRPC_CID_INC
;
239 real_conn_id
= conn
->trans
->conn_idcounter
;
243 p
= &conn
->trans
->client_conns
.rb_node
;
247 xconn
= rb_entry(parent
, struct rxrpc_connection
, node
);
249 if (epoch
< xconn
->epoch
)
251 else if (epoch
> xconn
->epoch
)
253 else if (real_conn_id
< xconn
->real_conn_id
)
255 else if (real_conn_id
> xconn
->real_conn_id
)
261 /* we've found a suitable hole - arrange for this connection to occupy
263 rb_link_node(&conn
->node
, parent
, p
);
264 rb_insert_color(&conn
->node
, &conn
->trans
->client_conns
);
266 conn
->real_conn_id
= real_conn_id
;
267 conn
->cid
= htonl(real_conn_id
);
268 write_unlock_bh(&conn
->trans
->conn_lock
);
269 _leave(" [CONNID %x CID %x]", real_conn_id
, ntohl(conn
->cid
));
272 /* we found a connection with the proposed ID - walk the tree from that
273 * point looking for the next unused ID */
276 real_conn_id
+= RXRPC_CID_INC
;
277 if (real_conn_id
< RXRPC_CID_INC
) {
278 real_conn_id
= RXRPC_CID_INC
;
279 conn
->trans
->conn_idcounter
= real_conn_id
;
280 goto attempt_insertion
;
283 parent
= rb_next(parent
);
285 goto attempt_insertion
;
287 xconn
= rb_entry(parent
, struct rxrpc_connection
, node
);
288 if (epoch
< xconn
->epoch
||
289 real_conn_id
< xconn
->real_conn_id
)
290 goto attempt_insertion
;
295 * add a call to a connection's call-by-ID tree
297 static void rxrpc_add_call_ID_to_conn(struct rxrpc_connection
*conn
,
298 struct rxrpc_call
*call
)
300 struct rxrpc_call
*xcall
;
301 struct rb_node
*parent
, **p
;
304 write_lock_bh(&conn
->lock
);
306 call_id
= call
->call_id
;
307 p
= &conn
->calls
.rb_node
;
311 xcall
= rb_entry(parent
, struct rxrpc_call
, conn_node
);
313 if (call_id
< xcall
->call_id
)
315 else if (call_id
> xcall
->call_id
)
321 rb_link_node(&call
->conn_node
, parent
, p
);
322 rb_insert_color(&call
->conn_node
, &conn
->calls
);
324 write_unlock_bh(&conn
->lock
);
328 * connect a call on an exclusive connection
330 static int rxrpc_connect_exclusive(struct rxrpc_sock
*rx
,
331 struct rxrpc_transport
*trans
,
333 struct rxrpc_call
*call
,
336 struct rxrpc_connection
*conn
;
343 /* not yet present - create a candidate for a new connection
344 * and then redo the check */
345 conn
= rxrpc_alloc_connection(gfp
);
347 _leave(" = -ENOMEM");
353 conn
->service_id
= service_id
;
354 conn
->epoch
= rxrpc_epoch
;
355 conn
->in_clientflag
= 0;
356 conn
->out_clientflag
= RXRPC_CLIENT_INITIATED
;
358 conn
->state
= RXRPC_CONN_CLIENT
;
359 conn
->avail_calls
= RXRPC_MAXCALLS
- 1;
360 conn
->security_level
= rx
->min_sec_level
;
361 conn
->key
= key_get(rx
->key
);
363 ret
= rxrpc_init_client_conn_security(conn
);
367 _leave(" = %d [key]", ret
);
371 write_lock_bh(&rxrpc_connection_lock
);
372 list_add_tail(&conn
->link
, &rxrpc_connections
);
373 write_unlock_bh(&rxrpc_connection_lock
);
375 spin_lock(&trans
->client_lock
);
376 atomic_inc(&trans
->usage
);
378 _net("CONNECT EXCL new %d on TRANS %d",
379 conn
->debug_id
, conn
->trans
->debug_id
);
381 rxrpc_assign_connection_id(conn
);
385 /* we've got a connection with a free channel and we can now attach the
387 * - we're holding the transport's client lock
388 * - we're holding a reference on the connection
390 for (chan
= 0; chan
< RXRPC_MAXCALLS
; chan
++)
391 if (!conn
->channels
[chan
])
393 goto no_free_channels
;
396 atomic_inc(&conn
->usage
);
397 conn
->channels
[chan
] = call
;
399 call
->channel
= chan
;
400 call
->cid
= conn
->cid
| htonl(chan
);
401 call
->call_id
= htonl(++conn
->call_counter
);
403 _net("CONNECT client on conn %d chan %d as call %x",
404 conn
->debug_id
, chan
, ntohl(call
->call_id
));
406 spin_unlock(&trans
->client_lock
);
408 rxrpc_add_call_ID_to_conn(conn
, call
);
413 spin_unlock(&trans
->client_lock
);
419 * find a connection for a call
420 * - called in process context with IRQs enabled
422 int rxrpc_connect_call(struct rxrpc_sock
*rx
,
423 struct rxrpc_transport
*trans
,
424 struct rxrpc_conn_bundle
*bundle
,
425 struct rxrpc_call
*call
,
428 struct rxrpc_connection
*conn
, *candidate
;
431 DECLARE_WAITQUEUE(myself
, current
);
433 _enter("%p,%lx,", rx
, call
->user_call_ID
);
435 if (test_bit(RXRPC_SOCK_EXCLUSIVE_CONN
, &rx
->flags
))
436 return rxrpc_connect_exclusive(rx
, trans
, bundle
->service_id
,
439 spin_lock(&trans
->client_lock
);
441 /* see if the bundle has a call slot available */
442 if (!list_empty(&bundle
->avail_conns
)) {
444 conn
= list_entry(bundle
->avail_conns
.next
,
445 struct rxrpc_connection
,
447 if (conn
->state
>= RXRPC_CONN_REMOTELY_ABORTED
) {
448 list_del_init(&conn
->bundle_link
);
452 if (--conn
->avail_calls
== 0)
453 list_move(&conn
->bundle_link
,
454 &bundle
->busy_conns
);
455 ASSERTCMP(conn
->avail_calls
, <, RXRPC_MAXCALLS
);
456 ASSERT(conn
->channels
[0] == NULL
||
457 conn
->channels
[1] == NULL
||
458 conn
->channels
[2] == NULL
||
459 conn
->channels
[3] == NULL
);
460 atomic_inc(&conn
->usage
);
464 if (!list_empty(&bundle
->unused_conns
)) {
466 conn
= list_entry(bundle
->unused_conns
.next
,
467 struct rxrpc_connection
,
469 if (conn
->state
>= RXRPC_CONN_REMOTELY_ABORTED
) {
470 list_del_init(&conn
->bundle_link
);
474 ASSERTCMP(conn
->avail_calls
, ==, RXRPC_MAXCALLS
);
475 conn
->avail_calls
= RXRPC_MAXCALLS
- 1;
476 ASSERT(conn
->channels
[0] == NULL
&&
477 conn
->channels
[1] == NULL
&&
478 conn
->channels
[2] == NULL
&&
479 conn
->channels
[3] == NULL
);
480 atomic_inc(&conn
->usage
);
481 list_move(&conn
->bundle_link
, &bundle
->avail_conns
);
485 /* need to allocate a new connection */
486 _debug("get new conn [%d]", bundle
->num_conns
);
488 spin_unlock(&trans
->client_lock
);
490 if (signal_pending(current
))
493 if (bundle
->num_conns
>= 20) {
494 _debug("too many conns");
496 if (!(gfp
& __GFP_WAIT
)) {
497 _leave(" = -EAGAIN");
501 add_wait_queue(&bundle
->chanwait
, &myself
);
503 set_current_state(TASK_INTERRUPTIBLE
);
504 if (bundle
->num_conns
< 20 ||
505 !list_empty(&bundle
->unused_conns
) ||
506 !list_empty(&bundle
->avail_conns
))
508 if (signal_pending(current
))
509 goto interrupted_dequeue
;
512 remove_wait_queue(&bundle
->chanwait
, &myself
);
513 __set_current_state(TASK_RUNNING
);
514 spin_lock(&trans
->client_lock
);
518 /* not yet present - create a candidate for a new connection and then
520 candidate
= rxrpc_alloc_connection(gfp
);
522 _leave(" = -ENOMEM");
526 candidate
->trans
= trans
;
527 candidate
->bundle
= bundle
;
528 candidate
->service_id
= bundle
->service_id
;
529 candidate
->epoch
= rxrpc_epoch
;
530 candidate
->in_clientflag
= 0;
531 candidate
->out_clientflag
= RXRPC_CLIENT_INITIATED
;
533 candidate
->state
= RXRPC_CONN_CLIENT
;
534 candidate
->avail_calls
= RXRPC_MAXCALLS
;
535 candidate
->security_level
= rx
->min_sec_level
;
536 candidate
->key
= key_get(bundle
->key
);
538 ret
= rxrpc_init_client_conn_security(candidate
);
540 key_put(candidate
->key
);
542 _leave(" = %d [key]", ret
);
546 write_lock_bh(&rxrpc_connection_lock
);
547 list_add_tail(&candidate
->link
, &rxrpc_connections
);
548 write_unlock_bh(&rxrpc_connection_lock
);
550 spin_lock(&trans
->client_lock
);
552 list_add(&candidate
->bundle_link
, &bundle
->unused_conns
);
554 atomic_inc(&bundle
->usage
);
555 atomic_inc(&trans
->usage
);
557 _net("CONNECT new %d on TRANS %d",
558 candidate
->debug_id
, candidate
->trans
->debug_id
);
560 rxrpc_assign_connection_id(candidate
);
561 if (candidate
->security
)
562 candidate
->security
->prime_packet_security(candidate
);
564 /* leave the candidate lurking in zombie mode attached to the
565 * bundle until we're ready for it */
566 rxrpc_put_connection(candidate
);
570 /* we've got a connection with a free channel and we can now attach the
572 * - we're holding the transport's client lock
573 * - we're holding a reference on the connection
574 * - we're holding a reference on the bundle
576 for (chan
= 0; chan
< RXRPC_MAXCALLS
; chan
++)
577 if (!conn
->channels
[chan
])
579 ASSERT(conn
->channels
[0] == NULL
||
580 conn
->channels
[1] == NULL
||
581 conn
->channels
[2] == NULL
||
582 conn
->channels
[3] == NULL
);
586 conn
->channels
[chan
] = call
;
588 call
->channel
= chan
;
589 call
->cid
= conn
->cid
| htonl(chan
);
590 call
->call_id
= htonl(++conn
->call_counter
);
592 _net("CONNECT client on conn %d chan %d as call %x",
593 conn
->debug_id
, chan
, ntohl(call
->call_id
));
595 ASSERTCMP(conn
->avail_calls
, <, RXRPC_MAXCALLS
);
596 spin_unlock(&trans
->client_lock
);
598 rxrpc_add_call_ID_to_conn(conn
, call
);
604 remove_wait_queue(&bundle
->chanwait
, &myself
);
605 __set_current_state(TASK_RUNNING
);
607 _leave(" = -ERESTARTSYS");
612 * get a record of an incoming connection
614 struct rxrpc_connection
*
615 rxrpc_incoming_connection(struct rxrpc_transport
*trans
,
616 struct rxrpc_header
*hdr
,
619 struct rxrpc_connection
*conn
, *candidate
= NULL
;
620 struct rb_node
*p
, **pp
;
621 const char *new = "old";
627 ASSERT(hdr
->flags
& RXRPC_CLIENT_INITIATED
);
630 conn_id
= ntohl(hdr
->cid
) & RXRPC_CIDMASK
;
632 /* search the connection list first */
633 read_lock_bh(&trans
->conn_lock
);
635 p
= trans
->server_conns
.rb_node
;
637 conn
= rb_entry(p
, struct rxrpc_connection
, node
);
639 _debug("maybe %x", conn
->real_conn_id
);
641 if (epoch
< conn
->epoch
)
643 else if (epoch
> conn
->epoch
)
645 else if (conn_id
< conn
->real_conn_id
)
647 else if (conn_id
> conn
->real_conn_id
)
650 goto found_extant_connection
;
652 read_unlock_bh(&trans
->conn_lock
);
654 /* not yet present - create a candidate for a new record and then
656 candidate
= rxrpc_alloc_connection(gfp
);
658 _leave(" = -ENOMEM");
659 return ERR_PTR(-ENOMEM
);
662 candidate
->trans
= trans
;
663 candidate
->epoch
= hdr
->epoch
;
664 candidate
->cid
= hdr
->cid
& cpu_to_be32(RXRPC_CIDMASK
);
665 candidate
->service_id
= hdr
->serviceId
;
666 candidate
->security_ix
= hdr
->securityIndex
;
667 candidate
->in_clientflag
= RXRPC_CLIENT_INITIATED
;
668 candidate
->out_clientflag
= 0;
669 candidate
->real_conn_id
= conn_id
;
670 candidate
->state
= RXRPC_CONN_SERVER
;
671 if (candidate
->service_id
)
672 candidate
->state
= RXRPC_CONN_SERVER_UNSECURED
;
674 write_lock_bh(&trans
->conn_lock
);
676 pp
= &trans
->server_conns
.rb_node
;
680 conn
= rb_entry(p
, struct rxrpc_connection
, node
);
682 if (epoch
< conn
->epoch
)
683 pp
= &(*pp
)->rb_left
;
684 else if (epoch
> conn
->epoch
)
685 pp
= &(*pp
)->rb_right
;
686 else if (conn_id
< conn
->real_conn_id
)
687 pp
= &(*pp
)->rb_left
;
688 else if (conn_id
> conn
->real_conn_id
)
689 pp
= &(*pp
)->rb_right
;
691 goto found_extant_second
;
694 /* we can now add the new candidate to the list */
697 rb_link_node(&conn
->node
, p
, pp
);
698 rb_insert_color(&conn
->node
, &trans
->server_conns
);
699 atomic_inc(&conn
->trans
->usage
);
701 write_unlock_bh(&trans
->conn_lock
);
703 write_lock_bh(&rxrpc_connection_lock
);
704 list_add_tail(&conn
->link
, &rxrpc_connections
);
705 write_unlock_bh(&rxrpc_connection_lock
);
710 _net("CONNECTION %s %d {%x}", new, conn
->debug_id
, conn
->real_conn_id
);
712 _leave(" = %p {u=%d}", conn
, atomic_read(&conn
->usage
));
715 /* we found the connection in the list immediately */
716 found_extant_connection
:
717 if (hdr
->securityIndex
!= conn
->security_ix
) {
718 read_unlock_bh(&trans
->conn_lock
);
719 goto security_mismatch
;
721 atomic_inc(&conn
->usage
);
722 read_unlock_bh(&trans
->conn_lock
);
725 /* we found the connection on the second time through the list */
727 if (hdr
->securityIndex
!= conn
->security_ix
) {
728 write_unlock_bh(&trans
->conn_lock
);
729 goto security_mismatch
;
731 atomic_inc(&conn
->usage
);
732 write_unlock_bh(&trans
->conn_lock
);
738 _leave(" = -EKEYREJECTED");
739 return ERR_PTR(-EKEYREJECTED
);
743 * find a connection based on transport and RxRPC connection ID for an incoming
746 struct rxrpc_connection
*rxrpc_find_connection(struct rxrpc_transport
*trans
,
747 struct rxrpc_header
*hdr
)
749 struct rxrpc_connection
*conn
;
754 _enter(",{%x,%x}", ntohl(hdr
->cid
), hdr
->flags
);
756 read_lock_bh(&trans
->conn_lock
);
758 conn_id
= ntohl(hdr
->cid
) & RXRPC_CIDMASK
;
761 if (hdr
->flags
& RXRPC_CLIENT_INITIATED
)
762 p
= trans
->server_conns
.rb_node
;
764 p
= trans
->client_conns
.rb_node
;
767 conn
= rb_entry(p
, struct rxrpc_connection
, node
);
769 _debug("maybe %x", conn
->real_conn_id
);
771 if (epoch
< conn
->epoch
)
773 else if (epoch
> conn
->epoch
)
775 else if (conn_id
< conn
->real_conn_id
)
777 else if (conn_id
> conn
->real_conn_id
)
783 read_unlock_bh(&trans
->conn_lock
);
788 atomic_inc(&conn
->usage
);
789 read_unlock_bh(&trans
->conn_lock
);
790 _leave(" = %p", conn
);
795 * release a virtual connection
797 void rxrpc_put_connection(struct rxrpc_connection
*conn
)
799 _enter("%p{u=%d,d=%d}",
800 conn
, atomic_read(&conn
->usage
), conn
->debug_id
);
802 ASSERTCMP(atomic_read(&conn
->usage
), >, 0);
804 conn
->put_time
= get_seconds();
805 if (atomic_dec_and_test(&conn
->usage
)) {
807 rxrpc_queue_delayed_work(&rxrpc_connection_reap
, 0);
814 * destroy a virtual connection
816 static void rxrpc_destroy_connection(struct rxrpc_connection
*conn
)
818 _enter("%p{%d}", conn
, atomic_read(&conn
->usage
));
820 ASSERTCMP(atomic_read(&conn
->usage
), ==, 0);
822 _net("DESTROY CONN %d", conn
->debug_id
);
825 rxrpc_put_bundle(conn
->trans
, conn
->bundle
);
827 ASSERT(RB_EMPTY_ROOT(&conn
->calls
));
828 rxrpc_purge_queue(&conn
->rx_queue
);
830 rxrpc_clear_conn_security(conn
);
831 rxrpc_put_transport(conn
->trans
);
837 * reap dead connections
839 static void rxrpc_connection_reaper(struct work_struct
*work
)
841 struct rxrpc_connection
*conn
, *_p
;
842 unsigned long now
, earliest
, reap_time
;
844 LIST_HEAD(graveyard
);
849 earliest
= ULONG_MAX
;
851 write_lock_bh(&rxrpc_connection_lock
);
852 list_for_each_entry_safe(conn
, _p
, &rxrpc_connections
, link
) {
853 _debug("reap CONN %d { u=%d,t=%ld }",
854 conn
->debug_id
, atomic_read(&conn
->usage
),
855 (long) now
- (long) conn
->put_time
);
857 if (likely(atomic_read(&conn
->usage
) > 0))
860 spin_lock(&conn
->trans
->client_lock
);
861 write_lock(&conn
->trans
->conn_lock
);
862 reap_time
= conn
->put_time
+ rxrpc_connection_timeout
;
864 if (atomic_read(&conn
->usage
) > 0) {
866 } else if (reap_time
<= now
) {
867 list_move_tail(&conn
->link
, &graveyard
);
868 if (conn
->out_clientflag
)
869 rb_erase(&conn
->node
,
870 &conn
->trans
->client_conns
);
872 rb_erase(&conn
->node
,
873 &conn
->trans
->server_conns
);
875 list_del_init(&conn
->bundle_link
);
876 conn
->bundle
->num_conns
--;
879 } else if (reap_time
< earliest
) {
880 earliest
= reap_time
;
883 write_unlock(&conn
->trans
->conn_lock
);
884 spin_unlock(&conn
->trans
->client_lock
);
886 write_unlock_bh(&rxrpc_connection_lock
);
888 if (earliest
!= ULONG_MAX
) {
889 _debug("reschedule reaper %ld", (long) earliest
- now
);
890 ASSERTCMP(earliest
, >, now
);
891 rxrpc_queue_delayed_work(&rxrpc_connection_reap
,
892 (earliest
- now
) * HZ
);
895 /* then destroy all those pulled out */
896 while (!list_empty(&graveyard
)) {
897 conn
= list_entry(graveyard
.next
, struct rxrpc_connection
,
899 list_del_init(&conn
->link
);
901 ASSERTCMP(atomic_read(&conn
->usage
), ==, 0);
902 rxrpc_destroy_connection(conn
);
909 * preemptively destroy all the connection records rather than waiting for them
912 void __exit
rxrpc_destroy_all_connections(void)
916 rxrpc_connection_timeout
= 0;
917 cancel_delayed_work(&rxrpc_connection_reap
);
918 rxrpc_queue_delayed_work(&rxrpc_connection_reap
, 0);