2004-06-17 08:32:45 +02:00
|
|
|
# $OpenBSD: multiplex.sh,v 1.4 2004/06/17 06:00:05 dtucker Exp $
|
2004-06-16 12:22:22 +02:00
|
|
|
# Placed in the Public Domain.
|
|
|
|
|
|
|
|
CTL=$OBJ/ctl-sock
|
|
|
|
|
|
|
|
tid="connection multiplexing"
|
|
|
|
|
2004-06-17 08:32:45 +02:00
|
|
|
DATA=/bin/ls
|
|
|
|
COPY=$OBJ/ls.copy
|
|
|
|
|
2004-06-16 12:22:22 +02:00
|
|
|
start_sshd
|
|
|
|
|
|
|
|
trace "start master, fork to background"
|
|
|
|
${SSH} -2 -MS$CTL -F $OBJ/ssh_config -f somehost sleep 60
|
|
|
|
|
2004-06-17 08:32:45 +02:00
|
|
|
rm -f ${COPY}
|
2004-06-16 12:22:22 +02:00
|
|
|
trace "ssh transfer over multiplexed connection and check result"
|
2004-06-17 08:32:45 +02:00
|
|
|
${SSH} -S$CTL otherhost cat ${DATA} > ${COPY}
|
|
|
|
test -f ${COPY} || fail "failed copy ${DATA}"
|
|
|
|
cmp ${DATA} ${COPY} || fail "corrupted copy of ${DATA}"
|
2004-06-16 12:22:22 +02:00
|
|
|
|
2004-06-17 08:32:45 +02:00
|
|
|
rm -f ${COPY}
|
2004-06-16 12:22:22 +02:00
|
|
|
trace "ssh transfer over multiplexed connection and check result"
|
2004-06-17 08:32:45 +02:00
|
|
|
${SSH} -S $CTL otherhost cat ${DATA} > ${COPY}
|
|
|
|
test -f ${COPY} || fail "failed copy ${DATA}"
|
|
|
|
cmp ${DATA} ${COPY} || fail "corrupted copy of ${DATA}"
|
2004-06-16 12:22:22 +02:00
|
|
|
|
2004-06-17 08:32:45 +02:00
|
|
|
rm -f ${COPY}
|
2004-06-16 12:22:22 +02:00
|
|
|
trace "sftp transfer over multiplexed connection and check result"
|
2004-06-17 08:32:45 +02:00
|
|
|
echo "get ${DATA} ${COPY}" | \
|
2004-06-16 15:23:50 +02:00
|
|
|
${SFTP} -oControlPath=$CTL otherhost >/dev/null 2>&1
|
2004-06-17 08:32:45 +02:00
|
|
|
test -f ${COPY} || fail "failed copy ${DATA}"
|
|
|
|
cmp ${DATA} ${COPY} || fail "corrupted copy of ${DATA}"
|
2004-06-16 12:22:22 +02:00
|
|
|
|
2004-06-17 08:32:45 +02:00
|
|
|
rm -f ${COPY}
|
2004-06-16 12:22:22 +02:00
|
|
|
trace "scp transfer over multiplexed connection and check result"
|
2004-06-17 08:32:45 +02:00
|
|
|
${SCP} -oControlPath=$CTL otherhost:${DATA} ${COPY} >/dev/null 2>&1
|
|
|
|
test -f ${COPY} || fail "failed copy ${DATA}"
|
|
|
|
cmp ${DATA} ${COPY} || fail "corrupted copy of ${DATA}"
|
2004-06-16 12:22:22 +02:00
|
|
|
|
2004-06-17 08:32:45 +02:00
|
|
|
rm -f ${COPY}
|
2004-06-17 08:27:43 +02:00
|
|
|
|
2004-06-16 12:22:22 +02:00
|
|
|
for s in 0 1 4 5 44; do
|
|
|
|
trace "exit status $s over multiplexed connection"
|
|
|
|
verbose "test $tid: status $s"
|
|
|
|
${SSH} -S $CTL otherhost exit $s
|
|
|
|
r=$?
|
|
|
|
if [ $r -ne $s ]; then
|
|
|
|
fail "exit code mismatch for protocol $p: $r != $s"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# same with early close of stdout/err
|
|
|
|
trace "exit status $s with early close over multiplexed connection"
|
|
|
|
${SSH} -S $CTL -n otherhost \
|
|
|
|
exec sh -c \'"sleep 2; exec > /dev/null 2>&1; sleep 3; exit $s"\'
|
|
|
|
r=$?
|
|
|
|
if [ $r -ne $s ]; then
|
|
|
|
fail "exit code (with sleep) mismatch for protocol $p: $r != $s"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2004-06-17 08:27:43 +02:00
|
|
|
# kill master, remove control socket. ssh -MS will exit when sleep exits
|
|
|
|
$SUDO kill `cat $PIDFILE`
|
|
|
|
rm -f $CTL
|