freebsd-dev/crypto/openssh/regress/reexec.sh

74 lines
1.2 KiB
Bash
Raw Normal View History

2015-07-02 13:15:34 +00:00
# $OpenBSD: reexec.sh,v 1.8 2015/03/03 22:35:19 markus Exp $
2004-10-28 16:03:53 +00:00
# Placed in the Public Domain.
tid="reexec tests"
2013-09-18 17:27:38 +00:00
SSHD_ORIG=$SSHD
SSHD_COPY=$OBJ/sshd
2004-10-28 16:03:53 +00:00
# Start a sshd and then delete it
2005-06-05 15:40:50 +00:00
start_sshd_copy ()
2004-10-28 16:03:53 +00:00
{
cp $SSHD_ORIG $SSHD_COPY
SSHD=$SSHD_COPY
start_sshd
SSHD=$SSHD_ORIG
}
2005-06-05 15:40:50 +00:00
# Do basic copy tests
copy_tests ()
{
rm -f ${COPY}
2015-07-02 13:15:34 +00:00
for p in ${SSH_PROTOCOLS} ; do
2005-06-05 15:40:50 +00:00
verbose "$tid: proto $p"
${SSH} -nqo "Protocol=$p" -F $OBJ/ssh_config somehost \
cat ${DATA} > ${COPY}
if [ $? -ne 0 ]; then
fail "ssh cat $DATA failed"
fi
cmp ${DATA} ${COPY} || fail "corrupted copy"
rm -f ${COPY}
done
}
2004-10-28 16:03:53 +00:00
verbose "test config passing"
2005-06-05 15:40:50 +00:00
cp $OBJ/sshd_config $OBJ/sshd_config.orig
2004-10-28 16:03:53 +00:00
start_sshd
echo "InvalidXXX=no" >> $OBJ/sshd_config
2005-06-05 15:40:50 +00:00
copy_tests
2004-10-28 16:03:53 +00:00
2010-11-08 10:45:44 +00:00
$SUDO kill `$SUDO cat $PIDFILE`
2004-10-28 16:03:53 +00:00
rm -f $PIDFILE
cp $OBJ/sshd_config.orig $OBJ/sshd_config
2012-08-29 15:55:54 +00:00
# cygwin can't fork a deleted binary
if [ "$os" != "cygwin" ]; then
2004-10-28 16:03:53 +00:00
verbose "test reexec fallback"
2005-06-05 15:40:50 +00:00
start_sshd_copy
rm -f $SSHD_COPY
copy_tests
2004-10-28 16:03:53 +00:00
2010-11-08 10:45:44 +00:00
$SUDO kill `$SUDO cat $PIDFILE`
2004-10-28 16:03:53 +00:00
rm -f $PIDFILE
verbose "test reexec fallback without privsep"
cp $OBJ/sshd_config.orig $OBJ/sshd_config
echo "UsePrivilegeSeparation=no" >> $OBJ/sshd_config
2005-06-05 15:40:50 +00:00
start_sshd_copy
rm -f $SSHD_COPY
copy_tests
2004-10-28 16:03:53 +00:00
2010-11-08 10:45:44 +00:00
$SUDO kill `$SUDO cat $PIDFILE`
2004-10-28 16:03:53 +00:00
rm -f $PIDFILE
2012-08-29 15:55:54 +00:00
fi