-
-
Notifications
You must be signed in to change notification settings - Fork 618
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[client] Improve TCP conn tracking #3572
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR improves TCP connection tracking by enhancing state management, handling RST packets bidirectionally, and eliminating the mutex for more efficient atomic operations. Key changes include updating the TCP state transitions with atomic operations, refining the logic for outbound and inbound packet tracking, and adding benchmark tests to assess performance.
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
File | Description |
---|---|
client/firewall/uspfilter/conntrack/tcp_bench_test.go | Added benchmark tests for tracking and cleanup operations |
client/firewall/uspfilter/conntrack/tcp.go | Modified TCP state management, updated state transitions, and removed the established flag and mutex |
Comments suppressed due to low confidence (1)
client/firewall/uspfilter/conntrack/tcp.go:308
- For outbound connections in TCPStateFinWait1, when both TCPFin and TCPAck flags are set, the first case is entered but newState is not assigned due to the '!isOutbound' check. Consider handling outbound transitions explicitly (e.g., setting newState = TCPStateFinWait2) to avoid stalling state transitions.
case flags&TCPFin != 0 && flags&TCPAck != 0:
|
Describe your changes
Issue ticket number and link
Checklist