1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* Client connection-specific management code.
4 * Copyright (C) 2016, 2020 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
7 * Client connections need to be cached for a little while after they've made a
8 * call so as to handle retransmitted DATA packets in case the server didn't
9 * receive the final ACK or terminating ABORT we sent it.
11 * There are flags of relevance to the cache:
13 * (2) DONT_REUSE - The connection should be discarded as soon as possible and
14 * should not be reused. This is set when an exclusive connection is used
15 * or a call ID counter overflows.
17 * The caching state may only be changed if the cache lock is held.
19 * There are two idle client connection expiry durations. If the total number
20 * of connections is below the reap threshold, we use the normal duration; if
21 * it's above, we use the fast duration.
24 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
26 #include <linux/slab.h>
27 #include <linux/idr.h>
28 #include <linux/timer.h>
29 #include <linux/sched/signal.h>
31 #include "ar-internal.h"
33 __read_mostly
unsigned int rxrpc_reap_client_connections
= 900;
34 __read_mostly
unsigned long rxrpc_conn_idle_client_expiry
= 2 * 60 * HZ
;
35 __read_mostly
unsigned long rxrpc_conn_idle_client_fast_expiry
= 2 * HZ
;
38 * We use machine-unique IDs for our client connections.
40 DEFINE_IDR(rxrpc_client_conn_ids
);
41 static DEFINE_SPINLOCK(rxrpc_conn_id_lock
);
44 * Get a connection ID and epoch for a client connection from the global pool.
45 * The connection struct pointer is then recorded in the idr radix tree. The
46 * epoch doesn't change until the client is rebooted (or, at least, unless the
47 * module is unloaded).
49 static int rxrpc_get_client_connection_id(struct rxrpc_connection
*conn
,
52 struct rxrpc_net
*rxnet
= conn
->params
.local
->rxnet
;
58 spin_lock(&rxrpc_conn_id_lock
);
60 id
= idr_alloc_cyclic(&rxrpc_client_conn_ids
, conn
,
61 1, 0x40000000, GFP_NOWAIT
);
65 spin_unlock(&rxrpc_conn_id_lock
);
68 conn
->proto
.epoch
= rxnet
->epoch
;
69 conn
->proto
.cid
= id
<< RXRPC_CIDSHIFT
;
70 set_bit(RXRPC_CONN_HAS_IDR
, &conn
->flags
);
71 _leave(" [CID %x]", conn
->proto
.cid
);
75 spin_unlock(&rxrpc_conn_id_lock
);
82 * Release a connection ID for a client connection from the global pool.
84 static void rxrpc_put_client_connection_id(struct rxrpc_connection
*conn
)
86 if (test_bit(RXRPC_CONN_HAS_IDR
, &conn
->flags
)) {
87 spin_lock(&rxrpc_conn_id_lock
);
88 idr_remove(&rxrpc_client_conn_ids
,
89 conn
->proto
.cid
>> RXRPC_CIDSHIFT
);
90 spin_unlock(&rxrpc_conn_id_lock
);
95 * Destroy the client connection ID tree.
97 void rxrpc_destroy_client_conn_ids(void)
99 struct rxrpc_connection
*conn
;
102 if (!idr_is_empty(&rxrpc_client_conn_ids
)) {
103 idr_for_each_entry(&rxrpc_client_conn_ids
, conn
, id
) {
104 pr_err("AF_RXRPC: Leaked client conn %p {%d}\n",
105 conn
, atomic_read(&conn
->usage
));
110 idr_destroy(&rxrpc_client_conn_ids
);
114 * Allocate a connection bundle.
116 static struct rxrpc_bundle
*rxrpc_alloc_bundle(struct rxrpc_conn_parameters
*cp
,
119 struct rxrpc_bundle
*bundle
;
121 bundle
= kzalloc(sizeof(*bundle
), gfp
);
123 bundle
->params
= *cp
;
124 rxrpc_get_peer(bundle
->params
.peer
);
125 atomic_set(&bundle
->usage
, 1);
126 spin_lock_init(&bundle
->channel_lock
);
127 INIT_LIST_HEAD(&bundle
->waiting_calls
);
132 struct rxrpc_bundle
*rxrpc_get_bundle(struct rxrpc_bundle
*bundle
)
134 atomic_inc(&bundle
->usage
);
138 void rxrpc_put_bundle(struct rxrpc_bundle
*bundle
)
140 unsigned int d
= bundle
->debug_id
;
141 unsigned int u
= atomic_dec_return(&bundle
->usage
);
143 _debug("PUT B=%x %u", d
, u
);
145 rxrpc_put_peer(bundle
->params
.peer
);
151 * Allocate a client connection.
153 static struct rxrpc_connection
*
154 rxrpc_alloc_client_connection(struct rxrpc_bundle
*bundle
, gfp_t gfp
)
156 struct rxrpc_connection
*conn
;
157 struct rxrpc_net
*rxnet
= bundle
->params
.local
->rxnet
;
162 conn
= rxrpc_alloc_connection(gfp
);
164 _leave(" = -ENOMEM");
165 return ERR_PTR(-ENOMEM
);
168 atomic_set(&conn
->usage
, 1);
169 conn
->bundle
= bundle
;
170 conn
->params
= bundle
->params
;
171 conn
->out_clientflag
= RXRPC_CLIENT_INITIATED
;
172 conn
->state
= RXRPC_CONN_CLIENT
;
173 conn
->service_id
= conn
->params
.service_id
;
175 ret
= rxrpc_get_client_connection_id(conn
, gfp
);
179 ret
= rxrpc_init_client_conn_security(conn
);
183 atomic_inc(&rxnet
->nr_conns
);
184 write_lock(&rxnet
->conn_lock
);
185 list_add_tail(&conn
->proc_link
, &rxnet
->conn_proc_list
);
186 write_unlock(&rxnet
->conn_lock
);
188 rxrpc_get_bundle(bundle
);
189 rxrpc_get_peer(conn
->params
.peer
);
190 rxrpc_get_local(conn
->params
.local
);
191 key_get(conn
->params
.key
);
193 trace_rxrpc_conn(conn
->debug_id
, rxrpc_conn_new_client
,
194 atomic_read(&conn
->usage
),
195 __builtin_return_address(0));
197 atomic_inc(&rxnet
->nr_client_conns
);
198 trace_rxrpc_client(conn
, -1, rxrpc_client_alloc
);
199 _leave(" = %p", conn
);
203 rxrpc_put_client_connection_id(conn
);
206 _leave(" = %d", ret
);
211 * Determine if a connection may be reused.
213 static bool rxrpc_may_reuse_conn(struct rxrpc_connection
*conn
)
215 struct rxrpc_net
*rxnet
;
216 int id_cursor
, id
, distance
, limit
;
221 rxnet
= conn
->params
.local
->rxnet
;
222 if (test_bit(RXRPC_CONN_DONT_REUSE
, &conn
->flags
))
225 if (conn
->state
!= RXRPC_CONN_CLIENT
||
226 conn
->proto
.epoch
!= rxnet
->epoch
)
227 goto mark_dont_reuse
;
229 /* The IDR tree gets very expensive on memory if the connection IDs are
230 * widely scattered throughout the number space, so we shall want to
231 * kill off connections that, say, have an ID more than about four
232 * times the maximum number of client conns away from the current
233 * allocation point to try and keep the IDs concentrated.
235 id_cursor
= idr_get_cursor(&rxrpc_client_conn_ids
);
236 id
= conn
->proto
.cid
>> RXRPC_CIDSHIFT
;
237 distance
= id
- id_cursor
;
239 distance
= -distance
;
240 limit
= max_t(unsigned long, atomic_read(&rxnet
->nr_conns
) * 4, 1024);
241 if (distance
> limit
)
242 goto mark_dont_reuse
;
247 set_bit(RXRPC_CONN_DONT_REUSE
, &conn
->flags
);
253 * Look up the conn bundle that matches the connection parameters, adding it if
254 * it doesn't yet exist.
256 static struct rxrpc_bundle
*rxrpc_look_up_bundle(struct rxrpc_conn_parameters
*cp
,
259 static atomic_t rxrpc_bundle_id
;
260 struct rxrpc_bundle
*bundle
, *candidate
;
261 struct rxrpc_local
*local
= cp
->local
;
262 struct rb_node
*p
, **pp
, *parent
;
265 _enter("{%px,%x,%u,%u}",
266 cp
->peer
, key_serial(cp
->key
), cp
->security_level
, cp
->upgrade
);
269 return rxrpc_alloc_bundle(cp
, gfp
);
271 /* First, see if the bundle is already there. */
273 spin_lock(&local
->client_bundles_lock
);
274 p
= local
->client_bundles
.rb_node
;
276 bundle
= rb_entry(p
, struct rxrpc_bundle
, local_node
);
278 #define cmp(X) ((long)bundle->params.X - (long)cp->X)
281 cmp(security_level
) ?:
291 spin_unlock(&local
->client_bundles_lock
);
294 /* It wasn't. We need to add one. */
295 candidate
= rxrpc_alloc_bundle(cp
, gfp
);
300 spin_lock(&local
->client_bundles_lock
);
301 pp
= &local
->client_bundles
.rb_node
;
305 bundle
= rb_entry(parent
, struct rxrpc_bundle
, local_node
);
307 #define cmp(X) ((long)bundle->params.X - (long)cp->X)
310 cmp(security_level
) ?:
314 pp
= &(*pp
)->rb_left
;
316 pp
= &(*pp
)->rb_right
;
318 goto found_bundle_free
;
321 _debug("new bundle");
322 candidate
->debug_id
= atomic_inc_return(&rxrpc_bundle_id
);
323 rb_link_node(&candidate
->local_node
, parent
, pp
);
324 rb_insert_color(&candidate
->local_node
, &local
->client_bundles
);
325 rxrpc_get_bundle(candidate
);
326 spin_unlock(&local
->client_bundles_lock
);
327 _leave(" = %u [new]", candidate
->debug_id
);
333 rxrpc_get_bundle(bundle
);
334 spin_unlock(&local
->client_bundles_lock
);
335 _leave(" = %u [found]", bundle
->debug_id
);
340 * Create or find a client bundle to use for a call.
342 * If we return with a connection, the call will be on its waiting list. It's
343 * left to the caller to assign a channel and wake up the call.
345 static struct rxrpc_bundle
*rxrpc_prep_call(struct rxrpc_sock
*rx
,
346 struct rxrpc_call
*call
,
347 struct rxrpc_conn_parameters
*cp
,
348 struct sockaddr_rxrpc
*srx
,
351 struct rxrpc_bundle
*bundle
;
353 _enter("{%d,%lx},", call
->debug_id
, call
->user_call_ID
);
355 cp
->peer
= rxrpc_lookup_peer(rx
, cp
->local
, srx
, gfp
);
359 call
->cong_cwnd
= cp
->peer
->cong_cwnd
;
360 if (call
->cong_cwnd
>= call
->cong_ssthresh
)
361 call
->cong_mode
= RXRPC_CALL_CONGEST_AVOIDANCE
;
363 call
->cong_mode
= RXRPC_CALL_SLOW_START
;
365 __set_bit(RXRPC_CALL_UPGRADE
, &call
->flags
);
367 /* Find the client connection bundle. */
368 bundle
= rxrpc_look_up_bundle(cp
, gfp
);
372 /* Get this call queued. Someone else may activate it whilst we're
373 * lining up a new connection, but that's fine.
375 spin_lock(&bundle
->channel_lock
);
376 list_add_tail(&call
->chan_wait_link
, &bundle
->waiting_calls
);
377 spin_unlock(&bundle
->channel_lock
);
379 _leave(" = [B=%x]", bundle
->debug_id
);
383 _leave(" = -ENOMEM");
384 return ERR_PTR(-ENOMEM
);
388 * Allocate a new connection and add it into a bundle.
390 static void rxrpc_add_conn_to_bundle(struct rxrpc_bundle
*bundle
, gfp_t gfp
)
391 __releases(bundle
->channel_lock
)
393 struct rxrpc_connection
*candidate
= NULL
, *old
= NULL
;
399 conflict
= bundle
->alloc_conn
;
401 bundle
->alloc_conn
= true;
402 spin_unlock(&bundle
->channel_lock
);
408 candidate
= rxrpc_alloc_client_connection(bundle
, gfp
);
410 spin_lock(&bundle
->channel_lock
);
411 bundle
->alloc_conn
= false;
413 if (IS_ERR(candidate
)) {
414 bundle
->alloc_error
= PTR_ERR(candidate
);
415 spin_unlock(&bundle
->channel_lock
);
416 _leave(" [err %ld]", PTR_ERR(candidate
));
420 bundle
->alloc_error
= 0;
422 for (i
= 0; i
< ARRAY_SIZE(bundle
->conns
); i
++) {
423 unsigned int shift
= i
* RXRPC_MAXCALLS
;
426 old
= bundle
->conns
[i
];
427 if (!rxrpc_may_reuse_conn(old
)) {
429 trace_rxrpc_client(old
, -1, rxrpc_client_replace
);
430 candidate
->bundle_shift
= shift
;
431 bundle
->conns
[i
] = candidate
;
432 for (j
= 0; j
< RXRPC_MAXCALLS
; j
++)
433 set_bit(shift
+ j
, &bundle
->avail_chans
);
441 spin_unlock(&bundle
->channel_lock
);
444 _debug("discard C=%x", candidate
->debug_id
);
445 trace_rxrpc_client(candidate
, -1, rxrpc_client_duplicate
);
446 rxrpc_put_connection(candidate
);
449 rxrpc_put_connection(old
);
454 * Add a connection to a bundle if there are no usable connections or we have
455 * connections waiting for extra capacity.
457 static void rxrpc_maybe_add_conn(struct rxrpc_bundle
*bundle
, gfp_t gfp
)
459 struct rxrpc_call
*call
;
464 spin_lock(&bundle
->channel_lock
);
466 /* See if there are any usable connections. */
468 for (i
= 0; i
< ARRAY_SIZE(bundle
->conns
); i
++)
469 if (rxrpc_may_reuse_conn(bundle
->conns
[i
]))
472 if (!usable
&& !list_empty(&bundle
->waiting_calls
)) {
473 call
= list_first_entry(&bundle
->waiting_calls
,
474 struct rxrpc_call
, chan_wait_link
);
475 if (test_bit(RXRPC_CALL_UPGRADE
, &call
->flags
))
476 bundle
->try_upgrade
= true;
482 if (!bundle
->avail_chans
&&
483 !bundle
->try_upgrade
&&
484 !list_empty(&bundle
->waiting_calls
) &&
485 usable
< ARRAY_SIZE(bundle
->conns
))
488 spin_unlock(&bundle
->channel_lock
);
493 return rxrpc_add_conn_to_bundle(bundle
, gfp
);
497 * Assign a channel to the call at the front of the queue and wake the call up.
498 * We don't increment the callNumber counter until this number has been exposed
501 static void rxrpc_activate_one_channel(struct rxrpc_connection
*conn
,
502 unsigned int channel
)
504 struct rxrpc_channel
*chan
= &conn
->channels
[channel
];
505 struct rxrpc_bundle
*bundle
= conn
->bundle
;
506 struct rxrpc_call
*call
= list_entry(bundle
->waiting_calls
.next
,
507 struct rxrpc_call
, chan_wait_link
);
508 u32 call_id
= chan
->call_counter
+ 1;
510 _enter("C=%x,%u", conn
->debug_id
, channel
);
512 trace_rxrpc_client(conn
, channel
, rxrpc_client_chan_activate
);
514 /* Cancel the final ACK on the previous call if it hasn't been sent yet
515 * as the DATA packet will implicitly ACK it.
517 clear_bit(RXRPC_CONN_FINAL_ACK_0
+ channel
, &conn
->flags
);
518 clear_bit(conn
->bundle_shift
+ channel
, &bundle
->avail_chans
);
520 rxrpc_see_call(call
);
521 list_del_init(&call
->chan_wait_link
);
522 call
->peer
= rxrpc_get_peer(conn
->params
.peer
);
523 call
->conn
= rxrpc_get_connection(conn
);
524 call
->cid
= conn
->proto
.cid
| channel
;
525 call
->call_id
= call_id
;
526 call
->security
= conn
->security
;
527 call
->security_ix
= conn
->security_ix
;
528 call
->service_id
= conn
->service_id
;
530 trace_rxrpc_connect_call(call
);
531 _net("CONNECT call %08x:%08x as call %d on conn %d",
532 call
->cid
, call
->call_id
, call
->debug_id
, conn
->debug_id
);
534 write_lock_bh(&call
->state_lock
);
535 call
->state
= RXRPC_CALL_CLIENT_SEND_REQUEST
;
536 write_unlock_bh(&call
->state_lock
);
538 /* Paired with the read barrier in rxrpc_connect_call(). This orders
539 * cid and epoch in the connection wrt to call_id without the need to
540 * take the channel_lock.
542 * We provisionally assign a callNumber at this point, but we don't
543 * confirm it until the call is about to be exposed.
545 * TODO: Pair with a barrier in the data_ready handler when that looks
546 * at the call ID through a connection channel.
550 chan
->call_id
= call_id
;
551 chan
->call_debug_id
= call
->debug_id
;
552 rcu_assign_pointer(chan
->call
, call
);
553 wake_up(&call
->waitq
);
557 * Remove a connection from the idle list if it's on it.
559 static void rxrpc_unidle_conn(struct rxrpc_bundle
*bundle
, struct rxrpc_connection
*conn
)
561 struct rxrpc_net
*rxnet
= bundle
->params
.local
->rxnet
;
564 if (!list_empty(&conn
->cache_link
)) {
566 spin_lock(&rxnet
->client_conn_cache_lock
);
567 if (!list_empty(&conn
->cache_link
)) {
568 list_del_init(&conn
->cache_link
);
571 spin_unlock(&rxnet
->client_conn_cache_lock
);
573 rxrpc_put_connection(conn
);
578 * Assign channels and callNumbers to waiting calls with channel_lock
581 static void rxrpc_activate_channels_locked(struct rxrpc_bundle
*bundle
)
583 struct rxrpc_connection
*conn
;
584 unsigned long avail
, mask
;
585 unsigned int channel
, slot
;
587 if (bundle
->try_upgrade
)
592 while (!list_empty(&bundle
->waiting_calls
)) {
593 avail
= bundle
->avail_chans
& mask
;
596 channel
= __ffs(avail
);
597 clear_bit(channel
, &bundle
->avail_chans
);
599 slot
= channel
/ RXRPC_MAXCALLS
;
600 conn
= bundle
->conns
[slot
];
604 if (bundle
->try_upgrade
)
605 set_bit(RXRPC_CONN_PROBING_FOR_UPGRADE
, &conn
->flags
);
606 rxrpc_unidle_conn(bundle
, conn
);
608 channel
&= (RXRPC_MAXCALLS
- 1);
609 conn
->act_chans
|= 1 << channel
;
610 rxrpc_activate_one_channel(conn
, channel
);
615 * Assign channels and callNumbers to waiting calls.
617 static void rxrpc_activate_channels(struct rxrpc_bundle
*bundle
)
619 _enter("B=%x", bundle
->debug_id
);
621 trace_rxrpc_client(NULL
, -1, rxrpc_client_activate_chans
);
623 if (!bundle
->avail_chans
)
626 spin_lock(&bundle
->channel_lock
);
627 rxrpc_activate_channels_locked(bundle
);
628 spin_unlock(&bundle
->channel_lock
);
633 * Wait for a callNumber and a channel to be granted to a call.
635 static int rxrpc_wait_for_channel(struct rxrpc_bundle
*bundle
,
636 struct rxrpc_call
*call
, gfp_t gfp
)
638 DECLARE_WAITQUEUE(myself
, current
);
641 _enter("%d", call
->debug_id
);
643 if (!gfpflags_allow_blocking(gfp
)) {
644 rxrpc_maybe_add_conn(bundle
, gfp
);
645 rxrpc_activate_channels(bundle
);
646 ret
= bundle
->alloc_error
?: -EAGAIN
;
650 add_wait_queue_exclusive(&call
->waitq
, &myself
);
652 rxrpc_maybe_add_conn(bundle
, gfp
);
653 rxrpc_activate_channels(bundle
);
654 ret
= bundle
->alloc_error
;
658 switch (call
->interruptibility
) {
659 case RXRPC_INTERRUPTIBLE
:
660 case RXRPC_PREINTERRUPTIBLE
:
661 set_current_state(TASK_INTERRUPTIBLE
);
663 case RXRPC_UNINTERRUPTIBLE
:
665 set_current_state(TASK_UNINTERRUPTIBLE
);
668 if (READ_ONCE(call
->state
) != RXRPC_CALL_CLIENT_AWAIT_CONN
)
670 if ((call
->interruptibility
== RXRPC_INTERRUPTIBLE
||
671 call
->interruptibility
== RXRPC_PREINTERRUPTIBLE
) &&
672 signal_pending(current
)) {
678 remove_wait_queue(&call
->waitq
, &myself
);
679 __set_current_state(TASK_RUNNING
);
682 _leave(" = %d", ret
);
687 * find a connection for a call
688 * - called in process context with IRQs enabled
690 int rxrpc_connect_call(struct rxrpc_sock
*rx
,
691 struct rxrpc_call
*call
,
692 struct rxrpc_conn_parameters
*cp
,
693 struct sockaddr_rxrpc
*srx
,
696 struct rxrpc_bundle
*bundle
;
697 struct rxrpc_net
*rxnet
= cp
->local
->rxnet
;
700 _enter("{%d,%lx},", call
->debug_id
, call
->user_call_ID
);
702 rxrpc_discard_expired_client_conns(&rxnet
->client_conn_reaper
);
704 bundle
= rxrpc_prep_call(rx
, call
, cp
, srx
, gfp
);
705 if (IS_ERR(bundle
)) {
706 ret
= PTR_ERR(bundle
);
710 if (call
->state
== RXRPC_CALL_CLIENT_AWAIT_CONN
) {
711 ret
= rxrpc_wait_for_channel(bundle
, call
, gfp
);
717 /* Paired with the write barrier in rxrpc_activate_one_channel(). */
721 rxrpc_put_bundle(bundle
);
723 _leave(" = %d", ret
);
727 spin_lock(&bundle
->channel_lock
);
728 list_del_init(&call
->chan_wait_link
);
729 spin_unlock(&bundle
->channel_lock
);
731 if (call
->state
!= RXRPC_CALL_CLIENT_AWAIT_CONN
) {
733 goto granted_channel
;
736 trace_rxrpc_client(call
->conn
, ret
, rxrpc_client_chan_wait_failed
);
737 rxrpc_set_call_completion(call
, RXRPC_CALL_LOCAL_ERROR
, 0, ret
);
738 rxrpc_disconnect_client_call(bundle
, call
);
743 * Note that a call, and thus a connection, is about to be exposed to the
746 void rxrpc_expose_client_call(struct rxrpc_call
*call
)
748 unsigned int channel
= call
->cid
& RXRPC_CHANNELMASK
;
749 struct rxrpc_connection
*conn
= call
->conn
;
750 struct rxrpc_channel
*chan
= &conn
->channels
[channel
];
752 if (!test_and_set_bit(RXRPC_CALL_EXPOSED
, &call
->flags
)) {
753 /* Mark the call ID as being used. If the callNumber counter
754 * exceeds ~2 billion, we kill the connection after its
755 * outstanding calls have finished so that the counter doesn't
758 chan
->call_counter
++;
759 if (chan
->call_counter
>= INT_MAX
)
760 set_bit(RXRPC_CONN_DONT_REUSE
, &conn
->flags
);
761 trace_rxrpc_client(conn
, channel
, rxrpc_client_exposed
);
766 * Set the reap timer.
768 static void rxrpc_set_client_reap_timer(struct rxrpc_net
*rxnet
)
770 if (!rxnet
->kill_all_client_conns
) {
771 unsigned long now
= jiffies
;
772 unsigned long reap_at
= now
+ rxrpc_conn_idle_client_expiry
;
775 timer_reduce(&rxnet
->client_conn_reap_timer
, reap_at
);
780 * Disconnect a client call.
782 void rxrpc_disconnect_client_call(struct rxrpc_bundle
*bundle
, struct rxrpc_call
*call
)
784 struct rxrpc_connection
*conn
;
785 struct rxrpc_channel
*chan
= NULL
;
786 struct rxrpc_net
*rxnet
= bundle
->params
.local
->rxnet
;
787 unsigned int channel
;
791 _enter("c=%x", call
->debug_id
);
793 spin_lock(&bundle
->channel_lock
);
794 set_bit(RXRPC_CALL_DISCONNECTED
, &call
->flags
);
796 /* Calls that have never actually been assigned a channel can simply be
801 _debug("call is waiting");
802 ASSERTCMP(call
->call_id
, ==, 0);
803 ASSERT(!test_bit(RXRPC_CALL_EXPOSED
, &call
->flags
));
804 list_del_init(&call
->chan_wait_link
);
809 channel
= cid
& RXRPC_CHANNELMASK
;
810 chan
= &conn
->channels
[channel
];
811 trace_rxrpc_client(conn
, channel
, rxrpc_client_chan_disconnect
);
813 if (rcu_access_pointer(chan
->call
) != call
) {
814 spin_unlock(&bundle
->channel_lock
);
818 may_reuse
= rxrpc_may_reuse_conn(conn
);
820 /* If a client call was exposed to the world, we save the result for
823 * We use a barrier here so that the call number and abort code can be
824 * read without needing to take a lock.
826 * TODO: Make the incoming packet handler check this and handle
827 * terminal retransmission without requiring access to the call.
829 if (test_bit(RXRPC_CALL_EXPOSED
, &call
->flags
)) {
830 _debug("exposed %u,%u", call
->call_id
, call
->abort_code
);
831 __rxrpc_disconnect_call(conn
, call
);
833 if (test_and_clear_bit(RXRPC_CONN_PROBING_FOR_UPGRADE
, &conn
->flags
)) {
834 trace_rxrpc_client(conn
, channel
, rxrpc_client_to_active
);
835 bundle
->try_upgrade
= false;
837 rxrpc_activate_channels_locked(bundle
);
842 /* See if we can pass the channel directly to another call. */
843 if (may_reuse
&& !list_empty(&bundle
->waiting_calls
)) {
844 trace_rxrpc_client(conn
, channel
, rxrpc_client_chan_pass
);
845 rxrpc_activate_one_channel(conn
, channel
);
849 /* Schedule the final ACK to be transmitted in a short while so that it
850 * can be skipped if we find a follow-on call. The first DATA packet
851 * of the follow on call will implicitly ACK this call.
853 if (call
->completion
== RXRPC_CALL_SUCCEEDED
&&
854 test_bit(RXRPC_CALL_EXPOSED
, &call
->flags
)) {
855 unsigned long final_ack_at
= jiffies
+ 2;
857 WRITE_ONCE(chan
->final_ack_at
, final_ack_at
);
858 smp_wmb(); /* vs rxrpc_process_delayed_final_acks() */
859 set_bit(RXRPC_CONN_FINAL_ACK_0
+ channel
, &conn
->flags
);
860 rxrpc_reduce_conn_timer(conn
, final_ack_at
);
863 /* Deactivate the channel. */
864 rcu_assign_pointer(chan
->call
, NULL
);
865 set_bit(conn
->bundle_shift
+ channel
, &conn
->bundle
->avail_chans
);
866 conn
->act_chans
&= ~(1 << channel
);
868 /* If no channels remain active, then put the connection on the idle
869 * list for a short while. Give it a ref to stop it going away if it
872 if (!conn
->act_chans
) {
873 trace_rxrpc_client(conn
, channel
, rxrpc_client_to_idle
);
874 conn
->idle_timestamp
= jiffies
;
876 rxrpc_get_connection(conn
);
877 spin_lock(&rxnet
->client_conn_cache_lock
);
878 list_move_tail(&conn
->cache_link
, &rxnet
->idle_client_conns
);
879 spin_unlock(&rxnet
->client_conn_cache_lock
);
881 rxrpc_set_client_reap_timer(rxnet
);
885 spin_unlock(&bundle
->channel_lock
);
891 * Remove a connection from a bundle.
893 static void rxrpc_unbundle_conn(struct rxrpc_connection
*conn
)
895 struct rxrpc_bundle
*bundle
= conn
->bundle
;
896 struct rxrpc_local
*local
= bundle
->params
.local
;
898 bool need_drop
= false, need_put
= false;
901 _enter("C=%x", conn
->debug_id
);
903 if (conn
->flags
& RXRPC_CONN_FINAL_ACK_MASK
)
904 rxrpc_process_delayed_final_acks(conn
, true);
906 spin_lock(&bundle
->channel_lock
);
907 bindex
= conn
->bundle_shift
/ RXRPC_MAXCALLS
;
908 if (bundle
->conns
[bindex
] == conn
) {
909 _debug("clear slot %u", bindex
);
910 bundle
->conns
[bindex
] = NULL
;
911 for (i
= 0; i
< RXRPC_MAXCALLS
; i
++)
912 clear_bit(conn
->bundle_shift
+ i
, &bundle
->avail_chans
);
915 spin_unlock(&bundle
->channel_lock
);
917 /* If there are no more connections, remove the bundle */
918 if (!bundle
->avail_chans
) {
919 _debug("maybe unbundle");
920 spin_lock(&local
->client_bundles_lock
);
922 for (i
= 0; i
< ARRAY_SIZE(bundle
->conns
); i
++)
923 if (bundle
->conns
[i
])
925 if (i
== ARRAY_SIZE(bundle
->conns
) && !bundle
->params
.exclusive
) {
926 _debug("erase bundle");
927 rb_erase(&bundle
->local_node
, &local
->client_bundles
);
931 spin_unlock(&local
->client_bundles_lock
);
933 rxrpc_put_bundle(bundle
);
937 rxrpc_put_connection(conn
);
942 * Clean up a dead client connection.
944 static void rxrpc_kill_client_conn(struct rxrpc_connection
*conn
)
946 struct rxrpc_local
*local
= conn
->params
.local
;
947 struct rxrpc_net
*rxnet
= local
->rxnet
;
949 _enter("C=%x", conn
->debug_id
);
951 trace_rxrpc_client(conn
, -1, rxrpc_client_cleanup
);
952 atomic_dec(&rxnet
->nr_client_conns
);
954 rxrpc_put_client_connection_id(conn
);
955 rxrpc_kill_connection(conn
);
959 * Clean up a dead client connections.
961 void rxrpc_put_client_conn(struct rxrpc_connection
*conn
)
963 const void *here
= __builtin_return_address(0);
964 unsigned int debug_id
= conn
->debug_id
;
967 n
= atomic_dec_return(&conn
->usage
);
968 trace_rxrpc_conn(debug_id
, rxrpc_conn_put_client
, n
, here
);
971 rxrpc_kill_client_conn(conn
);
976 * Discard expired client connections from the idle list. Each conn in the
977 * idle list has been exposed and holds an extra ref because of that.
979 * This may be called from conn setup or from a work item so cannot be
980 * considered non-reentrant.
982 void rxrpc_discard_expired_client_conns(struct work_struct
*work
)
984 struct rxrpc_connection
*conn
;
985 struct rxrpc_net
*rxnet
=
986 container_of(work
, struct rxrpc_net
, client_conn_reaper
);
987 unsigned long expiry
, conn_expires_at
, now
;
988 unsigned int nr_conns
;
992 if (list_empty(&rxnet
->idle_client_conns
)) {
997 /* Don't double up on the discarding */
998 if (!spin_trylock(&rxnet
->client_conn_discard_lock
)) {
999 _leave(" [already]");
1003 /* We keep an estimate of what the number of conns ought to be after
1004 * we've discarded some so that we don't overdo the discarding.
1006 nr_conns
= atomic_read(&rxnet
->nr_client_conns
);
1009 spin_lock(&rxnet
->client_conn_cache_lock
);
1011 if (list_empty(&rxnet
->idle_client_conns
))
1014 conn
= list_entry(rxnet
->idle_client_conns
.next
,
1015 struct rxrpc_connection
, cache_link
);
1017 if (!rxnet
->kill_all_client_conns
) {
1018 /* If the number of connections is over the reap limit, we
1019 * expedite discard by reducing the expiry timeout. We must,
1020 * however, have at least a short grace period to be able to do
1021 * final-ACK or ABORT retransmission.
1023 expiry
= rxrpc_conn_idle_client_expiry
;
1024 if (nr_conns
> rxrpc_reap_client_connections
)
1025 expiry
= rxrpc_conn_idle_client_fast_expiry
;
1026 if (conn
->params
.local
->service_closed
)
1027 expiry
= rxrpc_closed_conn_expiry
* HZ
;
1029 conn_expires_at
= conn
->idle_timestamp
+ expiry
;
1031 now
= READ_ONCE(jiffies
);
1032 if (time_after(conn_expires_at
, now
))
1033 goto not_yet_expired
;
1036 trace_rxrpc_client(conn
, -1, rxrpc_client_discard
);
1037 list_del_init(&conn
->cache_link
);
1039 spin_unlock(&rxnet
->client_conn_cache_lock
);
1041 rxrpc_unbundle_conn(conn
);
1042 rxrpc_put_connection(conn
); /* Drop the ->cache_link ref */
1048 /* The connection at the front of the queue hasn't yet expired, so
1049 * schedule the work item for that point if we discarded something.
1051 * We don't worry if the work item is already scheduled - it can look
1052 * after rescheduling itself at a later time. We could cancel it, but
1053 * then things get messier.
1056 if (!rxnet
->kill_all_client_conns
)
1057 timer_reduce(&rxnet
->client_conn_reap_timer
, conn_expires_at
);
1060 spin_unlock(&rxnet
->client_conn_cache_lock
);
1061 spin_unlock(&rxnet
->client_conn_discard_lock
);
1066 * Preemptively destroy all the client connection records rather than waiting
1067 * for them to time out
1069 void rxrpc_destroy_all_client_connections(struct rxrpc_net
*rxnet
)
1073 spin_lock(&rxnet
->client_conn_cache_lock
);
1074 rxnet
->kill_all_client_conns
= true;
1075 spin_unlock(&rxnet
->client_conn_cache_lock
);
1077 del_timer_sync(&rxnet
->client_conn_reap_timer
);
1079 if (!rxrpc_queue_work(&rxnet
->client_conn_reaper
))
1080 _debug("destroy: queue failed");
1086 * Clean up the client connections on a local endpoint.
1088 void rxrpc_clean_up_local_conns(struct rxrpc_local
*local
)
1090 struct rxrpc_connection
*conn
, *tmp
;
1091 struct rxrpc_net
*rxnet
= local
->rxnet
;
1092 LIST_HEAD(graveyard
);
1096 spin_lock(&rxnet
->client_conn_cache_lock
);
1098 list_for_each_entry_safe(conn
, tmp
, &rxnet
->idle_client_conns
,
1100 if (conn
->params
.local
== local
) {
1101 trace_rxrpc_client(conn
, -1, rxrpc_client_discard
);
1102 list_move(&conn
->cache_link
, &graveyard
);
1106 spin_unlock(&rxnet
->client_conn_cache_lock
);
1108 while (!list_empty(&graveyard
)) {
1109 conn
= list_entry(graveyard
.next
,
1110 struct rxrpc_connection
, cache_link
);
1111 list_del_init(&conn
->cache_link
);
1112 rxrpc_unbundle_conn(conn
);
1113 rxrpc_put_connection(conn
);
1116 _leave(" [culled]");