diff mbox series

[SRU,F,J,K,1/1] selftests: net: udpgso_bench: Fix racing bug between the rx/tx programs

Message ID 20230203195550.182433-2-andrei.gherzan@canonical.com
State New
Headers show
Series Fix selftest racing bug in udpgso_bench | expand

Commit Message

Andrei Gherzan Feb. 3, 2023, 7:55 p.m. UTC
BugLink: https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1951447

"udpgro_bench.sh" invokes udpgso_bench_rx/udpgso_bench_tx programs
subsequently and while doing so, there is a chance that the rx one is not
ready to accept socket connections. This racing bug could fail the test
with at least one of the following:

./udpgso_bench_tx: connect: Connection refused
./udpgso_bench_tx: sendmsg: Connection refused
./udpgso_bench_tx: write: Connection refused

This change addresses this by making udpgro_bench.sh wait for the rx
program to be ready before firing off the tx one - up to a 10s timeout.

Fixes: 3a687bef148d ("selftests: udp gso benchmark")
Signed-off-by: Andrei Gherzan <andrei.gherzan@canonical.com>
Cc: Paolo Abeni <pabeni@redhat.com>
Cc: Willem de Bruijn <willemb@google.com>
(cherry-picked from commit dafe93b9ee21028d625dce347118b82659652eff netdev)
---
 tools/testing/selftests/net/udpgso_bench.sh | 24 +++++++++++++++++----
 1 file changed, 20 insertions(+), 4 deletions(-)

Comments

Stefan Bader Feb. 6, 2023, 10:19 a.m. UTC | #1
On 03.02.23 20:55, Andrei Gherzan wrote:

BugLink: https://bugs.launchpad.net/bugs/1951447

> 
> "udpgro_bench.sh" invokes udpgso_bench_rx/udpgso_bench_tx programs
> subsequently and while doing so, there is a chance that the rx one is not
> ready to accept socket connections. This racing bug could fail the test
> with at least one of the following:
> 
> ./udpgso_bench_tx: connect: Connection refused
> ./udpgso_bench_tx: sendmsg: Connection refused
> ./udpgso_bench_tx: write: Connection refused
> 
> This change addresses this by making udpgro_bench.sh wait for the rx
> program to be ready before firing off the tx one - up to a 10s timeout.
> 
> Fixes: 3a687bef148d ("selftests: udp gso benchmark")
> Signed-off-by: Andrei Gherzan <andrei.gherzan@canonical.com>
> Cc: Paolo Abeni <pabeni@redhat.com>
> Cc: Willem de Bruijn <willemb@google.com>
> (cherry-picked from commit dafe93b9ee21028d625dce347118b82659652eff netdev)
Acked-by: Stefan Bader <stefan.bader@canonical.com>
> ---

Should adjust the BugLink to standard format when applying.

-Stefan

>   tools/testing/selftests/net/udpgso_bench.sh | 24 +++++++++++++++++----
>   1 file changed, 20 insertions(+), 4 deletions(-)
> 
> diff --git a/tools/testing/selftests/net/udpgso_bench.sh b/tools/testing/selftests/net/udpgso_bench.sh
> index dc932fd653634..640bc43452faa 100755
> --- a/tools/testing/selftests/net/udpgso_bench.sh
> +++ b/tools/testing/selftests/net/udpgso_bench.sh
> @@ -7,6 +7,7 @@ readonly GREEN='\033[0;92m'
>   readonly YELLOW='\033[0;33m'
>   readonly RED='\033[0;31m'
>   readonly NC='\033[0m' # No Color
> +readonly TESTPORT=8000
>   
>   readonly KSFT_PASS=0
>   readonly KSFT_FAIL=1
> @@ -56,11 +57,26 @@ trap wake_children EXIT
>   
>   run_one() {
>   	local -r args=$@
> +	local nr_socks=0
> +	local i=0
> +	local -r timeout=10
> +
> +	./udpgso_bench_rx -p "$TESTPORT" &
> +	./udpgso_bench_rx -p "$TESTPORT" -t &
> +
> +	# Wait for the above test program to get ready to receive connections.
> +	while [ "$i" -lt "$timeout" ]; do
> +		nr_socks="$(ss -lnHi | grep -c "\*:${TESTPORT}")"
> +		[ "$nr_socks" -eq 2 ] && break
> +		i=$((i + 1))
> +		sleep 1
> +	done
> +	if [ "$nr_socks" -ne 2 ]; then
> +		echo "timed out while waiting for udpgso_bench_rx"
> +		exit 1
> +	fi
>   
> -	./udpgso_bench_rx &
> -	./udpgso_bench_rx -t &
> -
> -	./udpgso_bench_tx ${args}
> +	./udpgso_bench_tx -p "$TESTPORT" ${args}
>   }
>   
>   run_in_netns() {
diff mbox series

Patch

diff --git a/tools/testing/selftests/net/udpgso_bench.sh b/tools/testing/selftests/net/udpgso_bench.sh
index dc932fd653634..640bc43452faa 100755
--- a/tools/testing/selftests/net/udpgso_bench.sh
+++ b/tools/testing/selftests/net/udpgso_bench.sh
@@ -7,6 +7,7 @@  readonly GREEN='\033[0;92m'
 readonly YELLOW='\033[0;33m'
 readonly RED='\033[0;31m'
 readonly NC='\033[0m' # No Color
+readonly TESTPORT=8000
 
 readonly KSFT_PASS=0
 readonly KSFT_FAIL=1
@@ -56,11 +57,26 @@  trap wake_children EXIT
 
 run_one() {
 	local -r args=$@
+	local nr_socks=0
+	local i=0
+	local -r timeout=10
+
+	./udpgso_bench_rx -p "$TESTPORT" &
+	./udpgso_bench_rx -p "$TESTPORT" -t &
+
+	# Wait for the above test program to get ready to receive connections.
+	while [ "$i" -lt "$timeout" ]; do
+		nr_socks="$(ss -lnHi | grep -c "\*:${TESTPORT}")"
+		[ "$nr_socks" -eq 2 ] && break
+		i=$((i + 1))
+		sleep 1
+	done
+	if [ "$nr_socks" -ne 2 ]; then
+		echo "timed out while waiting for udpgso_bench_rx"
+		exit 1
+	fi
 
-	./udpgso_bench_rx &
-	./udpgso_bench_rx -t &
-
-	./udpgso_bench_tx ${args}
+	./udpgso_bench_tx -p "$TESTPORT" ${args}
 }
 
 run_in_netns() {