1 # $NetBSD: t_opencrypto.sh,v 1.5 2015/03/16 16:42:27 prlw1 Exp $
3 # Copyright (c) 2014 The NetBSD Foundation, Inc.
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
9 # 1. Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer.
11 # 2. Redistributions in binary form must reproduce the above copyright
12 # notice, this list of conditions and the following disclaimer in the
13 # documentation and/or other materials provided with the distribution.
15 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
16 # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
17 # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
19 # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 # POSSIBILITY OF SUCH DAMAGE.
28 # Start a rumpserver, load required modules, and set requires sysctl vars
31 rump_libs
="-l rumpvfs -l rumpdev -l rumpdev_opencrypto"
32 rump_libs
="${rump_libs} -l rumpkern_z -l rumpkern_crypto"
34 rump_server
${rump_libs} ${RUMP_SERVER} || \
37 rump.sysctl
-w kern.cryptodevallowsoft
=-1 && \
48 atf_set require.progs rump_server rump.sysctl rump.halt
54 start_rump || atf_skip
"Cannot set-up rump environment"
55 LD_PRELOAD
="/usr/lib/librumphijack.so" ; export LD_PRELOAD
56 RUMPHIJACK
="blanket=/dev/crypto" ; export RUMPHIJACK
61 if [ $status -ne 0 ] ; then
62 atf_fail
"$1 returned non-zero status, check output/error"
72 atf_test_case arc4 cleanup
74 common_head
"Test ARC4 crypto"
78 atf_skip
"ARC4 not implemented by swcrypto"
86 atf_test_case camellia cleanup
88 common_head
"Test CAMELLIA_CBC crypto"
92 common_body h_camellia
99 atf_test_case cbcdes cleanup
101 common_head
"Test DES_CBC crypto"
112 atf_test_case comp cleanup
114 common_head
"Test GZIP_COMP Compression"
125 atf_test_case comp_deflate cleanup
126 comp_deflate_head
() {
127 common_head
"Test DEFLATE_COMP Compression"
130 comp_deflate_body
() {
131 common_body h_comp_zlib
134 comp_deflate_cleanup
() {
138 atf_test_case comp_zlib_rnd cleanup
139 comp_zlib_rnd_head
() {
140 common_head
"Test DEFLATE_COMP Compression with random data"
143 comp_zlib_rnd_body
() {
144 common_body h_comp_zlib_rnd
147 comp_zlib_rnd_cleanup
() {
151 atf_test_case aesctr1 cleanup
153 common_head
"Test AES_CTR crypto"
157 common_body h_aesctr1
164 atf_test_case aesctr2 cleanup
166 common_head
"Test AES_CTR crypto"
170 common_body h_aesctr2
177 atf_test_case gcm cleanup
179 common_head
"Test AES_GCM_16 crypto"
190 atf_test_case md5 cleanup
192 common_head
"Test MD5 crypto"
203 atf_test_case md5_hmac cleanup
205 common_head
"Test MD5_HMAC crypto"
209 common_body h_md5hmac
216 atf_test_case null cleanup
218 common_head
"Test NULL_CBC crypto"
229 atf_test_case sha1_hmac cleanup
231 common_head
"Test SHA1_HMAC crypto"
235 common_body h_sha1hmac
238 sha1_hmac_cleanup
() {
242 atf_test_case xcbcmac cleanup
244 common_head
"Test XCBC_MAC_96 crypto"
248 common_body h_xcbcmac
255 atf_init_test_cases
() {
256 RUMP_SERVER
="unix://t_opencrypto_socket" ; export RUMP_SERVER
258 atf_add_test_case arc4
259 atf_add_test_case camellia
260 atf_add_test_case cbcdes
261 atf_add_test_case comp
262 atf_add_test_case comp_deflate
263 atf_add_test_case comp_zlib_rnd
264 atf_add_test_case aesctr1
265 atf_add_test_case aesctr2
266 atf_add_test_case gcm
267 atf_add_test_case md5
268 atf_add_test_case md5_hmac
269 atf_add_test_case null
270 atf_add_test_case sha1_hmac
271 atf_add_test_case xcbcmac