selftests/net: Argument value mismatch when calling verify_counters()
authorMohammad Nassiri <mnassiri@ciena.com>
Tue, 30 Jan 2024 03:51:52 +0000 (03:51 +0000)
committerJakub Kicinski <kuba@kernel.org>
Thu, 1 Feb 2024 00:33:30 +0000 (16:33 -0800)
The end_server() function only operates in the server thread
and always takes an accept socket instead of a listen socket as
its input argument. To align with this, invert the boolean values
used when calling verify_counters() within the end_server() function.

As a result of this typo, the test didn't correctly check for
the non-symmetrical scenario, where i.e. peer-A uses a key <100:200>
to send data, but peer-B uses another key <105:205> to send its data.
So, in simple words, different keys for TX and RX.

Fixes: 3c3ead555648 ("selftests/net: Add TCP-AO key-management test")
Signed-off-by: Mohammad Nassiri <mnassiri@ciena.com>
Link: https://lore.kernel.org/all/934627c5-eebb-4626-be23-cfb134c01d1a@arista.com/
[amended 'Fixes' tag, added the issue description and carried-over to lkml]
Signed-off-by: Dmitry Safonov <dima@arista.com>
Link: https://lore.kernel.org/r/20240130-tcp-ao-test-key-mgmt-v2-1-d190430a6c60@arista.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
tools/testing/selftests/net/tcp_ao/key-management.c

index c48b4970ca17e07220813192fadbc553cdc89250..f6a9395e3cd7dc3e00cb15ae00135c032d160db1 100644 (file)
@@ -843,7 +843,7 @@ static void end_server(const char *tst_name, int sk,
        synchronize_threads(); /* 4: verified => closed */
        close(sk);
 
-       verify_counters(tst_name, true, false, begin, &end);
+       verify_counters(tst_name, false, true, begin, &end);
        synchronize_threads(); /* 5: counters */
 }