mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 19:08:57 +09:00
selftests: net: fcnal-test: check if FIPS mode is enabled
[ Upstream commitd7a2fc1437] There are some MD5 tests which fail when the kernel is in FIPS mode, since MD5 is not FIPS compliant. Add a check and only run those tests if FIPS mode is not enabled. Fixes:f0bee1ebb5("fcnal-test: Add TCP MD5 tests") Fixes:5cad8bce26("fcnal-test: Add TCP MD5 tests for VRF") Reviewed-by: David Ahern <dsahern@kernel.org> Signed-off-by: Magali Lemes <magali.lemes@canonical.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
964cfdfd4b
commit
d967bd7ea6
@@ -84,6 +84,13 @@ NSC_CMD="ip netns exec ${NSC}"
|
|||||||
|
|
||||||
which ping6 > /dev/null 2>&1 && ping6=$(which ping6) || ping6=$(which ping)
|
which ping6 > /dev/null 2>&1 && ping6=$(which ping6) || ping6=$(which ping)
|
||||||
|
|
||||||
|
# Check if FIPS mode is enabled
|
||||||
|
if [ -f /proc/sys/crypto/fips_enabled ]; then
|
||||||
|
fips_enabled=`cat /proc/sys/crypto/fips_enabled`
|
||||||
|
else
|
||||||
|
fips_enabled=0
|
||||||
|
fi
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# utilities
|
# utilities
|
||||||
|
|
||||||
@@ -1202,7 +1209,7 @@ ipv4_tcp_novrf()
|
|||||||
run_cmd nettest -d ${NSA_DEV} -r ${a}
|
run_cmd nettest -d ${NSA_DEV} -r ${a}
|
||||||
log_test_addr ${a} $? 1 "No server, device client, local conn"
|
log_test_addr ${a} $? 1 "No server, device client, local conn"
|
||||||
|
|
||||||
ipv4_tcp_md5_novrf
|
[ "$fips_enabled" = "1" ] || ipv4_tcp_md5_novrf
|
||||||
}
|
}
|
||||||
|
|
||||||
ipv4_tcp_vrf()
|
ipv4_tcp_vrf()
|
||||||
@@ -1256,9 +1263,11 @@ ipv4_tcp_vrf()
|
|||||||
log_test_addr ${a} $? 1 "Global server, local connection"
|
log_test_addr ${a} $? 1 "Global server, local connection"
|
||||||
|
|
||||||
# run MD5 tests
|
# run MD5 tests
|
||||||
setup_vrf_dup
|
if [ "$fips_enabled" = "0" ]; then
|
||||||
ipv4_tcp_md5
|
setup_vrf_dup
|
||||||
cleanup_vrf_dup
|
ipv4_tcp_md5
|
||||||
|
cleanup_vrf_dup
|
||||||
|
fi
|
||||||
|
|
||||||
#
|
#
|
||||||
# enable VRF global server
|
# enable VRF global server
|
||||||
@@ -2674,7 +2683,7 @@ ipv6_tcp_novrf()
|
|||||||
log_test_addr ${a} $? 1 "No server, device client, local conn"
|
log_test_addr ${a} $? 1 "No server, device client, local conn"
|
||||||
done
|
done
|
||||||
|
|
||||||
ipv6_tcp_md5_novrf
|
[ "$fips_enabled" = "1" ] || ipv6_tcp_md5_novrf
|
||||||
}
|
}
|
||||||
|
|
||||||
ipv6_tcp_vrf()
|
ipv6_tcp_vrf()
|
||||||
@@ -2744,9 +2753,11 @@ ipv6_tcp_vrf()
|
|||||||
log_test_addr ${a} $? 1 "Global server, local connection"
|
log_test_addr ${a} $? 1 "Global server, local connection"
|
||||||
|
|
||||||
# run MD5 tests
|
# run MD5 tests
|
||||||
setup_vrf_dup
|
if [ "$fips_enabled" = "0" ]; then
|
||||||
ipv6_tcp_md5
|
setup_vrf_dup
|
||||||
cleanup_vrf_dup
|
ipv6_tcp_md5
|
||||||
|
cleanup_vrf_dup
|
||||||
|
fi
|
||||||
|
|
||||||
#
|
#
|
||||||
# enable VRF global server
|
# enable VRF global server
|
||||||
|
|||||||
Reference in New Issue
Block a user