From cc13c98302f6d73ab0b0ea81e2b7ef84297057b3 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Mon, 8 Aug 2022 11:21:54 -0700 Subject: [PATCH] ktls_test: Add a require_toe option similar to require_ifnet. This skips tests that send and receive records that do not use TOE TLS. Sponsored by: Chelsio Communications --- tests/sys/kern/ktls_test.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/sys/kern/ktls_test.c b/tests/sys/kern/ktls_test.c index b36de88adfa2..488b98725d09 100644 --- a/tests/sys/kern/ktls_test.c +++ b/tests/sys/kern/ktls_test.c @@ -81,6 +81,18 @@ check_tls_mode(const atf_tc_t *tc, int s, int sockopt) if (mode != TCP_TLS_MODE_IFNET) atf_tc_skip("connection did not use ifnet TLS"); } + + if (atf_tc_get_config_var_as_bool_wd(tc, "ktls.require_toe", false)) { + socklen_t len; + int mode; + + len = sizeof(mode); + if (getsockopt(s, IPPROTO_TCP, sockopt, &mode, &len) == -1) + atf_libc_error(errno, "Failed to fetch TLS mode"); + + if (mode != TCP_TLS_MODE_TOE) + atf_tc_skip("connection did not use TOE TLS"); + } } static char