2012-01-27 00:49:42 +00:00
|
|
|
/*
|
2015-12-07 23:45:25 +00:00
|
|
|
* Copyright (C) 2012, 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
|
2012-01-27 00:49:42 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
|
|
|
|
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
|
|
* AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
|
|
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
|
|
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
|
|
|
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2012-03-08 00:21:15 +11:00
|
|
|
/* $Id$ */
|
2012-01-27 00:49:42 +00:00
|
|
|
|
|
|
|
/*! \file */
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <atf-c.h>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <dns/db.h>
|
|
|
|
#include <dns/nsec3.h>
|
|
|
|
|
|
|
|
#include "dnstest.h"
|
|
|
|
|
2014-01-20 16:08:09 -08:00
|
|
|
#if defined(OPENSSL) || defined(PKCS11CRYPTO)
|
2012-01-27 00:49:42 +00:00
|
|
|
/*
|
|
|
|
* Helper functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
|
|
|
iteration_test(const char* file, unsigned int expected) {
|
|
|
|
isc_result_t result;
|
|
|
|
dns_db_t *db = NULL;
|
|
|
|
unsigned int iterations;
|
|
|
|
|
|
|
|
result = dns_test_loaddb(&db, dns_dbtype_zone, "test", file);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
result = dns_nsec3_maxiterations(db, NULL, mctx, &iterations);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2015-12-07 17:52:37 +11:00
|
|
|
ATF_CHECK_EQ(iterations, expected);
|
2012-01-27 00:49:42 +00:00
|
|
|
|
|
|
|
dns_db_detach(&db);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Individual unit tests
|
|
|
|
*/
|
|
|
|
|
|
|
|
ATF_TC(max_iterations);
|
|
|
|
ATF_TC_HEAD(max_iterations, tc) {
|
|
|
|
atf_tc_set_md_var(tc, "descr", "check that appropriate max iterations "
|
|
|
|
" is returned for different key size mixes");
|
|
|
|
}
|
|
|
|
ATF_TC_BODY(max_iterations, tc) {
|
2015-12-07 17:52:37 +11:00
|
|
|
isc_result_t result;
|
2012-01-27 00:49:42 +00:00
|
|
|
|
|
|
|
UNUSED(tc);
|
|
|
|
|
2015-12-07 17:52:37 +11:00
|
|
|
result = dns_test_begin(NULL, ISC_FALSE);
|
|
|
|
ATF_REQUIRE_EQ(result, ISC_R_SUCCESS);
|
|
|
|
|
2012-01-27 00:49:42 +00:00
|
|
|
iteration_test("testdata/nsec3/1024.db", 150);
|
|
|
|
iteration_test("testdata/nsec3/2048.db", 500);
|
|
|
|
iteration_test("testdata/nsec3/4096.db", 2500);
|
|
|
|
iteration_test("testdata/nsec3/min-1024.db", 150);
|
|
|
|
iteration_test("testdata/nsec3/min-2048.db", 500);
|
2015-12-07 17:52:37 +11:00
|
|
|
|
|
|
|
dns_test_end();
|
2012-01-27 00:49:42 +00:00
|
|
|
}
|
2014-01-20 16:08:09 -08:00
|
|
|
#else
|
|
|
|
ATF_TC(untested);
|
|
|
|
ATF_TC_HEAD(untested, tc) {
|
|
|
|
atf_tc_set_md_var(tc, "descr", "skipping nsec3 test");
|
|
|
|
}
|
|
|
|
ATF_TC_BODY(untested, tc) {
|
|
|
|
UNUSED(tc);
|
|
|
|
atf_tc_skip("DNSSEC not available");
|
|
|
|
}
|
|
|
|
#endif
|
2012-01-27 00:49:42 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Main
|
|
|
|
*/
|
|
|
|
ATF_TP_ADD_TCS(tp) {
|
2014-01-20 16:08:09 -08:00
|
|
|
#if defined(OPENSSL) || defined(PKCS11CRYPTO)
|
2012-01-27 00:49:42 +00:00
|
|
|
ATF_TP_ADD_TC(tp, max_iterations);
|
2014-01-20 16:08:09 -08:00
|
|
|
#else
|
|
|
|
ATF_TP_ADD_TC(tp, untested);
|
|
|
|
#endif
|
2012-01-27 00:49:42 +00:00
|
|
|
|
|
|
|
return (atf_no_error());
|
|
|
|
}
|
|
|
|
|