aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Tuexen <tuexen@FreeBSD.org>2022-04-05 11:50:49 +0000
committerMichael Tuexen <tuexen@FreeBSD.org>2022-04-05 11:52:36 +0000
commitccdfd621d070c11964984d81f66c2bd38f8072f4 (patch)
treef30b3ad1b6fa8f0106bdd0270221242b1aa0a0b0
parent7c1baa8ab3f50a7ad5980b2f4bd9dba4c326d946 (diff)
downloadsrc-ccdfd621d070c11964984d81f66c2bd38f8072f4.tar.gz
src-ccdfd621d070c11964984d81f66c2bd38f8072f4.zip
tcp cc: don't recurse on non recursive mutex
This issue was found by syzkaller. Reviewed by: rrs Sponsored by: Netflix, Inc. Differential Revision: https://reviews.freebsd.org/D34743
-rw-r--r--sys/netinet/cc/cc.c29
1 files changed, 19 insertions, 10 deletions
diff --git a/sys/netinet/cc/cc.c b/sys/netinet/cc/cc.c
index 55a5f6ef652e..a009998ca920 100644
--- a/sys/netinet/cc/cc.c
+++ b/sys/netinet/cc/cc.c
@@ -280,15 +280,12 @@ cc_init(void)
/*
* Returns non-zero on success, 0 on failure.
*/
-int
-cc_deregister_algo(struct cc_algo *remove_cc)
+static int
+cc_deregister_algo_locked(struct cc_algo *remove_cc)
{
struct cc_algo *funcs;
int found = 0;
- /* Remove algo from cc_list so that new connections can't use it. */
- CC_LIST_WLOCK();
-
/* This is unlikely to fail */
STAILQ_FOREACH(funcs, &cc_list, entries) {
if (funcs == remove_cc)
@@ -296,26 +293,37 @@ cc_deregister_algo(struct cc_algo *remove_cc)
}
if (found == 0) {
/* Nothing to remove? */
- CC_LIST_WUNLOCK();
return (ENOENT);
}
/* We assert it should have been MOD_QUIESCE'd */
KASSERT((remove_cc->flags & CC_MODULE_BEING_REMOVED),
("remove_cc:%p does not have CC_MODULE_BEING_REMOVED flag", remove_cc));
if (cc_check_default(remove_cc)) {
- CC_LIST_WUNLOCK();
return(EBUSY);
}
if (remove_cc->cc_refcount != 0) {
- CC_LIST_WUNLOCK();
return (EBUSY);
}
+ /* Remove algo from cc_list so that new connections can't use it. */
STAILQ_REMOVE(&cc_list, remove_cc, cc_algo, entries);
- CC_LIST_WUNLOCK();
return (0);
}
/*
+ * Returns non-zero on success, 0 on failure.
+ */
+int
+cc_deregister_algo(struct cc_algo *remove_cc)
+{
+ int ret;
+
+ CC_LIST_WLOCK();
+ ret = cc_deregister_algo_locked(remove_cc);
+ CC_LIST_WUNLOCK();
+ return (ret);
+}
+
+/*
* Returns 0 on success, non-zero on failure.
*/
int
@@ -628,7 +636,8 @@ cc_modevent(module_t mod, int event_type, void *data)
* If -f was used and users are still attached to
* the algorithm things are going to go boom.
*/
- err = cc_deregister_algo(algo);
+ err = cc_deregister_algo_locked(algo);
+ CC_LIST_WUNLOCK();
if ((err == 0) && (algo->mod_destroy != NULL)) {
algo->mod_destroy();
}