aboutsummaryrefslogtreecommitdiff
path: root/tools/regression/geom_eli/init.t
blob: 5e4775c846bb3b240c607c54fee14dbd118e21a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/sh
# $FreeBSD$

base=`basename $0`
no=45
sectors=100
rnd=`mktemp /tmp/$base.XXXXXX` || exit 1
keyfile=`mktemp /tmp/$base.XXXXXX` || exit 1
mdconfig -a -t malloc -s `expr $sectors + 1` -u $no || exit 1

echo "1..36"

i=1
for cipher in aes:0 aes:128 aes:192 aes:256 \
    3des:0 3des:192 \
    blowfish:0 blowfish:128 blowfish:160 blowfish:192 blowfish:224 \
    blowfish:256 blowfish:288 blowfish:320 blowfish:352 blowfish:384 \
    blowfish:416 blowfish:448; do
	algo=${cipher%%:*}
	keylen=${cipher##*:}

	dd if=/dev/random of=${rnd} bs=512 count=${sectors} >/dev/null 2>&1
	dd if=/dev/random of=${keyfile} bs=512 count=16 >/dev/null 2>&1

	geli init -a $algo -l $keylen -P -K $keyfile md${no}
	geli attach -p -k $keyfile md${no}

	dd if=${rnd} of=/dev/md${no}.eli bs=512 count=${sectors} 2>/dev/null

	md_rnd=`dd if=${rnd} bs=512 count=${sectors} 2>/dev/null | md5`
	md_ddev=`dd if=/dev/md${no}.eli bs=512 count=${sectors} 2>/dev/null | md5`
	md_edev=`dd if=/dev/md${no} bs=512 count=${sectors} 2>/dev/null | md5`

	if [ ${md_rnd} = ${md_ddev} ]; then
		echo "ok $i - ${cipher}"
	else
		echo "not ok $i - ${cipher}"
	fi
	i=$((i+1))
	if [ ${md_rnd} != ${md_edev} ]; then
		echo "ok $i - ${cipher}"
	else
		echo "not ok $i - ${cipher}"
	fi
	i=$((i+1))

	geli detach md${no}
done

mdconfig -d -u $no
rm -f $rnd $keyfile