2013-05-17 07:32:29 +02:00
|
|
|
# $OpenBSD: rekey.sh,v 1.8 2013/05/17 04:29:14 dtucker Exp $
|
2003-06-18 14:18:57 +02:00
|
|
|
# Placed in the Public Domain.
|
|
|
|
|
2013-05-17 01:45:12 +02:00
|
|
|
tid="rekey"
|
2003-06-18 14:18:57 +02:00
|
|
|
|
2013-05-17 01:19:10 +02:00
|
|
|
LOG=${TEST_SSH_LOGFILE}
|
2003-06-18 14:18:57 +02:00
|
|
|
|
2013-05-17 07:32:29 +02:00
|
|
|
rm -f ${LOG}
|
2003-06-18 14:18:57 +02:00
|
|
|
|
|
|
|
for s in 16 1k 128k 256k; do
|
2013-05-17 01:44:20 +02:00
|
|
|
verbose "client rekeylimit ${s}"
|
2013-05-17 01:42:34 +02:00
|
|
|
rm -f ${COPY} ${LOG}
|
2003-06-18 14:18:57 +02:00
|
|
|
cat $DATA | \
|
|
|
|
${SSH} -oCompression=no -oRekeyLimit=$s \
|
2013-05-17 01:31:39 +02:00
|
|
|
-v -F $OBJ/ssh_proxy somehost "cat > ${COPY}"
|
2003-06-18 14:18:57 +02:00
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
fail "ssh failed"
|
|
|
|
fi
|
|
|
|
cmp $DATA ${COPY} || fail "corrupted copy"
|
|
|
|
n=`grep 'NEWKEYS sent' ${LOG} | wc -l`
|
|
|
|
n=`expr $n - 1`
|
|
|
|
trace "$n rekeying(s)"
|
|
|
|
if [ $n -lt 1 ]; then
|
|
|
|
fail "no rekeying occured"
|
|
|
|
fi
|
|
|
|
done
|
2013-05-17 01:42:34 +02:00
|
|
|
|
2013-05-17 01:43:33 +02:00
|
|
|
for s in 5 10; do
|
2013-05-17 01:44:20 +02:00
|
|
|
verbose "client rekeylimit default ${s}"
|
2013-05-17 01:42:34 +02:00
|
|
|
rm -f ${COPY} ${LOG}
|
|
|
|
cat $DATA | \
|
|
|
|
${SSH} -oCompression=no -oRekeyLimit="default $s" -F \
|
2013-05-17 01:43:33 +02:00
|
|
|
$OBJ/ssh_proxy somehost "cat >${COPY};sleep $s;sleep 3"
|
2013-05-17 01:42:34 +02:00
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
fail "ssh failed"
|
|
|
|
fi
|
|
|
|
cmp $DATA ${COPY} || fail "corrupted copy"
|
|
|
|
n=`grep 'NEWKEYS sent' ${LOG} | wc -l`
|
|
|
|
n=`expr $n - 1`
|
|
|
|
trace "$n rekeying(s)"
|
|
|
|
if [ $n -lt 1 ]; then
|
|
|
|
fail "no rekeying occured"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2013-05-17 01:43:33 +02:00
|
|
|
for s in 5 10; do
|
2013-05-17 01:44:20 +02:00
|
|
|
verbose "client rekeylimit default ${s} no data"
|
2013-05-17 01:43:33 +02:00
|
|
|
rm -f ${COPY} ${LOG}
|
|
|
|
${SSH} -oCompression=no -oRekeyLimit="default $s" -F \
|
|
|
|
$OBJ/ssh_proxy somehost "sleep $s;sleep 3"
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
fail "ssh failed"
|
|
|
|
fi
|
|
|
|
n=`grep 'NEWKEYS sent' ${LOG} | wc -l`
|
|
|
|
n=`expr $n - 1`
|
|
|
|
trace "$n rekeying(s)"
|
|
|
|
if [ $n -lt 1 ]; then
|
|
|
|
fail "no rekeying occured"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2013-05-17 01:44:20 +02:00
|
|
|
echo "rekeylimit default 5" >>$OBJ/sshd_proxy
|
|
|
|
for s in 5 10; do
|
|
|
|
verbose "server rekeylimit default ${s} no data"
|
|
|
|
rm -f ${COPY} ${LOG}
|
|
|
|
${SSH} -oCompression=no -F $OBJ/ssh_proxy somehost "sleep $s;sleep 3"
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
fail "ssh failed"
|
|
|
|
fi
|
|
|
|
n=`grep 'NEWKEYS sent' ${LOG} | wc -l`
|
|
|
|
n=`expr $n - 1`
|
|
|
|
trace "$n rekeying(s)"
|
|
|
|
if [ $n -lt 1 ]; then
|
|
|
|
fail "no rekeying occured"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2013-05-17 01:45:12 +02:00
|
|
|
verbose "rekeylimit parsing"
|
|
|
|
for size in 16 1k 1K 1m 1M 1g 1G; do
|
|
|
|
for time in 1 1m 1M 1h 1H 1d 1D 1w 1W; do
|
|
|
|
case $size in
|
|
|
|
16) bytes=16 ;;
|
|
|
|
1k|1K) bytes=1024 ;;
|
|
|
|
1m|1M) bytes=1048576 ;;
|
|
|
|
1g|1G) bytes=1073741824 ;;
|
|
|
|
esac
|
|
|
|
case $time in
|
|
|
|
1) seconds=1 ;;
|
|
|
|
1m|1M) seconds=60 ;;
|
|
|
|
1h|1H) seconds=3600 ;;
|
|
|
|
1d|1D) seconds=86400 ;;
|
|
|
|
1w|1W) seconds=604800 ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
b=`$SUDO ${SSHD} -T -o "rekeylimit $size $time" -f $OBJ/sshd_proxy | \
|
|
|
|
awk '/rekeylimit/{print $2}'`
|
|
|
|
s=`$SUDO ${SSHD} -T -o "rekeylimit $size $time" -f $OBJ/sshd_proxy | \
|
|
|
|
awk '/rekeylimit/{print $3}'`
|
|
|
|
|
|
|
|
if [ "$bytes" != "$b" ]; then
|
|
|
|
fatal "rekeylimit size: expected $bytes got $b"
|
|
|
|
fi
|
|
|
|
if [ "$seconds" != "$s" ]; then
|
|
|
|
fatal "rekeylimit time: expected $time got $s"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
2013-05-17 01:19:10 +02:00
|
|
|
rm -f ${COPY} ${DATA}
|