2014-12-12 19:56:36 +00:00
|
|
|
#!/bin/sh -
|
|
|
|
#
|
|
|
|
# Copyright (c) 2014 The FreeBSD Foundation
|
|
|
|
# All rights reserved.
|
2019-05-21 04:11:16 +00:00
|
|
|
# Copyright 2019 Enji Cooper
|
2014-12-12 19:56:36 +00:00
|
|
|
#
|
|
|
|
# This software was developed by John-Mark Gurney under
|
|
|
|
# the sponsorship from the FreeBSD Foundation.
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
# SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
2020-07-20 12:47:15 +00:00
|
|
|
: ${PYTHON=python3}
|
2014-12-12 19:56:36 +00:00
|
|
|
|
|
|
|
if [ ! -d /usr/local/share/nist-kat ]; then
|
2019-05-10 00:03:32 +00:00
|
|
|
echo "1..0 # SKIP: nist-kat package not installed for test vectors"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! $PYTHON -c "from dpkt import dpkt"; then
|
|
|
|
echo "1..0 # SKIP: py-dpkt package not installed"
|
2014-12-12 19:56:36 +00:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2017-06-01 19:58:40 +00:00
|
|
|
loaded_modules=
|
|
|
|
cleanup_tests()
|
|
|
|
{
|
|
|
|
trap - EXIT INT TERM
|
2014-12-12 19:56:36 +00:00
|
|
|
|
2017-06-01 19:58:40 +00:00
|
|
|
set +e
|
|
|
|
|
2019-05-10 00:03:32 +00:00
|
|
|
if [ -n "$oldcdas" ]; then
|
|
|
|
sysctl "$oldcdas" 2>/dev/null
|
|
|
|
fi
|
|
|
|
|
2017-06-01 19:58:40 +00:00
|
|
|
# Unload modules in reverse order
|
|
|
|
for loaded_module in $(echo $loaded_modules | tr ' ' '\n' | sort -r); do
|
|
|
|
kldunload $loaded_module
|
|
|
|
done
|
|
|
|
}
|
|
|
|
trap cleanup_tests EXIT INT TERM
|
|
|
|
|
2019-08-10 15:53:42 +00:00
|
|
|
cpu_type="$(uname -p)"
|
|
|
|
cpu_module=
|
|
|
|
|
|
|
|
case ${cpu_type} in
|
|
|
|
aarch64)
|
2020-12-04 21:12:17 +00:00
|
|
|
cpu_module="nexus/armv8crypto nexus/ossl"
|
2019-08-10 15:53:42 +00:00
|
|
|
;;
|
|
|
|
amd64|i386)
|
2020-10-30 19:53:16 +00:00
|
|
|
cpu_module="nexus/aesni nexus/ossl"
|
2019-08-10 15:53:42 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
for required_module in $cpu_module cryptodev; do
|
2017-06-01 19:58:40 +00:00
|
|
|
if ! kldstat -q -m $required_module; then
|
2019-05-10 00:03:32 +00:00
|
|
|
module_to_load=${required_module#nexus/}
|
|
|
|
if ! kldload ${module_to_load}; then
|
|
|
|
echo "1..0 # SKIP: could not load ${module_to_load}"
|
|
|
|
exit 0
|
|
|
|
fi
|
2017-06-01 19:58:40 +00:00
|
|
|
loaded_modules="$loaded_modules $required_module"
|
|
|
|
fi
|
|
|
|
done
|
2014-12-12 19:56:36 +00:00
|
|
|
|
2020-11-04 22:41:54 +00:00
|
|
|
cdas_sysctl=kern.crypto.allow_soft
|
2019-05-10 00:03:32 +00:00
|
|
|
if ! oldcdas=$(sysctl -e $cdas_sysctl); then
|
|
|
|
echo "1..0 # SKIP: could not resolve sysctl: $cdas_sysctl"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
if ! sysctl $cdas_sysctl=1; then
|
|
|
|
echo "1..0 # SKIP: could not enable /dev/crypto access via $cdas_sysctl sysctl."
|
|
|
|
exit 0
|
|
|
|
fi
|
2014-12-12 19:56:36 +00:00
|
|
|
|
2019-05-10 00:03:32 +00:00
|
|
|
echo "1..1"
|
2019-05-20 22:32:26 +00:00
|
|
|
if "$PYTHON" $(dirname $0)/cryptotest.py $CRYPTOTEST_ARGS; then
|
2019-05-10 00:03:32 +00:00
|
|
|
echo "ok 1"
|
|
|
|
else
|
|
|
|
echo "not ok 1"
|
|
|
|
fi
|