Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests: net: Add FIN_ACK processing order related latency spike test

This commit adds a test for FIN_ACK process races related reconnection
latency spike issues. The issue has described and solved by the
previous commit ("tcp: Reduce SYN resend delay if a suspicous ACK is
received").

The test program is configured with a server and a client process. The
server creates and binds a socket to a port that dynamically allocated,
listen on it, and start a infinite loop. Inside the loop, it accepts
connection, reads 4 bytes from the socket, and closes the connection.
The client is constructed as an infinite loop. Inside the loop, it
creates a socket with LINGER and NODELAY option, connect to the server,
send 4 bytes data, try read some data from server. After the read()
returns, it measure the latency from the beginning of this loop to this
point and if the latency is larger than 1 second (spike), print a
message.

Reviewed-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: SeongJae Park <sjpark@amazon.de>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

SeongJae Park and committed by
Jakub Kicinski
af8c8a45 9603d47b

+189
+1
tools/testing/selftests/net/.gitignore
··· 22 22 so_txtime 23 23 tcp_fastopen_backup_key 24 24 nettest 25 + fin_ack_lat
+2
tools/testing/selftests/net/Makefile
··· 11 11 TEST_PROGS += udpgro_bench.sh udpgro.sh test_vxlan_under_vrf.sh reuseport_addr_any.sh 12 12 TEST_PROGS += test_vxlan_fdb_changelink.sh so_txtime.sh ipv6_flowlabel.sh 13 13 TEST_PROGS += tcp_fastopen_backup_key.sh fcnal-test.sh l2tp.sh traceroute.sh 14 + TEST_PROGS += fin_ack_lat.sh 14 15 TEST_PROGS_EXTENDED := in_netns.sh 15 16 TEST_GEN_FILES = socket nettest 16 17 TEST_GEN_FILES += psock_fanout psock_tpacket msg_zerocopy reuseport_addr_any ··· 19 18 TEST_GEN_FILES += udpgso udpgso_bench_tx udpgso_bench_rx ip_defrag 20 19 TEST_GEN_FILES += so_txtime ipv6_flowlabel ipv6_flowlabel_mgr 21 20 TEST_GEN_FILES += tcp_fastopen_backup_key 21 + TEST_GEN_FILES += fin_ack_lat 22 22 TEST_GEN_PROGS = reuseport_bpf reuseport_bpf_cpu reuseport_bpf_numa 23 23 TEST_GEN_PROGS += reuseport_dualstack reuseaddr_conflict tls 24 24
+151
tools/testing/selftests/net/fin_ack_lat.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 2 + 3 + #include <arpa/inet.h> 4 + #include <errno.h> 5 + #include <error.h> 6 + #include <netinet/in.h> 7 + #include <netinet/tcp.h> 8 + #include <signal.h> 9 + #include <stdio.h> 10 + #include <stdlib.h> 11 + #include <sys/socket.h> 12 + #include <sys/time.h> 13 + #include <unistd.h> 14 + 15 + static int child_pid; 16 + 17 + static unsigned long timediff(struct timeval s, struct timeval e) 18 + { 19 + unsigned long s_us, e_us; 20 + 21 + s_us = s.tv_sec * 1000000 + s.tv_usec; 22 + e_us = e.tv_sec * 1000000 + e.tv_usec; 23 + if (s_us > e_us) 24 + return 0; 25 + return e_us - s_us; 26 + } 27 + 28 + static void client(int port) 29 + { 30 + int sock = 0; 31 + struct sockaddr_in addr, laddr; 32 + socklen_t len = sizeof(laddr); 33 + struct linger sl; 34 + int flag = 1; 35 + int buffer; 36 + struct timeval start, end; 37 + unsigned long lat, sum_lat = 0, nr_lat = 0; 38 + 39 + while (1) { 40 + gettimeofday(&start, NULL); 41 + 42 + sock = socket(AF_INET, SOCK_STREAM, 0); 43 + if (sock < 0) 44 + error(-1, errno, "socket creation"); 45 + 46 + sl.l_onoff = 1; 47 + sl.l_linger = 0; 48 + if (setsockopt(sock, SOL_SOCKET, SO_LINGER, &sl, sizeof(sl))) 49 + error(-1, errno, "setsockopt(linger)"); 50 + 51 + if (setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, 52 + &flag, sizeof(flag))) 53 + error(-1, errno, "setsockopt(nodelay)"); 54 + 55 + addr.sin_family = AF_INET; 56 + addr.sin_port = htons(port); 57 + 58 + if (inet_pton(AF_INET, "127.0.0.1", &addr.sin_addr) <= 0) 59 + error(-1, errno, "inet_pton"); 60 + 61 + if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) < 0) 62 + error(-1, errno, "connect"); 63 + 64 + send(sock, &buffer, sizeof(buffer), 0); 65 + if (read(sock, &buffer, sizeof(buffer)) == -1) 66 + error(-1, errno, "waiting read"); 67 + 68 + gettimeofday(&end, NULL); 69 + lat = timediff(start, end); 70 + sum_lat += lat; 71 + nr_lat++; 72 + if (lat < 100000) 73 + goto close; 74 + 75 + if (getsockname(sock, (struct sockaddr *)&laddr, &len) == -1) 76 + error(-1, errno, "getsockname"); 77 + printf("port: %d, lat: %lu, avg: %lu, nr: %lu\n", 78 + ntohs(laddr.sin_port), lat, 79 + sum_lat / nr_lat, nr_lat); 80 + close: 81 + fflush(stdout); 82 + close(sock); 83 + } 84 + } 85 + 86 + static void server(int sock, struct sockaddr_in address) 87 + { 88 + int accepted; 89 + int addrlen = sizeof(address); 90 + int buffer; 91 + 92 + while (1) { 93 + accepted = accept(sock, (struct sockaddr *)&address, 94 + (socklen_t *)&addrlen); 95 + if (accepted < 0) 96 + error(-1, errno, "accept"); 97 + 98 + if (read(accepted, &buffer, sizeof(buffer)) == -1) 99 + error(-1, errno, "read"); 100 + close(accepted); 101 + } 102 + } 103 + 104 + static void sig_handler(int signum) 105 + { 106 + kill(SIGTERM, child_pid); 107 + exit(0); 108 + } 109 + 110 + int main(int argc, char const *argv[]) 111 + { 112 + int sock; 113 + int opt = 1; 114 + struct sockaddr_in address; 115 + struct sockaddr_in laddr; 116 + socklen_t len = sizeof(laddr); 117 + 118 + if (signal(SIGTERM, sig_handler) == SIG_ERR) 119 + error(-1, errno, "signal"); 120 + 121 + sock = socket(AF_INET, SOCK_STREAM, 0); 122 + if (sock < 0) 123 + error(-1, errno, "socket"); 124 + 125 + if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR | SO_REUSEPORT, 126 + &opt, sizeof(opt)) == -1) 127 + error(-1, errno, "setsockopt"); 128 + 129 + address.sin_family = AF_INET; 130 + address.sin_addr.s_addr = INADDR_ANY; 131 + /* dynamically allocate unused port */ 132 + address.sin_port = 0; 133 + 134 + if (bind(sock, (struct sockaddr *)&address, sizeof(address)) < 0) 135 + error(-1, errno, "bind"); 136 + 137 + if (listen(sock, 3) < 0) 138 + error(-1, errno, "listen"); 139 + 140 + if (getsockname(sock, (struct sockaddr *)&laddr, &len) == -1) 141 + error(-1, errno, "getsockname"); 142 + 143 + fprintf(stderr, "server port: %d\n", ntohs(laddr.sin_port)); 144 + child_pid = fork(); 145 + if (!child_pid) 146 + client(ntohs(laddr.sin_port)); 147 + else 148 + server(sock, laddr); 149 + 150 + return 0; 151 + }
+35
tools/testing/selftests/net/fin_ack_lat.sh
··· 1 + #!/bin/bash 2 + # SPDX-License-Identifier: GPL-2.0 3 + # 4 + # Test latency spikes caused by FIN/ACK handling race. 5 + 6 + set +x 7 + set -e 8 + 9 + tmpfile=$(mktemp /tmp/fin_ack_latency.XXXX.log) 10 + 11 + cleanup() { 12 + kill $(pidof fin_ack_lat) 13 + rm -f $tmpfile 14 + } 15 + 16 + trap cleanup EXIT 17 + 18 + do_test() { 19 + RUNTIME=$1 20 + 21 + ./fin_ack_lat | tee $tmpfile & 22 + PID=$! 23 + 24 + sleep $RUNTIME 25 + NR_SPIKES=$(wc -l $tmpfile | awk '{print $1}') 26 + if [ $NR_SPIKES -gt 0 ] 27 + then 28 + echo "FAIL: $NR_SPIKES spikes detected" 29 + return 1 30 + fi 31 + return 0 32 + } 33 + 34 + do_test "30" 35 + echo "test done"