1 /* Client connection-specific management code.
3 * Copyright (C) 2016 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 Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
12 * Client connections need to be cached for a little while after they've made a
13 * call so as to handle retransmitted DATA packets in case the server didn't
14 * receive the final ACK or terminating ABORT we sent it.
16 * Client connections can be in one of a number of cache states:
18 * (1) INACTIVE - The connection is not held in any list and may not have been
19 * exposed to the world. If it has been previously exposed, it was
20 * discarded from the idle list after expiring.
22 * (2) WAITING - The connection is waiting for the number of client conns to
23 * drop below the maximum capacity. Calls may be in progress upon it from
24 * when it was active and got culled.
26 * The connection is on the rxrpc_waiting_client_conns list which is kept
27 * in to-be-granted order. Culled conns with waiters go to the back of
28 * the queue just like new conns.
30 * (3) ACTIVE - The connection has at least one call in progress upon it, it
31 * may freely grant available channels to new calls and calls may be
32 * waiting on it for channels to become available.
34 * The connection is on the rxnet->active_client_conns list which is kept
35 * in activation order for culling purposes.
37 * rxrpc_nr_active_client_conns is held incremented also.
39 * (4) UPGRADE - As for ACTIVE, but only one call may be in progress and is
40 * being used to probe for service upgrade.
42 * (5) CULLED - The connection got summarily culled to try and free up
43 * capacity. Calls currently in progress on the connection are allowed to
44 * continue, but new calls will have to wait. There can be no waiters in
45 * this state - the conn would have to go to the WAITING state instead.
47 * (6) IDLE - The connection has no calls in progress upon it and must have
48 * been exposed to the world (ie. the EXPOSED flag must be set). When it
49 * expires, the EXPOSED flag is cleared and the connection transitions to
52 * The connection is on the rxnet->idle_client_conns list which is kept in
53 * order of how soon they'll expire.
55 * There are flags of relevance to the cache:
57 * (1) EXPOSED - The connection ID got exposed to the world. If this flag is
58 * set, an extra ref is added to the connection preventing it from being
59 * reaped when it has no calls outstanding. This flag is cleared and the
60 * ref dropped when a conn is discarded from the idle list.
62 * This allows us to move terminal call state retransmission to the
63 * connection and to discard the call immediately we think it is done
64 * with. It also give us a chance to reuse the connection.
66 * (2) DONT_REUSE - The connection should be discarded as soon as possible and
67 * should not be reused. This is set when an exclusive connection is used
68 * or a call ID counter overflows.
70 * The caching state may only be changed if the cache lock is held.
72 * There are two idle client connection expiry durations. If the total number
73 * of connections is below the reap threshold, we use the normal duration; if
74 * it's above, we use the fast duration.
77 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
79 #include <linux/slab.h>
80 #include <linux/idr.h>
81 #include <linux/timer.h>
82 #include <linux/sched/signal.h>
84 #include "ar-internal.h"
86 __read_mostly unsigned int rxrpc_max_client_connections = 1000;
87 __read_mostly unsigned int rxrpc_reap_client_connections = 900;
88 __read_mostly unsigned int rxrpc_conn_idle_client_expiry = 2 * 60 * HZ;
89 __read_mostly unsigned int rxrpc_conn_idle_client_fast_expiry = 2 * HZ;
92 * We use machine-unique IDs for our client connections.
94 DEFINE_IDR(rxrpc_client_conn_ids);
95 static DEFINE_SPINLOCK(rxrpc_conn_id_lock);
97 static void rxrpc_cull_active_client_conns(struct rxrpc_net *);
100 * Get a connection ID and epoch for a client connection from the global pool.
101 * The connection struct pointer is then recorded in the idr radix tree. The
102 * epoch doesn't change until the client is rebooted (or, at least, unless the
103 * module is unloaded).
105 static int rxrpc_get_client_connection_id(struct rxrpc_connection *conn,
108 struct rxrpc_net *rxnet = conn->params.local->rxnet;
114 spin_lock(&rxrpc_conn_id_lock);
116 id = idr_alloc_cyclic(&rxrpc_client_conn_ids, conn,
117 1, 0x40000000, GFP_NOWAIT);
121 spin_unlock(&rxrpc_conn_id_lock);
124 conn->proto.epoch = rxnet->epoch;
125 conn->proto.cid = id << RXRPC_CIDSHIFT;
126 set_bit(RXRPC_CONN_HAS_IDR, &conn->flags);
127 _leave(" [CID %x]", conn->proto.cid);
131 spin_unlock(&rxrpc_conn_id_lock);
138 * Release a connection ID for a client connection from the global pool.
140 static void rxrpc_put_client_connection_id(struct rxrpc_connection *conn)
142 if (test_bit(RXRPC_CONN_HAS_IDR, &conn->flags)) {
143 spin_lock(&rxrpc_conn_id_lock);
144 idr_remove(&rxrpc_client_conn_ids,
145 conn->proto.cid >> RXRPC_CIDSHIFT);
146 spin_unlock(&rxrpc_conn_id_lock);
151 * Destroy the client connection ID tree.
153 void rxrpc_destroy_client_conn_ids(void)
155 struct rxrpc_connection *conn;
158 if (!idr_is_empty(&rxrpc_client_conn_ids)) {
159 idr_for_each_entry(&rxrpc_client_conn_ids, conn, id) {
160 pr_err("AF_RXRPC: Leaked client conn %p {%d}\n",
161 conn, atomic_read(&conn->usage));
166 idr_destroy(&rxrpc_client_conn_ids);
170 * Allocate a client connection.
172 static struct rxrpc_connection *
173 rxrpc_alloc_client_connection(struct rxrpc_conn_parameters *cp, gfp_t gfp)
175 struct rxrpc_connection *conn;
176 struct rxrpc_net *rxnet = cp->local->rxnet;
181 conn = rxrpc_alloc_connection(gfp);
183 _leave(" = -ENOMEM");
184 return ERR_PTR(-ENOMEM);
187 atomic_set(&conn->usage, 1);
189 __set_bit(RXRPC_CONN_DONT_REUSE, &conn->flags);
191 __set_bit(RXRPC_CONN_PROBING_FOR_UPGRADE, &conn->flags);
194 conn->out_clientflag = RXRPC_CLIENT_INITIATED;
195 conn->state = RXRPC_CONN_CLIENT;
196 conn->service_id = cp->service_id;
198 ret = rxrpc_get_client_connection_id(conn, gfp);
202 ret = rxrpc_init_client_conn_security(conn);
206 ret = conn->security->prime_packet_security(conn);
210 write_lock(&rxnet->conn_lock);
211 list_add_tail(&conn->proc_link, &rxnet->conn_proc_list);
212 write_unlock(&rxnet->conn_lock);
214 /* We steal the caller's peer ref. */
216 rxrpc_get_local(conn->params.local);
217 key_get(conn->params.key);
219 trace_rxrpc_conn(conn, rxrpc_conn_new_client, atomic_read(&conn->usage),
220 __builtin_return_address(0));
221 trace_rxrpc_client(conn, -1, rxrpc_client_alloc);
222 _leave(" = %p", conn);
226 conn->security->clear(conn);
228 rxrpc_put_client_connection_id(conn);
231 _leave(" = %d", ret);
236 * Determine if a connection may be reused.
238 static bool rxrpc_may_reuse_conn(struct rxrpc_connection *conn)
240 struct rxrpc_net *rxnet = conn->params.local->rxnet;
241 int id_cursor, id, distance, limit;
243 if (test_bit(RXRPC_CONN_DONT_REUSE, &conn->flags))
246 if (conn->proto.epoch != rxnet->epoch)
247 goto mark_dont_reuse;
249 /* The IDR tree gets very expensive on memory if the connection IDs are
250 * widely scattered throughout the number space, so we shall want to
251 * kill off connections that, say, have an ID more than about four
252 * times the maximum number of client conns away from the current
253 * allocation point to try and keep the IDs concentrated.
255 id_cursor = idr_get_cursor(&rxrpc_client_conn_ids);
256 id = conn->proto.cid >> RXRPC_CIDSHIFT;
257 distance = id - id_cursor;
259 distance = -distance;
260 limit = max(rxrpc_max_client_connections * 4, 1024U);
261 if (distance > limit)
262 goto mark_dont_reuse;
267 set_bit(RXRPC_CONN_DONT_REUSE, &conn->flags);
273 * Create or find a client connection to use for a call.
275 * If we return with a connection, the call will be on its waiting list. It's
276 * left to the caller to assign a channel and wake up the call.
278 static int rxrpc_get_client_conn(struct rxrpc_call *call,
279 struct rxrpc_conn_parameters *cp,
280 struct sockaddr_rxrpc *srx,
283 struct rxrpc_connection *conn, *candidate = NULL;
284 struct rxrpc_local *local = cp->local;
285 struct rb_node *p, **pp, *parent;
289 _enter("{%d,%lx},", call->debug_id, call->user_call_ID);
291 cp->peer = rxrpc_lookup_peer(cp->local, srx, gfp);
295 /* If the connection is not meant to be exclusive, search the available
296 * connections to see if the connection we want to use already exists.
298 if (!cp->exclusive) {
300 spin_lock(&local->client_conns_lock);
301 p = local->client_conns.rb_node;
303 conn = rb_entry(p, struct rxrpc_connection, client_node);
305 #define cmp(X) ((long)conn->params.X - (long)cp->X)
308 cmp(security_level) ?:
313 } else if (diff > 0) {
316 if (rxrpc_may_reuse_conn(conn) &&
317 rxrpc_get_connection_maybe(conn))
318 goto found_extant_conn;
319 /* The connection needs replacing. It's better
320 * to effect that when we have something to
321 * replace it with so that we don't have to
322 * rebalance the tree twice.
327 spin_unlock(&local->client_conns_lock);
330 /* There wasn't a connection yet or we need an exclusive connection.
331 * We need to create a candidate and then potentially redo the search
332 * in case we're racing with another thread also trying to connect on a
333 * shareable connection.
336 candidate = rxrpc_alloc_client_connection(cp, gfp);
337 if (IS_ERR(candidate)) {
338 ret = PTR_ERR(candidate);
342 /* Add the call to the new connection's waiting list in case we're
343 * going to have to wait for the connection to come live. It's our
344 * connection, so we want first dibs on the channel slots. We would
345 * normally have to take channel_lock but we do this before anyone else
346 * can see the connection.
348 list_add_tail(&call->chan_wait_link, &candidate->waiting_calls);
351 call->conn = candidate;
352 call->security_ix = candidate->security_ix;
353 call->service_id = candidate->service_id;
354 _leave(" = 0 [exclusive %d]", candidate->debug_id);
358 /* Publish the new connection for userspace to find. We need to redo
359 * the search before doing this lest we race with someone else adding a
360 * conflicting instance.
363 spin_lock(&local->client_conns_lock);
365 pp = &local->client_conns.rb_node;
369 conn = rb_entry(parent, struct rxrpc_connection, client_node);
371 #define cmp(X) ((long)conn->params.X - (long)candidate->params.X)
374 cmp(security_level) ?:
378 pp = &(*pp)->rb_left;
379 } else if (diff > 0) {
380 pp = &(*pp)->rb_right;
382 if (rxrpc_may_reuse_conn(conn) &&
383 rxrpc_get_connection_maybe(conn))
384 goto found_extant_conn;
385 /* The old connection is from an outdated epoch. */
386 _debug("replace conn");
387 clear_bit(RXRPC_CONN_IN_CLIENT_CONNS, &conn->flags);
388 rb_replace_node(&conn->client_node,
389 &candidate->client_node,
390 &local->client_conns);
391 trace_rxrpc_client(conn, -1, rxrpc_client_replace);
392 goto candidate_published;
397 rb_link_node(&candidate->client_node, parent, pp);
398 rb_insert_color(&candidate->client_node, &local->client_conns);
401 set_bit(RXRPC_CONN_IN_CLIENT_CONNS, &candidate->flags);
402 call->conn = candidate;
403 call->security_ix = candidate->security_ix;
404 call->service_id = candidate->service_id;
405 spin_unlock(&local->client_conns_lock);
406 _leave(" = 0 [new %d]", candidate->debug_id);
409 /* We come here if we found a suitable connection already in existence.
410 * Discard any candidate we may have allocated, and try to get a
411 * channel on this one.
414 _debug("found conn");
415 spin_unlock(&local->client_conns_lock);
418 trace_rxrpc_client(candidate, -1, rxrpc_client_duplicate);
419 rxrpc_put_connection(candidate);
423 spin_lock(&conn->channel_lock);
425 call->security_ix = conn->security_ix;
426 call->service_id = conn->service_id;
427 list_add(&call->chan_wait_link, &conn->waiting_calls);
428 spin_unlock(&conn->channel_lock);
429 _leave(" = 0 [extant %d]", conn->debug_id);
433 rxrpc_put_peer(cp->peer);
436 _leave(" = %d", ret);
441 * Activate a connection.
443 static void rxrpc_activate_conn(struct rxrpc_net *rxnet,
444 struct rxrpc_connection *conn)
446 if (test_bit(RXRPC_CONN_PROBING_FOR_UPGRADE, &conn->flags)) {
447 trace_rxrpc_client(conn, -1, rxrpc_client_to_upgrade);
448 conn->cache_state = RXRPC_CONN_CLIENT_UPGRADE;
450 trace_rxrpc_client(conn, -1, rxrpc_client_to_active);
451 conn->cache_state = RXRPC_CONN_CLIENT_ACTIVE;
453 rxnet->nr_active_client_conns++;
454 list_move_tail(&conn->cache_link, &rxnet->active_client_conns);
458 * Attempt to animate a connection for a new call.
460 * If it's not exclusive, the connection is in the endpoint tree, and we're in
461 * the conn's list of those waiting to grab a channel. There is, however, a
462 * limit on the number of live connections allowed at any one time, so we may
463 * have to wait for capacity to become available.
465 * Note that a connection on the waiting queue might *also* have active
466 * channels if it has been culled to make space and then re-requested by a new
469 static void rxrpc_animate_client_conn(struct rxrpc_net *rxnet,
470 struct rxrpc_connection *conn)
472 unsigned int nr_conns;
474 _enter("%d,%d", conn->debug_id, conn->cache_state);
476 if (conn->cache_state == RXRPC_CONN_CLIENT_ACTIVE ||
477 conn->cache_state == RXRPC_CONN_CLIENT_UPGRADE)
480 spin_lock(&rxnet->client_conn_cache_lock);
482 nr_conns = rxnet->nr_client_conns;
483 if (!test_and_set_bit(RXRPC_CONN_COUNTED, &conn->flags)) {
484 trace_rxrpc_client(conn, -1, rxrpc_client_count);
485 rxnet->nr_client_conns = nr_conns + 1;
488 switch (conn->cache_state) {
489 case RXRPC_CONN_CLIENT_ACTIVE:
490 case RXRPC_CONN_CLIENT_UPGRADE:
491 case RXRPC_CONN_CLIENT_WAITING:
494 case RXRPC_CONN_CLIENT_INACTIVE:
495 case RXRPC_CONN_CLIENT_CULLED:
496 case RXRPC_CONN_CLIENT_IDLE:
497 if (nr_conns >= rxrpc_max_client_connections)
498 goto wait_for_capacity;
506 spin_unlock(&rxnet->client_conn_cache_lock);
508 _leave(" [%d]", conn->cache_state);
513 rxrpc_activate_conn(rxnet, conn);
518 trace_rxrpc_client(conn, -1, rxrpc_client_to_waiting);
519 conn->cache_state = RXRPC_CONN_CLIENT_WAITING;
520 list_move_tail(&conn->cache_link, &rxnet->waiting_client_conns);
525 * Deactivate a channel.
527 static void rxrpc_deactivate_one_channel(struct rxrpc_connection *conn,
528 unsigned int channel)
530 struct rxrpc_channel *chan = &conn->channels[channel];
532 rcu_assign_pointer(chan->call, NULL);
533 conn->active_chans &= ~(1 << channel);
537 * Assign a channel to the call at the front of the queue and wake the call up.
538 * We don't increment the callNumber counter until this number has been exposed
541 static void rxrpc_activate_one_channel(struct rxrpc_connection *conn,
542 unsigned int channel)
544 struct rxrpc_channel *chan = &conn->channels[channel];
545 struct rxrpc_call *call = list_entry(conn->waiting_calls.next,
546 struct rxrpc_call, chan_wait_link);
547 u32 call_id = chan->call_counter + 1;
549 trace_rxrpc_client(conn, channel, rxrpc_client_chan_activate);
551 write_lock_bh(&call->state_lock);
552 call->state = RXRPC_CALL_CLIENT_SEND_REQUEST;
553 write_unlock_bh(&call->state_lock);
555 rxrpc_see_call(call);
556 list_del_init(&call->chan_wait_link);
557 conn->active_chans |= 1 << channel;
558 call->peer = rxrpc_get_peer(conn->params.peer);
559 call->cid = conn->proto.cid | channel;
560 call->call_id = call_id;
562 trace_rxrpc_connect_call(call);
563 _net("CONNECT call %08x:%08x as call %d on conn %d",
564 call->cid, call->call_id, call->debug_id, conn->debug_id);
566 /* Paired with the read barrier in rxrpc_wait_for_channel(). This
567 * orders cid and epoch in the connection wrt to call_id without the
568 * need to take the channel_lock.
570 * We provisionally assign a callNumber at this point, but we don't
571 * confirm it until the call is about to be exposed.
573 * TODO: Pair with a barrier in the data_ready handler when that looks
574 * at the call ID through a connection channel.
577 chan->call_id = call_id;
578 rcu_assign_pointer(chan->call, call);
579 wake_up(&call->waitq);
583 * Assign channels and callNumbers to waiting calls with channel_lock
586 static void rxrpc_activate_channels_locked(struct rxrpc_connection *conn)
590 switch (conn->cache_state) {
591 case RXRPC_CONN_CLIENT_ACTIVE:
592 mask = RXRPC_ACTIVE_CHANS_MASK;
594 case RXRPC_CONN_CLIENT_UPGRADE:
601 while (!list_empty(&conn->waiting_calls) &&
602 (avail = ~conn->active_chans,
605 rxrpc_activate_one_channel(conn, __ffs(avail));
609 * Assign channels and callNumbers to waiting calls.
611 static void rxrpc_activate_channels(struct rxrpc_connection *conn)
613 _enter("%d", conn->debug_id);
615 trace_rxrpc_client(conn, -1, rxrpc_client_activate_chans);
617 if (conn->active_chans == RXRPC_ACTIVE_CHANS_MASK)
620 spin_lock(&conn->channel_lock);
621 rxrpc_activate_channels_locked(conn);
622 spin_unlock(&conn->channel_lock);
627 * Wait for a callNumber and a channel to be granted to a call.
629 static int rxrpc_wait_for_channel(struct rxrpc_call *call, gfp_t gfp)
633 _enter("%d", call->debug_id);
635 if (!call->call_id) {
636 DECLARE_WAITQUEUE(myself, current);
638 if (!gfpflags_allow_blocking(gfp)) {
643 add_wait_queue_exclusive(&call->waitq, &myself);
645 set_current_state(TASK_INTERRUPTIBLE);
648 if (signal_pending(current)) {
654 remove_wait_queue(&call->waitq, &myself);
655 __set_current_state(TASK_RUNNING);
658 /* Paired with the write barrier in rxrpc_activate_one_channel(). */
662 _leave(" = %d", ret);
667 * find a connection for a call
668 * - called in process context with IRQs enabled
670 int rxrpc_connect_call(struct rxrpc_call *call,
671 struct rxrpc_conn_parameters *cp,
672 struct sockaddr_rxrpc *srx,
675 struct rxrpc_net *rxnet = cp->local->rxnet;
678 _enter("{%d,%lx},", call->debug_id, call->user_call_ID);
680 rxrpc_discard_expired_client_conns(&rxnet->client_conn_reaper.work);
681 rxrpc_cull_active_client_conns(rxnet);
683 ret = rxrpc_get_client_conn(call, cp, srx, gfp);
687 rxrpc_animate_client_conn(rxnet, call->conn);
688 rxrpc_activate_channels(call->conn);
690 ret = rxrpc_wait_for_channel(call, gfp);
692 rxrpc_disconnect_client_call(call);
694 _leave(" = %d", ret);
699 * Note that a connection is about to be exposed to the world. Once it is
700 * exposed, we maintain an extra ref on it that stops it from being summarily
701 * discarded before it's (a) had a chance to deal with retransmission and (b)
702 * had a chance at re-use (the per-connection security negotiation is
705 static void rxrpc_expose_client_conn(struct rxrpc_connection *conn,
706 unsigned int channel)
708 if (!test_and_set_bit(RXRPC_CONN_EXPOSED, &conn->flags)) {
709 trace_rxrpc_client(conn, channel, rxrpc_client_exposed);
710 rxrpc_get_connection(conn);
715 * Note that a call, and thus a connection, is about to be exposed to the
718 void rxrpc_expose_client_call(struct rxrpc_call *call)
720 unsigned int channel = call->cid & RXRPC_CHANNELMASK;
721 struct rxrpc_connection *conn = call->conn;
722 struct rxrpc_channel *chan = &conn->channels[channel];
724 if (!test_and_set_bit(RXRPC_CALL_EXPOSED, &call->flags)) {
725 /* Mark the call ID as being used. If the callNumber counter
726 * exceeds ~2 billion, we kill the connection after its
727 * outstanding calls have finished so that the counter doesn't
730 chan->call_counter++;
731 if (chan->call_counter >= INT_MAX)
732 set_bit(RXRPC_CONN_DONT_REUSE, &conn->flags);
733 rxrpc_expose_client_conn(conn, channel);
738 * Disconnect a client call.
740 void rxrpc_disconnect_client_call(struct rxrpc_call *call)
742 unsigned int channel = call->cid & RXRPC_CHANNELMASK;
743 struct rxrpc_connection *conn = call->conn;
744 struct rxrpc_channel *chan = &conn->channels[channel];
745 struct rxrpc_net *rxnet = rxrpc_net(sock_net(&call->socket->sk));
747 trace_rxrpc_client(conn, channel, rxrpc_client_chan_disconnect);
750 spin_lock(&conn->channel_lock);
752 /* Calls that have never actually been assigned a channel can simply be
753 * discarded. If the conn didn't get used either, it will follow
754 * immediately unless someone else grabs it in the meantime.
756 if (!list_empty(&call->chan_wait_link)) {
757 _debug("call is waiting");
758 ASSERTCMP(call->call_id, ==, 0);
759 ASSERT(!test_bit(RXRPC_CALL_EXPOSED, &call->flags));
760 list_del_init(&call->chan_wait_link);
762 trace_rxrpc_client(conn, channel, rxrpc_client_chan_unstarted);
764 /* We must deactivate or idle the connection if it's now
765 * waiting for nothing.
767 spin_lock(&rxnet->client_conn_cache_lock);
768 if (conn->cache_state == RXRPC_CONN_CLIENT_WAITING &&
769 list_empty(&conn->waiting_calls) &&
771 goto idle_connection;
775 ASSERTCMP(rcu_access_pointer(chan->call), ==, call);
777 /* If a client call was exposed to the world, we save the result for
780 * We use a barrier here so that the call number and abort code can be
781 * read without needing to take a lock.
783 * TODO: Make the incoming packet handler check this and handle
784 * terminal retransmission without requiring access to the call.
786 if (test_bit(RXRPC_CALL_EXPOSED, &call->flags)) {
787 _debug("exposed %u,%u", call->call_id, call->abort_code);
788 __rxrpc_disconnect_call(conn, call);
791 /* See if we can pass the channel directly to another call. */
792 if (conn->cache_state == RXRPC_CONN_CLIENT_ACTIVE &&
793 !list_empty(&conn->waiting_calls)) {
794 trace_rxrpc_client(conn, channel, rxrpc_client_chan_pass);
795 rxrpc_activate_one_channel(conn, channel);
799 /* Things are more complex and we need the cache lock. We might be
800 * able to simply idle the conn or it might now be lurking on the wait
801 * list. It might even get moved back to the active list whilst we're
802 * waiting for the lock.
804 spin_lock(&rxnet->client_conn_cache_lock);
806 switch (conn->cache_state) {
807 case RXRPC_CONN_CLIENT_UPGRADE:
808 /* Deal with termination of a service upgrade probe. */
809 if (test_bit(RXRPC_CONN_EXPOSED, &conn->flags)) {
810 clear_bit(RXRPC_CONN_PROBING_FOR_UPGRADE, &conn->flags);
811 trace_rxrpc_client(conn, channel, rxrpc_client_to_active);
812 conn->cache_state = RXRPC_CONN_CLIENT_ACTIVE;
813 rxrpc_activate_channels_locked(conn);
816 case RXRPC_CONN_CLIENT_ACTIVE:
817 if (list_empty(&conn->waiting_calls)) {
818 rxrpc_deactivate_one_channel(conn, channel);
819 if (!conn->active_chans) {
820 rxnet->nr_active_client_conns--;
821 goto idle_connection;
826 trace_rxrpc_client(conn, channel, rxrpc_client_chan_pass);
827 rxrpc_activate_one_channel(conn, channel);
830 case RXRPC_CONN_CLIENT_CULLED:
831 rxrpc_deactivate_one_channel(conn, channel);
832 ASSERT(list_empty(&conn->waiting_calls));
833 if (!conn->active_chans)
834 goto idle_connection;
837 case RXRPC_CONN_CLIENT_WAITING:
838 rxrpc_deactivate_one_channel(conn, channel);
846 spin_unlock(&rxnet->client_conn_cache_lock);
848 spin_unlock(&conn->channel_lock);
849 rxrpc_put_connection(conn);
854 /* As no channels remain active, the connection gets deactivated
855 * immediately or moved to the idle list for a short while.
857 if (test_bit(RXRPC_CONN_EXPOSED, &conn->flags)) {
858 trace_rxrpc_client(conn, channel, rxrpc_client_to_idle);
859 conn->idle_timestamp = jiffies;
860 conn->cache_state = RXRPC_CONN_CLIENT_IDLE;
861 list_move_tail(&conn->cache_link, &rxnet->idle_client_conns);
862 if (rxnet->idle_client_conns.next == &conn->cache_link &&
863 !rxnet->kill_all_client_conns)
864 queue_delayed_work(rxrpc_workqueue,
865 &rxnet->client_conn_reaper,
866 rxrpc_conn_idle_client_expiry);
868 trace_rxrpc_client(conn, channel, rxrpc_client_to_inactive);
869 conn->cache_state = RXRPC_CONN_CLIENT_INACTIVE;
870 list_del_init(&conn->cache_link);
876 * Clean up a dead client connection.
878 static struct rxrpc_connection *
879 rxrpc_put_one_client_conn(struct rxrpc_connection *conn)
881 struct rxrpc_connection *next = NULL;
882 struct rxrpc_local *local = conn->params.local;
883 struct rxrpc_net *rxnet = local->rxnet;
884 unsigned int nr_conns;
886 trace_rxrpc_client(conn, -1, rxrpc_client_cleanup);
888 if (test_bit(RXRPC_CONN_IN_CLIENT_CONNS, &conn->flags)) {
889 spin_lock(&local->client_conns_lock);
890 if (test_and_clear_bit(RXRPC_CONN_IN_CLIENT_CONNS,
892 rb_erase(&conn->client_node, &local->client_conns);
893 spin_unlock(&local->client_conns_lock);
896 rxrpc_put_client_connection_id(conn);
898 ASSERTCMP(conn->cache_state, ==, RXRPC_CONN_CLIENT_INACTIVE);
900 if (test_bit(RXRPC_CONN_COUNTED, &conn->flags)) {
901 trace_rxrpc_client(conn, -1, rxrpc_client_uncount);
902 spin_lock(&rxnet->client_conn_cache_lock);
903 nr_conns = --rxnet->nr_client_conns;
905 if (nr_conns < rxrpc_max_client_connections &&
906 !list_empty(&rxnet->waiting_client_conns)) {
907 next = list_entry(rxnet->waiting_client_conns.next,
908 struct rxrpc_connection, cache_link);
909 rxrpc_get_connection(next);
910 rxrpc_activate_conn(rxnet, next);
913 spin_unlock(&rxnet->client_conn_cache_lock);
916 rxrpc_kill_connection(conn);
918 rxrpc_activate_channels(next);
920 /* We need to get rid of the temporary ref we took upon next, but we
921 * can't call rxrpc_put_connection() recursively.
927 * Clean up a dead client connections.
929 void rxrpc_put_client_conn(struct rxrpc_connection *conn)
931 const void *here = __builtin_return_address(0);
935 n = atomic_dec_return(&conn->usage);
936 trace_rxrpc_conn(conn, rxrpc_conn_put_client, n, here);
941 conn = rxrpc_put_one_client_conn(conn);
946 * Kill the longest-active client connections to make room for new ones.
948 static void rxrpc_cull_active_client_conns(struct rxrpc_net *rxnet)
950 struct rxrpc_connection *conn;
951 unsigned int nr_conns = rxnet->nr_client_conns;
952 unsigned int nr_active, limit;
956 ASSERTCMP(nr_conns, >=, 0);
957 if (nr_conns < rxrpc_max_client_connections) {
961 limit = rxrpc_reap_client_connections;
963 spin_lock(&rxnet->client_conn_cache_lock);
964 nr_active = rxnet->nr_active_client_conns;
966 while (nr_active > limit) {
967 ASSERT(!list_empty(&rxnet->active_client_conns));
968 conn = list_entry(rxnet->active_client_conns.next,
969 struct rxrpc_connection, cache_link);
970 ASSERTIFCMP(conn->cache_state != RXRPC_CONN_CLIENT_ACTIVE,
971 conn->cache_state, ==, RXRPC_CONN_CLIENT_UPGRADE);
973 if (list_empty(&conn->waiting_calls)) {
974 trace_rxrpc_client(conn, -1, rxrpc_client_to_culled);
975 conn->cache_state = RXRPC_CONN_CLIENT_CULLED;
976 list_del_init(&conn->cache_link);
978 trace_rxrpc_client(conn, -1, rxrpc_client_to_waiting);
979 conn->cache_state = RXRPC_CONN_CLIENT_WAITING;
980 list_move_tail(&conn->cache_link,
981 &rxnet->waiting_client_conns);
987 rxnet->nr_active_client_conns = nr_active;
988 spin_unlock(&rxnet->client_conn_cache_lock);
989 ASSERTCMP(nr_active, >=, 0);
994 * Discard expired client connections from the idle list. Each conn in the
995 * idle list has been exposed and holds an extra ref because of that.
997 * This may be called from conn setup or from a work item so cannot be
998 * considered non-reentrant.
1000 void rxrpc_discard_expired_client_conns(struct work_struct *work)
1002 struct rxrpc_connection *conn;
1003 struct rxrpc_net *rxnet =
1004 container_of(to_delayed_work(work),
1005 struct rxrpc_net, client_conn_reaper);
1006 unsigned long expiry, conn_expires_at, now;
1007 unsigned int nr_conns;
1008 bool did_discard = false;
1012 if (list_empty(&rxnet->idle_client_conns)) {
1017 /* Don't double up on the discarding */
1018 if (!spin_trylock(&rxnet->client_conn_discard_lock)) {
1019 _leave(" [already]");
1023 /* We keep an estimate of what the number of conns ought to be after
1024 * we've discarded some so that we don't overdo the discarding.
1026 nr_conns = rxnet->nr_client_conns;
1029 spin_lock(&rxnet->client_conn_cache_lock);
1031 if (list_empty(&rxnet->idle_client_conns))
1034 conn = list_entry(rxnet->idle_client_conns.next,
1035 struct rxrpc_connection, cache_link);
1036 ASSERT(test_bit(RXRPC_CONN_EXPOSED, &conn->flags));
1038 if (!rxnet->kill_all_client_conns) {
1039 /* If the number of connections is over the reap limit, we
1040 * expedite discard by reducing the expiry timeout. We must,
1041 * however, have at least a short grace period to be able to do
1042 * final-ACK or ABORT retransmission.
1044 expiry = rxrpc_conn_idle_client_expiry;
1045 if (nr_conns > rxrpc_reap_client_connections)
1046 expiry = rxrpc_conn_idle_client_fast_expiry;
1048 conn_expires_at = conn->idle_timestamp + expiry;
1050 now = READ_ONCE(jiffies);
1051 if (time_after(conn_expires_at, now))
1052 goto not_yet_expired;
1055 trace_rxrpc_client(conn, -1, rxrpc_client_discard);
1056 if (!test_and_clear_bit(RXRPC_CONN_EXPOSED, &conn->flags))
1058 conn->cache_state = RXRPC_CONN_CLIENT_INACTIVE;
1059 list_del_init(&conn->cache_link);
1061 spin_unlock(&rxnet->client_conn_cache_lock);
1063 /* When we cleared the EXPOSED flag, we took on responsibility for the
1064 * reference that that had on the usage count. We deal with that here.
1065 * If someone re-sets the flag and re-gets the ref, that's fine.
1067 rxrpc_put_connection(conn);
1073 /* The connection at the front of the queue hasn't yet expired, so
1074 * schedule the work item for that point if we discarded something.
1076 * We don't worry if the work item is already scheduled - it can look
1077 * after rescheduling itself at a later time. We could cancel it, but
1078 * then things get messier.
1081 if (!rxnet->kill_all_client_conns)
1082 queue_delayed_work(rxrpc_workqueue,
1083 &rxnet->client_conn_reaper,
1084 conn_expires_at - now);
1087 spin_unlock(&rxnet->client_conn_cache_lock);
1088 spin_unlock(&rxnet->client_conn_discard_lock);
1093 * Preemptively destroy all the client connection records rather than waiting
1094 * for them to time out
1096 void rxrpc_destroy_all_client_connections(struct rxrpc_net *rxnet)
1100 spin_lock(&rxnet->client_conn_cache_lock);
1101 rxnet->kill_all_client_conns = true;
1102 spin_unlock(&rxnet->client_conn_cache_lock);
1104 cancel_delayed_work(&rxnet->client_conn_reaper);
1106 if (!queue_delayed_work(rxrpc_workqueue, &rxnet->client_conn_reaper, 0))
1107 _debug("destroy: queue failed");