aboutgitcodebugslistschat
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2025-02-27 16:55:16 +1100
committerDavid Gibson <david@gibson.dropbear.id.au>2025-04-02 14:32:10 +1100
commit44eed5c950c6a49c9976220f977805e148362379 (patch)
tree8b5599a92da06c7d508ef04479c36cb289d1f6eb
parent4b8660b3d5a9c3530de600239ce190094d26f1c5 (diff)
downloadpasst-44eed5c950c6a49c9976220f977805e148362379.tar
passt-44eed5c950c6a49c9976220f977805e148362379.tar.gz
passt-44eed5c950c6a49c9976220f977805e148362379.tar.bz2
passt-44eed5c950c6a49c9976220f977805e148362379.tar.lz
passt-44eed5c950c6a49c9976220f977805e148362379.tar.xz
passt-44eed5c950c6a49c9976220f977805e148362379.tar.zst
passt-44eed5c950c6a49c9976220f977805e148362379.zip
tcp: Unconditionally move to CLOSED state on tcp_rst()
tcp_rst() attempts to send an RST packet to the guest, and if that succeeds moves the flow to CLOSED state. However, even if the tcp_send_flag() fails the flow is still dead: we've usually closed the socket already, and something has already gone irretrievably wrong. So we should still mark the flow as CLOSED. That will cause it to be cleaned up, meaning any future packets from the guest for it won't match a flow, so should generate new RSTs (they don't at the moment, but that's a separate bug). Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rw-r--r--tcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tcp.c b/tcp.c
index 9622ad9..716079f 100644
--- a/tcp.c
+++ b/tcp.c
@@ -1216,8 +1216,8 @@ void tcp_rst_do(const struct ctx *c, struct tcp_tap_conn *conn)
if (conn->events == CLOSED)
return;
- if (!tcp_send_flag(c, conn, RST))
- conn_event(c, conn, CLOSED);
+ tcp_send_flag(c, conn, RST);
+ conn_event(c, conn, CLOSED);
}
/**