Skip to content

Commit f618dee

Browse files
borkmanngregkh
authored andcommitted
selftests/bpf: Fix bpf_nf failure upon test rerun
[ Upstream commit 17e8e5d ] Alexei reported: After fast forwarding bpf-next today bpf_nf test started to fail when run twice: $ ./test_progs -t bpf_nf #17 bpf_nf:OK Summary: 1/10 PASSED, 0 SKIPPED, 0 FAILED $ ./test_progs -t bpf_nf All error logs: test_bpf_nf_ct:PASS:test_bpf_nf__open_and_load 0 nsec test_bpf_nf_ct:PASS:iptables-legacy -t raw -A PREROUTING -j CONNMARK --set-mark 42/0 0 nsec (network_helpers.c:102: errno: Address already in use) Failed to bind socket test_bpf_nf_ct:FAIL:start_server unexpected start_server: actual -1 < expected 0 #17/1 bpf_nf/xdp-ct:FAIL test_bpf_nf_ct:PASS:test_bpf_nf__open_and_load 0 nsec test_bpf_nf_ct:PASS:iptables-legacy -t raw -A PREROUTING -j CONNMARK --set-mark 42/0 0 nsec (network_helpers.c:102: errno: Address already in use) Failed to bind socket test_bpf_nf_ct:FAIL:start_server unexpected start_server: actual -1 < expected 0 #17/2 bpf_nf/tc-bpf-ct:FAIL #17 bpf_nf:FAIL Summary: 0/8 PASSED, 0 SKIPPED, 1 FAILED I was able to locally reproduce as well. Rearrange the connection teardown so that the client closes its connection first so that we don't need to linger in TCP time-wait. Fixes: e81fbd4 ("selftests/bpf: Add existing connection bpf_*_ct_lookup() test") Reported-by: Alexei Starovoitov <[email protected]> Signed-off-by: Daniel Borkmann <[email protected]> Link: https://lore.kernel.org/bpf/CAADnVQ+0dnDq_v_vH1EfkacbfGnHANaon7zsw10pMb-D9FS0Pw@mail.gmail.com Link: https://lore.kernel.org/bpf/[email protected] Signed-off-by: Sasha Levin <[email protected]>
1 parent 002a658 commit f618dee

File tree

1 file changed

+3
-2
lines changed
  • tools/testing/selftests/bpf/prog_tests

1 file changed

+3
-2
lines changed

tools/testing/selftests/bpf/prog_tests/bpf_nf.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -123,12 +123,13 @@ static void test_bpf_nf_ct(int mode)
123123
ASSERT_EQ(skel->data->test_snat_addr, 0, "Test for source natting");
124124
ASSERT_EQ(skel->data->test_dnat_addr, 0, "Test for destination natting");
125125
end:
126-
if (srv_client_fd != -1)
127-
close(srv_client_fd);
128126
if (client_fd != -1)
129127
close(client_fd);
128+
if (srv_client_fd != -1)
129+
close(srv_client_fd);
130130
if (srv_fd != -1)
131131
close(srv_fd);
132+
132133
snprintf(cmd, sizeof(cmd), iptables, "-D");
133134
system(cmd);
134135
test_bpf_nf__destroy(skel);

0 commit comments

Comments
 (0)