File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format
5
5
---
6
6
###
7
7
8
+ # [ 0.9.22] - 2025-8-5
9
+
10
+ - Fixed an issue where TCP rst received from tcp a server does not remove the ingress
11
+ state when egressing the interface facing the client due to incorrect map lookup.
12
+ This then caused the connection to be be cleaned up after idle time rather than immediately.
13
+
14
+ ###
15
+
8
16
# [ 0.9.21] - 2025-7-18
9
17
10
18
- Refactored port_extension_key.pad to port_extension_key.type to differentiate ipv4 from ipv6
Original file line number Diff line number Diff line change @@ -278,7 +278,7 @@ char *direction_string;
278
278
char * masq_interface ;
279
279
char check_alt [IF_NAMESIZE ];
280
280
281
- const char * argp_program_version = "0.9.21 " ;
281
+ const char * argp_program_version = "0.9.22 " ;
282
282
struct ring_buffer * ring_buffer ;
283
283
284
284
__u32 if_list [MAX_IF_LIST_ENTRIES ];
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ char check_alt[IF_NAMESIZE];
93
93
char doc [] = "zfw_monitor -- ebpf firewall monitor tool" ;
94
94
const char * rb_map_path = "/sys/fs/bpf/tc/globals/rb_map" ;
95
95
const char * tproxy_map_path = "/sys/fs/bpf/tc/globals/zt_tproxy_map" ;
96
- const char * argp_program_version = "0.9.21 " ;
96
+ const char * argp_program_version = "0.9.22 " ;
97
97
union bpf_attr rb_map ;
98
98
int rb_fd = -1 ;
99
99
Original file line number Diff line number Diff line change @@ -1286,7 +1286,7 @@ int bpf_sk_splice(struct __sk_buff *skb){
1286
1286
}
1287
1287
}
1288
1288
else if (tcph -> rst ){
1289
- del_tcp (tcp_state_key );
1289
+ del_ingress_tcp (tcp_state_key );
1290
1290
tstate = get_ingress_tcp (tcp_state_key );
1291
1291
if (!tstate ){
1292
1292
if (local_diag -> verbose ){
You can’t perform that action at this time.
0 commit comments