fbe767f
From a9b5785f174cf7fd74891fa64f6b69b9a9b55466 Mon Sep 17 00:00:00 2001
e5f6b89
From: =?UTF-8?q?Petr=20Men=C5=A1=C3=ADk?= <pemensik@redhat.com>
e5f6b89
Date: Tue, 2 Jan 2018 18:13:07 +0100
e5f6b89
Subject: [PATCH] Fix pkcs11 variants atf tests
e5f6b89
e5f6b89
Add dns-pkcs11 tests Makefile to configure
e5f6b89
e5f6b89
Add pkcs11 Kyuafile, fix dh_test to pass in pkcs11 mode
e5f6b89
---
1e41691
 configure.ac                     |  1 +
e5f6b89
 lib/Kyuafile                     |  2 ++
e5f6b89
 lib/dns-pkcs11/tests/Makefile.in | 10 +++++-----
e5f6b89
 lib/dns-pkcs11/tests/dh_test.c   |  3 ++-
e5f6b89
 lib/isc-pkcs11/tests/Makefile.in |  6 +++---
e5f6b89
 lib/isc-pkcs11/tests/hash_test.c | 32 +++++++++++++++++++++++++-------
1e41691
 6 files changed, 38 insertions(+), 16 deletions(-)
e5f6b89
1e41691
diff --git a/configure.ac b/configure.ac
fbe767f
index 62ecf56..0940a7d 100644
1e41691
--- a/configure.ac
1e41691
+++ b/configure.ac
fbe767f
@@ -5476,6 +5476,7 @@ AC_CONFIG_FILES([
e5f6b89
 	lib/dns-pkcs11/include/Makefile
e5f6b89
 	lib/dns-pkcs11/include/dns/Makefile
e5f6b89
 	lib/dns-pkcs11/include/dst/Makefile
e5f6b89
+	lib/dns-pkcs11/tests/Makefile
e5f6b89
 	lib/irs/Makefile
e5f6b89
 	lib/irs/include/Makefile
e5f6b89
 	lib/irs/include/irs/Makefile
e5f6b89
diff --git a/lib/Kyuafile b/lib/Kyuafile
1e41691
index 7c8bab0..eec9564 100644
e5f6b89
--- a/lib/Kyuafile
e5f6b89
+++ b/lib/Kyuafile
1e41691
@@ -2,8 +2,10 @@ syntax(2)
e5f6b89
 test_suite('bind9')
e5f6b89
 
e5f6b89
 include('dns/Kyuafile')
e5f6b89
+include('dns-pkcs11/Kyuafile')
e5f6b89
 include('irs/Kyuafile')
e5f6b89
 include('isc/Kyuafile')
e5f6b89
+include('isc-pkcs11/Kyuafile')
1e41691
 include('isccc/Kyuafile')
e5f6b89
 include('isccfg/Kyuafile')
e5f6b89
 include('lwres/Kyuafile')
e5f6b89
diff --git a/lib/dns-pkcs11/tests/Makefile.in b/lib/dns-pkcs11/tests/Makefile.in
fbe767f
index 22a06a8..5df5b15 100644
e5f6b89
--- a/lib/dns-pkcs11/tests/Makefile.in
e5f6b89
+++ b/lib/dns-pkcs11/tests/Makefile.in
1e41691
@@ -17,12 +17,12 @@ VERSION=@BIND9_VERSION@
e5f6b89
 
e5f6b89
 CINCLUDES =	-I. -Iinclude ${DNS_INCLUDES} ${ISC_INCLUDES} \
fbe767f
 		@DST_OPENSSL_INC@ ${MAXMINDDB_CFLAGS}
e5f6b89
-CDEFINES =	@CRYPTO@ -DTESTS="\"${top_builddir}/lib/dns/tests/\""
1e41691
+CDEFINES =	@CRYPTO_PK11@ -DTESTS="\"${top_builddir}/lib/dns-pkcs11/tests/\""
e5f6b89
 
e5f6b89
-ISCLIBS =	../../isc/libisc.@A@
e5f6b89
-ISCDEPLIBS =	../../isc/libisc.@A@
371a1e3
-DNSLIBS =	../libdns.@A@ ${MAXMINDDB_LIBS} @DNS_CRYPTO_LIBS@
e5f6b89
-DNSDEPLIBS =	../libdns.@A@
e5f6b89
+ISCLIBS =	../../isc-pkcs11/libisc-pkcs11.@A@
e5f6b89
+ISCDEPLIBS =	../../isc-pkcs11/libisc-pkcs11.@A@
371a1e3
+DNSLIBS =	../libdns-pkcs11.@A@ ${MAXMINDDB_LIBS} @DNS_CRYPTO_LIBS@
e5f6b89
+DNSDEPLIBS =	../libdns-pkcs11.@A@
e5f6b89
 
1e41691
 LIBS =		@LIBS@ @CMOCKA_LIBS@
1e41691
 CFLAGS =	@CFLAGS@ @CMOCKA_CFLAGS@
e5f6b89
diff --git a/lib/dns-pkcs11/tests/dh_test.c b/lib/dns-pkcs11/tests/dh_test.c
fbe767f
index a5bf46c..9ff2b76 100644
e5f6b89
--- a/lib/dns-pkcs11/tests/dh_test.c
e5f6b89
+++ b/lib/dns-pkcs11/tests/dh_test.c
fbe767f
@@ -88,7 +88,8 @@ dh_computesecret(void **state) {
1e41691
 	result = dst_key_computesecret(key, key, &buf;;
1e41691
 	assert_int_equal(result, DST_R_NOTPRIVATEKEY);
1e41691
 	result = key->func->computesecret(key, key, &buf;;
1e41691
-	assert_int_equal(result, DST_R_COMPUTESECRETFAILURE);
e5f6b89
+	/* PKCS11 variant gives different result, accept both */
1e41691
+	assert_true(result == DST_R_COMPUTESECRETFAILURE || result == DST_R_INVALIDPRIVATEKEY);
e5f6b89
 
e5f6b89
 	dst_key_free(&key);
1e41691
 }
e5f6b89
diff --git a/lib/isc-pkcs11/tests/Makefile.in b/lib/isc-pkcs11/tests/Makefile.in
fbe767f
index 36d2207..00dfbc9 100644
e5f6b89
--- a/lib/isc-pkcs11/tests/Makefile.in
e5f6b89
+++ b/lib/isc-pkcs11/tests/Makefile.in
1e41691
@@ -16,10 +16,10 @@ VERSION=@BIND9_VERSION@
e5f6b89
 @BIND9_MAKE_INCLUDES@
e5f6b89
 
e5f6b89
 CINCLUDES =	-I. -Iinclude ${ISC_INCLUDES} @ISC_OPENSSL_INC@
e5f6b89
-CDEFINES =	@CRYPTO@ -DTESTS="\"${top_builddir}/lib/isc/tests/\""
1e41691
+CDEFINES =	@CRYPTO_PK11@ -DTESTS="\"${top_builddir}/lib/isc-pkcs11/tests/\""
e5f6b89
 
e5f6b89
-ISCLIBS =	../libisc.@A@ @ISC_OPENSSL_LIBS@
e5f6b89
-ISCDEPLIBS =	../libisc.@A@
e5f6b89
+ISCLIBS =	../libisc-pkcs11.@A@ @ISC_OPENSSL_LIBS@
e5f6b89
+ISCDEPLIBS =	../libisc-pkcs11.@A@
e5f6b89
 
1e41691
 LIBS =		@LIBS@ @CMOCKA_LIBS@
1e41691
 CFLAGS =	@CFLAGS@ @CMOCKA_CFLAGS@
e5f6b89
diff --git a/lib/isc-pkcs11/tests/hash_test.c b/lib/isc-pkcs11/tests/hash_test.c
fbe767f
index 4fafc38..5eb2be2 100644
e5f6b89
--- a/lib/isc-pkcs11/tests/hash_test.c
e5f6b89
+++ b/lib/isc-pkcs11/tests/hash_test.c
fbe767f
@@ -84,7 +84,7 @@ typedef struct hash_testcase {
e5f6b89
 
e5f6b89
 typedef struct hash_test_key {
e5f6b89
 	const char *key;
e5f6b89
-	const int len;
e5f6b89
+	const unsigned len;
e5f6b89
 } hash_test_key_t;
e5f6b89
 
e5f6b89
 /* non-hmac tests */
fbe767f
@@ -955,8 +955,11 @@ isc_hmacsha1_test(void **state) {
e5f6b89
 	hash_test_key_t *test_key = test_keys;
e5f6b89
 
e5f6b89
 	while (testcase->input != NULL && testcase->result != NULL) {
e5f6b89
+		int len = ISC_MAX(test_key->len, ISC_SHA1_DIGESTLENGTH);
e5f6b89
+
e5f6b89
+		memset(buffer, 0, ISC_SHA1_DIGESTLENGTH);
e5f6b89
 		memmove(buffer, test_key->key, test_key->len);
e5f6b89
-		isc_hmacsha1_init(&hmacsha1, buffer, test_key->len);
e5f6b89
+		isc_hmacsha1_init(&hmacsha1, buffer, len);
e5f6b89
 		isc_hmacsha1_update(&hmacsha1,
ad7b3b8
 				    (const uint8_t *) testcase->input,
e5f6b89
 				    testcase->input_len);
fbe767f
@@ -1115,8 +1118,11 @@ isc_hmacsha224_test(void **state) {
e5f6b89
 	hash_test_key_t *test_key = test_keys;
e5f6b89
 
e5f6b89
 	while (testcase->input != NULL && testcase->result != NULL) {
e5f6b89
+		int len = ISC_MAX(test_key->len, ISC_SHA224_DIGESTLENGTH);
e5f6b89
+
e5f6b89
+		memset(buffer, 0, ISC_SHA224_DIGESTLENGTH);
e5f6b89
 		memmove(buffer, test_key->key, test_key->len);
e5f6b89
-		isc_hmacsha224_init(&hmacsha224, buffer, test_key->len);
e5f6b89
+		isc_hmacsha224_init(&hmacsha224, buffer, len);
e5f6b89
 		isc_hmacsha224_update(&hmacsha224,
ad7b3b8
 				      (const uint8_t *) testcase->input,
e5f6b89
 				      testcase->input_len);
fbe767f
@@ -1276,8 +1282,11 @@ isc_hmacsha256_test(void **state) {
e5f6b89
 	hash_test_key_t *test_key = test_keys;
e5f6b89
 
e5f6b89
 	while (testcase->input != NULL && testcase->result != NULL) {
e5f6b89
+		int len = ISC_MAX(test_key->len, ISC_SHA256_DIGESTLENGTH);
e5f6b89
+
e5f6b89
+		memset(buffer, 0, ISC_SHA256_DIGESTLENGTH);
e5f6b89
 		memmove(buffer, test_key->key, test_key->len);
e5f6b89
-		isc_hmacsha256_init(&hmacsha256, buffer, test_key->len);
e5f6b89
+		isc_hmacsha256_init(&hmacsha256, buffer, len);
e5f6b89
 		isc_hmacsha256_update(&hmacsha256,
ad7b3b8
 				      (const uint8_t *) testcase->input,
e5f6b89
 				      testcase->input_len);
fbe767f
@@ -1443,8 +1452,11 @@ isc_hmacsha384_test(void **state) {
e5f6b89
 	hash_test_key_t *test_key = test_keys;
e5f6b89
 
e5f6b89
 	while (testcase->input != NULL && testcase->result != NULL) {
e5f6b89
+		int len = ISC_MAX(test_key->len, ISC_SHA384_DIGESTLENGTH);
e5f6b89
+
e5f6b89
+		memset(buffer, 0, ISC_SHA384_DIGESTLENGTH);
e5f6b89
 		memmove(buffer, test_key->key, test_key->len);
e5f6b89
-		isc_hmacsha384_init(&hmacsha384, buffer, test_key->len);
e5f6b89
+		isc_hmacsha384_init(&hmacsha384, buffer, len);
e5f6b89
 		isc_hmacsha384_update(&hmacsha384,
ad7b3b8
 				      (const uint8_t *) testcase->input,
e5f6b89
 				      testcase->input_len);
fbe767f
@@ -1610,8 +1622,11 @@ isc_hmacsha512_test(void **state) {
e5f6b89
 	hash_test_key_t *test_key = test_keys;
e5f6b89
 
e5f6b89
 	while (testcase->input != NULL && testcase->result != NULL) {
e5f6b89
+		int len = ISC_MAX(test_key->len, ISC_SHA512_DIGESTLENGTH);
e5f6b89
+
e5f6b89
+		memset(buffer, 0, ISC_SHA512_DIGESTLENGTH);
e5f6b89
 		memmove(buffer, test_key->key, test_key->len);
e5f6b89
-		isc_hmacsha512_init(&hmacsha512, buffer, test_key->len);
e5f6b89
+		isc_hmacsha512_init(&hmacsha512, buffer, len);
e5f6b89
 		isc_hmacsha512_update(&hmacsha512,
ad7b3b8
 				      (const uint8_t *) testcase->input,
e5f6b89
 				      testcase->input_len);
fbe767f
@@ -1754,8 +1769,11 @@ isc_hmacmd5_test(void **state) {
e5f6b89
 	hash_test_key_t *test_key = test_keys;
e5f6b89
 
e5f6b89
 	while (testcase->input != NULL && testcase->result != NULL) {
e5f6b89
+		int len = ISC_MAX(test_key->len, ISC_MD5_DIGESTLENGTH);
e5f6b89
+
e5f6b89
+		memset(buffer, 0, ISC_MD5_DIGESTLENGTH);
e5f6b89
 		memmove(buffer, test_key->key, test_key->len);
e5f6b89
-		isc_hmacmd5_init(&hmacmd5, buffer, test_key->len);
e5f6b89
+		isc_hmacmd5_init(&hmacmd5, buffer, len);
e5f6b89
 		isc_hmacmd5_update(&hmacmd5,
ad7b3b8
 				   (const uint8_t *) testcase->input,
e5f6b89
 				   testcase->input_len);
e5f6b89
-- 
fbe767f
2.21.1
e5f6b89