Skip to content

Commit 3bcd6c7

Browse files
dhowellsdavem330
authored andcommitted
rxrpc: Fix race between conn bundle lookup and bundle removal [ZDI-CAN-15975]
After rxrpc_unbundle_conn() has removed a connection from a bundle, it checks to see if there are any conns with available channels and, if not, removes and attempts to destroy the bundle. Whilst it does check after grabbing client_bundles_lock that there are no connections attached, this races with rxrpc_look_up_bundle() retrieving the bundle, but not attaching a connection for the connection to be attached later. There is therefore a window in which the bundle can get destroyed before we manage to attach a new connection to it. Fix this by adding an "active" counter to struct rxrpc_bundle: (1) rxrpc_connect_call() obtains an active count by prepping/looking up a bundle and ditches it before returning. (2) If, during rxrpc_connect_call(), a connection is added to the bundle, this obtains an active count, which is held until the connection is discarded. (3) rxrpc_deactivate_bundle() is created to drop an active count on a bundle and destroy it when the active count reaches 0. The active count is checked inside client_bundles_lock() to prevent a race with rxrpc_look_up_bundle(). (4) rxrpc_unbundle_conn() then calls rxrpc_deactivate_bundle(). Fixes: 245500d ("rxrpc: Rewrite the client connection manager") Reported-by: [email protected] # ZDI-CAN-15975 Signed-off-by: David Howells <[email protected]> Tested-by: [email protected] cc: Marc Dionne <[email protected]> cc: [email protected] Signed-off-by: David S. Miller <[email protected]>
1 parent 302e57f commit 3bcd6c7

File tree

2 files changed

+24
-15
lines changed

2 files changed

+24
-15
lines changed

net/rxrpc/ar-internal.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,7 @@ enum rxrpc_conn_proto_state {
399399
struct rxrpc_bundle {
400400
struct rxrpc_conn_parameters params;
401401
refcount_t ref;
402+
atomic_t active; /* Number of active users */
402403
unsigned int debug_id;
403404
bool try_upgrade; /* True if the bundle is attempting upgrade */
404405
bool alloc_conn; /* True if someone's getting a conn */

net/rxrpc/conn_client.c

Lines changed: 23 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ __read_mostly unsigned long rxrpc_conn_idle_client_fast_expiry = 2 * HZ;
4040
DEFINE_IDR(rxrpc_client_conn_ids);
4141
static DEFINE_SPINLOCK(rxrpc_conn_id_lock);
4242

43+
static void rxrpc_deactivate_bundle(struct rxrpc_bundle *bundle);
44+
4345
/*
4446
* Get a connection ID and epoch for a client connection from the global pool.
4547
* The connection struct pointer is then recorded in the idr radix tree. The
@@ -123,6 +125,7 @@ static struct rxrpc_bundle *rxrpc_alloc_bundle(struct rxrpc_conn_parameters *cp,
123125
bundle->params = *cp;
124126
rxrpc_get_peer(bundle->params.peer);
125127
refcount_set(&bundle->ref, 1);
128+
atomic_set(&bundle->active, 1);
126129
spin_lock_init(&bundle->channel_lock);
127130
INIT_LIST_HEAD(&bundle->waiting_calls);
128131
}
@@ -149,7 +152,7 @@ void rxrpc_put_bundle(struct rxrpc_bundle *bundle)
149152

150153
dead = __refcount_dec_and_test(&bundle->ref, &r);
151154

152-
_debug("PUT B=%x %d", d, r);
155+
_debug("PUT B=%x %d", d, r - 1);
153156
if (dead)
154157
rxrpc_free_bundle(bundle);
155158
}
@@ -338,6 +341,7 @@ static struct rxrpc_bundle *rxrpc_look_up_bundle(struct rxrpc_conn_parameters *c
338341
rxrpc_free_bundle(candidate);
339342
found_bundle:
340343
rxrpc_get_bundle(bundle);
344+
atomic_inc(&bundle->active);
341345
spin_unlock(&local->client_bundles_lock);
342346
_leave(" = %u [found]", bundle->debug_id);
343347
return bundle;
@@ -435,6 +439,7 @@ static void rxrpc_add_conn_to_bundle(struct rxrpc_bundle *bundle, gfp_t gfp)
435439
if (old)
436440
trace_rxrpc_client(old, -1, rxrpc_client_replace);
437441
candidate->bundle_shift = shift;
442+
atomic_inc(&bundle->active);
438443
bundle->conns[i] = candidate;
439444
for (j = 0; j < RXRPC_MAXCALLS; j++)
440445
set_bit(shift + j, &bundle->avail_chans);
@@ -725,6 +730,7 @@ int rxrpc_connect_call(struct rxrpc_sock *rx,
725730
smp_rmb();
726731

727732
out_put_bundle:
733+
rxrpc_deactivate_bundle(bundle);
728734
rxrpc_put_bundle(bundle);
729735
out:
730736
_leave(" = %d", ret);
@@ -900,9 +906,8 @@ void rxrpc_disconnect_client_call(struct rxrpc_bundle *bundle, struct rxrpc_call
900906
static void rxrpc_unbundle_conn(struct rxrpc_connection *conn)
901907
{
902908
struct rxrpc_bundle *bundle = conn->bundle;
903-
struct rxrpc_local *local = bundle->params.local;
904909
unsigned int bindex;
905-
bool need_drop = false, need_put = false;
910+
bool need_drop = false;
906911
int i;
907912

908913
_enter("C=%x", conn->debug_id);
@@ -921,15 +926,22 @@ static void rxrpc_unbundle_conn(struct rxrpc_connection *conn)
921926
}
922927
spin_unlock(&bundle->channel_lock);
923928

924-
/* If there are no more connections, remove the bundle */
925-
if (!bundle->avail_chans) {
926-
_debug("maybe unbundle");
927-
spin_lock(&local->client_bundles_lock);
929+
if (need_drop) {
930+
rxrpc_deactivate_bundle(bundle);
931+
rxrpc_put_connection(conn);
932+
}
933+
}
928934

929-
for (i = 0; i < ARRAY_SIZE(bundle->conns); i++)
930-
if (bundle->conns[i])
931-
break;
932-
if (i == ARRAY_SIZE(bundle->conns) && !bundle->params.exclusive) {
935+
/*
936+
* Drop the active count on a bundle.
937+
*/
938+
static void rxrpc_deactivate_bundle(struct rxrpc_bundle *bundle)
939+
{
940+
struct rxrpc_local *local = bundle->params.local;
941+
bool need_put = false;
942+
943+
if (atomic_dec_and_lock(&bundle->active, &local->client_bundles_lock)) {
944+
if (!bundle->params.exclusive) {
933945
_debug("erase bundle");
934946
rb_erase(&bundle->local_node, &local->client_bundles);
935947
need_put = true;
@@ -939,10 +951,6 @@ static void rxrpc_unbundle_conn(struct rxrpc_connection *conn)
939951
if (need_put)
940952
rxrpc_put_bundle(bundle);
941953
}
942-
943-
if (need_drop)
944-
rxrpc_put_connection(conn);
945-
_leave("");
946954
}
947955

948956
/*

0 commit comments

Comments
 (0)