aboutgitcodebugslistschat
path: root/tcp.c
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2024-01-16 11:50:34 +1100
committerStefano Brivio <sbrivio@redhat.com>2024-01-22 23:35:15 +0100
commitc97bb527d6894a66f19584c1e300854c3110da64 (patch)
tree56b3fcb7c57dfd67674c3a865de15ddb877ed651 /tcp.c
parenteebca1115fbdb0fc72af713171434b0adbf4e87b (diff)
downloadpasst-c97bb527d6894a66f19584c1e300854c3110da64.tar
passt-c97bb527d6894a66f19584c1e300854c3110da64.tar.gz
passt-c97bb527d6894a66f19584c1e300854c3110da64.tar.bz2
passt-c97bb527d6894a66f19584c1e300854c3110da64.tar.lz
passt-c97bb527d6894a66f19584c1e300854c3110da64.tar.xz
passt-c97bb527d6894a66f19584c1e300854c3110da64.tar.zst
passt-c97bb527d6894a66f19584c1e300854c3110da64.zip
tcp, tcp_splice: Move per-type cleanup logic into per-type helpers
tcp_conn_destroy() and tcp_splice_destroy() are always called conditionally on the connection being closed or closing. Move that logic into the "destroy" functions themselves, renaming them tcp_flow_defer() and tcp_splice_flow_defer(). Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'tcp.c')
-rw-r--r--tcp.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/tcp.c b/tcp.c
index 1b29661..5223825 100644
--- a/tcp.c
+++ b/tcp.c
@@ -1303,14 +1303,17 @@ static struct tcp_tap_conn *tcp_hash_lookup(const struct ctx *c,
}
/**
- * tcp_conn_destroy() - Close sockets, trigger hash table removal and compaction
+ * tcp_flow_defer() - Deferred per-flow handling (clean up closed connections)
* @c: Execution context
* @flow: Flow table entry for this connection
*/
-static void tcp_conn_destroy(struct ctx *c, union flow *flow)
+static void tcp_flow_defer(struct ctx *c, union flow *flow)
{
const struct tcp_tap_conn *conn = &flow->tcp;
+ if (flow->tcp.events != CLOSED)
+ return;
+
close(conn->sock);
if (conn->timer != -1)
close(conn->timer);
@@ -1372,12 +1375,10 @@ void tcp_defer_handler(struct ctx *c)
for (flow = flowtab + c->flow_count - 1; flow >= flowtab; flow--) {
switch (flow->f.type) {
case FLOW_TCP:
- if (flow->tcp.events == CLOSED)
- tcp_conn_destroy(c, flow);
+ tcp_flow_defer(c, flow);
break;
case FLOW_TCP_SPLICE:
- if (flow->tcp_splice.flags & CLOSING)
- tcp_splice_destroy(c, flow);
+ tcp_splice_flow_defer(c, flow);
break;
default:
die("Unexpected %s in tcp_defer_handler()",