aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGleb Smirnoff <glebius@FreeBSD.org>2023-12-04 18:19:46 +0000
committerGleb Smirnoff <glebius@FreeBSD.org>2023-12-04 18:19:46 +0000
commitd2ef52ef3dee38cccb7f54d33ecc2a4b944dad9d (patch)
tree3060e4bca33303477ff155c14a2637bac67f163c
parent2b3a77467dd3d74a7170f279fb25f9736b46ef8a (diff)
downloadsrc-d2ef52ef3dee38cccb7f54d33ecc2a4b944dad9d.tar.gz
src-d2ef52ef3dee38cccb7f54d33ecc2a4b944dad9d.zip
tcp/hpts: make stacks responsible for clearing themselves out HPTS
There already is the tfb_tcp_timer_stop_all method that is supposed to stop all time events associated with a given tcpcb by given stack. Some time ago it was doing actual callout_stop(). Today bbr/rack just mark their internal state as inactive in their tfb_tcp_timer_stop_all methods, but tcpcb stays in HPTS wheel and potentially called in from HPTS. Change the methods to also call tcp_hpts_remove(). Note: I'm not sure if internal flag is still relevant once we are out of HPTS wheel. Call the method when connection goes into TCP_CLOSED state, instead of calling it later when tcpcb is freed. Also call it when we switch between stacks. Reviewed by: tuexen, rrs Differential Revision: https://reviews.freebsd.org/D42857
-rw-r--r--sys/netinet/tcp_stacks/bbr.c3
-rw-r--r--sys/netinet/tcp_stacks/rack.c4
-rw-r--r--sys/netinet/tcp_subr.c8
-rw-r--r--sys/netinet/tcp_usrreq.c6
4 files changed, 11 insertions, 10 deletions
diff --git a/sys/netinet/tcp_stacks/bbr.c b/sys/netinet/tcp_stacks/bbr.c
index aa78e02e39d9..5f7c6125c1f0 100644
--- a/sys/netinet/tcp_stacks/bbr.c
+++ b/sys/netinet/tcp_stacks/bbr.c
@@ -5278,6 +5278,9 @@ bbr_stopall(struct tcpcb *tp)
bbr = (struct tcp_bbr *)tp->t_fb_ptr;
bbr->rc_all_timers_stopped = 1;
+
+ tcp_hpts_remove(tp);
+
return (0);
}
diff --git a/sys/netinet/tcp_stacks/rack.c b/sys/netinet/tcp_stacks/rack.c
index e7027dd1b2dd..229f36008a6a 100644
--- a/sys/netinet/tcp_stacks/rack.c
+++ b/sys/netinet/tcp_stacks/rack.c
@@ -8213,8 +8213,12 @@ static int
rack_stopall(struct tcpcb *tp)
{
struct tcp_rack *rack;
+
rack = (struct tcp_rack *)tp->t_fb_ptr;
rack->t_timers_stopped = 1;
+
+ tcp_hpts_remove(tp);
+
return (0);
}
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c
index b3f5375cb8cf..d951b5df938e 100644
--- a/sys/netinet/tcp_subr.c
+++ b/sys/netinet/tcp_subr.c
@@ -2379,9 +2379,6 @@ tcp_discardcb(struct tcpcb *tp)
INP_WLOCK_ASSERT(inp);
tcp_timer_stop(tp);
- if (tp->t_fb->tfb_tcp_timer_stop_all) {
- tp->t_fb->tfb_tcp_timer_stop_all(tp);
- }
/* free the reassembly queue, if any */
tcp_reass_flush(tp);
@@ -2521,9 +2518,8 @@ tcp_close(struct tcpcb *tp)
tcp_fastopen_decrement_counter(tp->t_tfo_pending);
tp->t_tfo_pending = NULL;
}
-#ifdef TCPHPTS
- tcp_hpts_remove(tp);
-#endif
+ if (tp->t_fb->tfb_tcp_timer_stop_all != NULL)
+ tp->t_fb->tfb_tcp_timer_stop_all(tp);
in_pcbdrop(inp);
TCPSTAT_INC(tcps_closed);
if (tp->t_state != TCPS_CLOSED)
diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c
index 93fdedc03c7b..d3ba42fd9d06 100644
--- a/sys/netinet/tcp_usrreq.c
+++ b/sys/netinet/tcp_usrreq.c
@@ -1743,10 +1743,8 @@ tcp_ctloutput_set(struct inpcb *inp, struct sockopt *sopt)
* Ensure the new stack takes ownership with a
* clean slate on peak rate threshold.
*/
-#ifdef TCPHPTS
- /* Assure that we are not on any hpts */
- tcp_hpts_remove(tp);
-#endif
+ if (tp->t_fb->tfb_tcp_timer_stop_all != NULL)
+ tp->t_fb->tfb_tcp_timer_stop_all(tp);
if (blk->tfb_tcp_fb_init) {
error = (*blk->tfb_tcp_fb_init)(tp, &ptr);
if (error) {