2011-06-03 06:18:17 +02:00
|
|
|
# $OpenBSD: dynamic-forward.sh,v 1.8 2011/05/31 02:03:34 dtucker Exp $
|
2003-06-28 04:42:09 +02:00
|
|
|
# Placed in the Public Domain.
|
|
|
|
|
|
|
|
tid="dynamic forwarding"
|
|
|
|
|
2004-06-23 01:28:20 +02:00
|
|
|
FWDPORT=`expr $PORT + 1`
|
|
|
|
|
2003-09-07 01:28:03 +02:00
|
|
|
DATA=/bin/ls${EXEEXT}
|
2003-06-28 04:42:09 +02:00
|
|
|
|
2004-02-29 10:37:06 +01:00
|
|
|
if have_prog nc && nc -h 2>&1 | grep "proxy address" >/dev/null; then
|
2003-06-28 04:42:09 +02:00
|
|
|
proxycmd="nc -x 127.0.0.1:$FWDPORT -X"
|
2003-09-12 07:32:17 +02:00
|
|
|
elif have_prog connect; then
|
2003-06-28 04:42:09 +02:00
|
|
|
proxycmd="connect -S 127.0.0.1:$FWDPORT -"
|
|
|
|
else
|
|
|
|
echo "skipped (no suitable ProxyCommand found)"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
trace "will use ProxyCommand $proxycmd"
|
|
|
|
|
|
|
|
start_sshd
|
|
|
|
|
|
|
|
for p in 1 2; do
|
|
|
|
trace "start dynamic forwarding, fork to background"
|
2011-06-03 06:18:17 +02:00
|
|
|
${SSH} -$p -F $OBJ/ssh_config -f -D $FWDPORT -q \
|
|
|
|
-oExitOnForwardFailure=yes somehost \
|
2011-06-03 06:17:27 +02:00
|
|
|
exec sh -c \'"echo \$\$ > $OBJ/remote_pid; exec sleep 444"\'
|
2003-06-28 04:42:09 +02:00
|
|
|
|
2003-07-03 12:26:04 +02:00
|
|
|
for s in 4 5; do
|
|
|
|
for h in 127.0.0.1 localhost; do
|
|
|
|
trace "testing ssh protocol $p socks version $s host $h"
|
|
|
|
${SSH} -F $OBJ/ssh_config \
|
|
|
|
-o "ProxyCommand ${proxycmd}${s} $h $PORT" \
|
2003-09-07 01:28:03 +02:00
|
|
|
somehost cat $DATA > $OBJ/ls.copy
|
|
|
|
test -f $OBJ/ls.copy || fail "failed copy $DATA"
|
|
|
|
cmp $DATA $OBJ/ls.copy || fail "corrupted copy of $DATA"
|
2003-07-03 12:26:04 +02:00
|
|
|
done
|
|
|
|
done
|
2003-06-28 04:42:09 +02:00
|
|
|
|
2003-07-03 12:26:04 +02:00
|
|
|
if [ -f $OBJ/remote_pid ]; then
|
|
|
|
remote=`cat $OBJ/remote_pid`
|
|
|
|
trace "terminate remote shell, pid $remote"
|
|
|
|
if [ $remote -gt 1 ]; then
|
|
|
|
kill -HUP $remote
|
|
|
|
fi
|
2011-06-03 06:18:17 +02:00
|
|
|
sleep 1
|
2003-07-03 12:26:04 +02:00
|
|
|
else
|
|
|
|
fail "no pid file: $OBJ/remote_pid"
|
|
|
|
fi
|
2003-06-28 04:42:09 +02:00
|
|
|
done
|