2018-04-06 06:18:35 +02:00
|
|
|
# $OpenBSD: sshcfgparse.sh,v 1.3 2018/04/06 04:18:35 dtucker Exp $
|
2016-06-03 06:10:41 +02:00
|
|
|
# Placed in the Public Domain.
|
|
|
|
|
|
|
|
tid="ssh config parse"
|
|
|
|
|
|
|
|
verbose "reparse minimal config"
|
|
|
|
(${SSH} -G -F $OBJ/ssh_config somehost >$OBJ/ssh_config.1 &&
|
|
|
|
${SSH} -G -F $OBJ/ssh_config.1 somehost >$OBJ/ssh_config.2 &&
|
|
|
|
diff $OBJ/ssh_config.1 $OBJ/ssh_config.2) || fail "reparse minimal config"
|
|
|
|
|
|
|
|
verbose "ssh -W opts"
|
|
|
|
f=`${SSH} -GF $OBJ/ssh_config host | awk '/exitonforwardfailure/{print $2}'`
|
2016-07-14 03:24:21 +02:00
|
|
|
test "$f" = "no" || fail "exitonforwardfailure default"
|
2016-06-03 06:10:41 +02:00
|
|
|
f=`${SSH} -GF $OBJ/ssh_config -W a:1 h | awk '/exitonforwardfailure/{print $2}'`
|
2016-07-14 03:24:21 +02:00
|
|
|
test "$f" = "yes" || fail "exitonforwardfailure enable"
|
2016-06-03 06:10:41 +02:00
|
|
|
f=`${SSH} -GF $OBJ/ssh_config -W a:1 -o exitonforwardfailure=no h | \
|
|
|
|
awk '/exitonforwardfailure/{print $2}'`
|
2016-07-14 03:24:21 +02:00
|
|
|
test "$f" = "no" || fail "exitonforwardfailure override"
|
2016-06-03 06:10:41 +02:00
|
|
|
|
|
|
|
f=`${SSH} -GF $OBJ/ssh_config host | awk '/clearallforwardings/{print $2}'`
|
2016-07-14 03:24:21 +02:00
|
|
|
test "$f" = "no" || fail "clearallforwardings default"
|
2016-06-03 06:10:41 +02:00
|
|
|
f=`${SSH} -GF $OBJ/ssh_config -W a:1 h | awk '/clearallforwardings/{print $2}'`
|
2016-07-14 03:24:21 +02:00
|
|
|
test "$f" = "yes" || fail "clearallforwardings enable"
|
2016-06-03 06:10:41 +02:00
|
|
|
f=`${SSH} -GF $OBJ/ssh_config -W a:1 -o clearallforwardings=no h | \
|
|
|
|
awk '/clearallforwardings/{print $2}'`
|
2016-07-14 03:24:21 +02:00
|
|
|
test "$f" = "no" || fail "clearallforwardings override"
|
2016-06-03 06:10:41 +02:00
|
|
|
|
2018-04-06 06:18:35 +02:00
|
|
|
verbose "user first match"
|
|
|
|
user=`awk '$1=="User" {print $2}' $OBJ/ssh_config`
|
|
|
|
f=`${SSH} -GF $OBJ/ssh_config host | awk '/^user /{print $2}'`
|
|
|
|
test "$f" = "$user" || fail "user from config, expected '$user' got '$f'"
|
|
|
|
f=`${SSH} -GF $OBJ/ssh_config -o user=foo -l bar baz@host | awk '/^user /{print $2}'`
|
|
|
|
test "$f" = "foo" || fail "user first match -oUser, expected 'foo' got '$f' "
|
|
|
|
f=`${SSH} -GF $OBJ/ssh_config -lbar baz@host user=foo baz@host | awk '/^user /{print $2}'`
|
|
|
|
test "$f" = "bar" || fail "user first match -l, expected 'bar' got '$f'"
|
|
|
|
f=`${SSH} -GF $OBJ/ssh_config baz@host -o user=foo -l bar baz@host | awk '/^user /{print $2}'`
|
|
|
|
test "$f" = "baz" || fail "user first match user@host, expected 'baz' got '$f'"
|
|
|
|
|
2016-06-03 06:10:41 +02:00
|
|
|
# cleanup
|
|
|
|
rm -f $OBJ/ssh_config.[012]
|