2012-12-03 00:06:37 +01:00
|
|
|
# $OpenBSD: multiplex.sh,v 1.17 2012/10/05 02:05:30 dtucker Exp $
|
2004-06-16 12:22:22 +02:00
|
|
|
# Placed in the Public Domain.
|
|
|
|
|
2005-04-25 09:01:26 +02:00
|
|
|
CTL=/tmp/openssh.regress.ctl-sock.$$
|
2004-06-16 12:22:22 +02:00
|
|
|
|
|
|
|
tid="connection multiplexing"
|
|
|
|
|
2011-01-17 06:17:09 +01:00
|
|
|
if config_defined DISABLE_FD_PASSING ; then
|
2004-08-29 09:09:34 +02:00
|
|
|
echo "skipped (not supported on this platform)"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2004-06-17 08:36:27 +02:00
|
|
|
DATA=/bin/ls${EXEEXT}
|
2004-06-17 08:32:45 +02:00
|
|
|
COPY=$OBJ/ls.copy
|
|
|
|
|
2012-10-05 04:04:10 +02:00
|
|
|
wait_for_mux_master_ready()
|
|
|
|
{
|
|
|
|
for i in 1 2 3 4 5; do
|
|
|
|
${SSH} -F $OBJ/ssh_config -S $CTL -Ocheck otherhost \
|
|
|
|
>/dev/null 2>&1 && return 0
|
|
|
|
sleep $i
|
|
|
|
done
|
|
|
|
fatal "mux master never becomes ready"
|
|
|
|
}
|
|
|
|
|
2004-06-16 12:22:22 +02:00
|
|
|
start_sshd
|
|
|
|
|
|
|
|
trace "start master, fork to background"
|
2004-12-06 13:12:15 +01:00
|
|
|
${SSH} -Nn2 -MS$CTL -F $OBJ/ssh_config -oSendEnv="_XXX_TEST" somehost &
|
|
|
|
MASTER_PID=$!
|
2012-10-05 04:04:10 +02:00
|
|
|
wait_for_mux_master_ready
|
2004-06-16 12:22:22 +02:00
|
|
|
|
2004-06-17 17:23:03 +02:00
|
|
|
verbose "test $tid: envpass"
|
|
|
|
trace "env passing over multiplexed connection"
|
2009-10-07 01:30:57 +02:00
|
|
|
_XXX_TEST=blah ${SSH} -F $OBJ/ssh_config -oSendEnv="_XXX_TEST" -S$CTL otherhost sh << 'EOF'
|
2004-06-22 05:38:56 +02:00
|
|
|
test X"$_XXX_TEST" = X"blah"
|
|
|
|
EOF
|
2004-06-17 17:23:03 +02:00
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
fail "environment not found"
|
|
|
|
fi
|
|
|
|
|
|
|
|
verbose "test $tid: transfer"
|
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"
|
2009-10-07 01:30:57 +02:00
|
|
|
${SSH} -F $OBJ/ssh_config -S$CTL otherhost cat ${DATA} > ${COPY}
|
2004-06-17 08:34:02 +02:00
|
|
|
test -f ${COPY} || fail "ssh -Sctl: failed copy ${DATA}"
|
|
|
|
cmp ${DATA} ${COPY} || fail "ssh -Sctl: 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"
|
2009-10-07 01:30:57 +02:00
|
|
|
${SSH} -F $OBJ/ssh_config -S $CTL otherhost cat ${DATA} > ${COPY}
|
2004-06-17 08:34:02 +02:00
|
|
|
test -f ${COPY} || fail "ssh -S ctl: failed copy ${DATA}"
|
|
|
|
cmp ${DATA} ${COPY} || fail "ssh -S ctl: 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}" | \
|
2012-06-30 07:03:28 +02:00
|
|
|
${SFTP} -S ${SSH} -F $OBJ/ssh_config -oControlPath=$CTL otherhost >>$TEST_SSH_LOGFILE 2>&1
|
2004-06-17 08:34:02 +02:00
|
|
|
test -f ${COPY} || fail "sftp: failed copy ${DATA}"
|
|
|
|
cmp ${DATA} ${COPY} || fail "sftp: 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"
|
2012-06-30 07:03:28 +02:00
|
|
|
${SCP} -S ${SSH} -F $OBJ/ssh_config -oControlPath=$CTL otherhost:${DATA} ${COPY} >>$TEST_SSH_LOGFILE 2>&1
|
2004-06-17 08:34:02 +02:00
|
|
|
test -f ${COPY} || fail "scp: failed copy ${DATA}"
|
|
|
|
cmp ${DATA} ${COPY} || fail "scp: 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"
|
2009-10-07 01:30:57 +02:00
|
|
|
${SSH} -F $OBJ/ssh_config -S $CTL otherhost exit $s
|
2004-06-16 12:22:22 +02:00
|
|
|
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"
|
2009-10-07 01:30:57 +02:00
|
|
|
${SSH} -F $OBJ/ssh_config -S $CTL -n otherhost \
|
2004-06-16 12:22:22 +02:00
|
|
|
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
|
|
|
|
|
2012-10-05 03:45:39 +02:00
|
|
|
verbose "test $tid: cmd check"
|
|
|
|
${SSH} -F $OBJ/ssh_config -S $CTL -Ocheck otherhost >>$TEST_SSH_LOGFILE 2>&1 \
|
|
|
|
|| fail "check command failed"
|
2004-12-06 13:12:15 +01:00
|
|
|
|
2012-10-05 03:45:39 +02:00
|
|
|
verbose "test $tid: cmd exit"
|
|
|
|
${SSH} -F $OBJ/ssh_config -S $CTL -Oexit otherhost >>$TEST_SSH_LOGFILE 2>&1 \
|
|
|
|
|| fail "send exit command failed"
|
2004-12-06 13:12:15 +01:00
|
|
|
|
|
|
|
# Wait for master to exit
|
2012-10-05 04:04:10 +02:00
|
|
|
wait $MASTER_PID
|
2012-12-03 00:06:37 +01:00
|
|
|
kill -0 $MASTER_PID >/dev/null 2>&1 && fail "exit command failed"
|
2012-10-05 03:43:57 +02:00
|
|
|
|
|
|
|
# Restart master and test -O stop command with master using -N
|
2012-10-05 04:04:10 +02:00
|
|
|
verbose "test $tid: cmd stop"
|
|
|
|
trace "restart master, fork to background"
|
2012-10-05 03:43:57 +02:00
|
|
|
${SSH} -Nn2 -MS$CTL -F $OBJ/ssh_config -oSendEnv="_XXX_TEST" somehost &
|
|
|
|
MASTER_PID=$!
|
2012-10-05 04:04:10 +02:00
|
|
|
wait_for_mux_master_ready
|
|
|
|
|
|
|
|
# start a long-running command then immediately request a stop
|
|
|
|
${SSH} -F $OBJ/ssh_config -S $CTL otherhost "sleep 10; exit 0" \
|
|
|
|
>>$TEST_SSH_LOGFILE 2>&1 &
|
2012-10-05 03:45:39 +02:00
|
|
|
SLEEP_PID=$!
|
|
|
|
${SSH} -F $OBJ/ssh_config -S $CTL -Ostop otherhost >>$TEST_SSH_LOGFILE 2>&1 \
|
|
|
|
|| fail "send stop command failed"
|
2012-10-05 04:04:10 +02:00
|
|
|
|
|
|
|
# wait until both long-running command and master have exited.
|
2012-10-05 03:45:39 +02:00
|
|
|
wait $SLEEP_PID
|
2012-10-05 04:04:10 +02:00
|
|
|
[ $! != 0 ] || fail "waiting for concurrent command"
|
|
|
|
wait $MASTER_PID
|
|
|
|
[ $! != 0 ] || fail "waiting for master stop"
|
2012-12-03 00:06:37 +01:00
|
|
|
kill -0 $MASTER_PID >/dev/null 2>&1 && fail "stop command failed"
|