# -*-shell-script-*- # This should be sourced by bash (though we welcome changes to make it POSIX sh compliant) # Monkeysphere ssh-proxycommand subcommand # # The monkeysphere scripts are written by: # Jameson Rollins # Daniel Kahn Gillmor # # They are Copyright 2008-2009, and are all released under the GPL, # version 3 or later. # This is meant to be run as an ssh ProxyCommand to initiate a # monkeysphere known_hosts update before an ssh connection to host is # established. Can be added to ~/.ssh/config as follows: # ProxyCommand monkeysphere ssh-proxycommand %h %p ssh_proxycommand() { # "marginal case" ouput in the case that there is not a full # validation path to the host output_no_valid_key() { local sshKeyOffered local userID local type local validity local keyid local uidfpr local usage local sshKeyGPG local tmpkey local sshFingerprint local gpgSigOut userID="ssh://${HOSTP}" cat </dev/null | awk '{ print $2, $3 }') # FIXME: should we do any checks for failed keyscans, eg. host not # found? # get the gpg info for userid gpgOut=$(gpg --list-key --fixed-list-mode --with-colon \ --with-fingerprint --with-fingerprint \ ="$userID" 2>/dev/null) # find all 'pub' and 'sub' lines in the gpg output, which each # represent a retrieved key for the user ID echo "$gpgOut" | cut -d: -f1,2,5,10,12 | \ while IFS=: read -r type validity keyid uidfpr usage ; do case $type in 'pub'|'sub') # get the ssh key of the gpg key sshKeyGPG=$(gpg2ssh "$keyid") # if one of keys found matches the one offered by the # host, then output info if [ "$sshKeyGPG" = "$sshKeyOffered" ] ; then cat <&1 >/dev/null ; then # do not check the keyserver CHECK_KEYSERVER="false" # if the host is NOT in the keyring... else # if the host key is found in the known_hosts file... # FIXME: this only works for default known_hosts location hostKey=$(ssh-keygen -F "$HOST" 2>/dev/null) if [ "$hostKey" ] ; then # do not check the keyserver # FIXME: more nuanced checking should be done here to properly # take into consideration hosts that join monkeysphere by # converting an existing and known ssh key CHECK_KEYSERVER="false" # if the host key is not found in the known_hosts file... else # check the keyserver CHECK_KEYSERVER="true" fi fi # set and export the variable for use by monkeysphere MONKEYSPHERE_CHECK_KEYSERVER=${MONKEYSPHERE_CHECK_KEYSERVER:="$CHECK_KEYSERVER"} export MONKEYSPHERE_CHECK_KEYSERVER # update the known_hosts file for the host monkeysphere update-known_hosts "$HOSTP" # output on depending on the return of the update-known_hosts # subcommand, which is (ultimately) the return code of the # update_known_hosts function in common case $? in 0) # acceptable host key found so continue to ssh true ;; 1) # no hosts at all found so also continue (drop through to # regular ssh host verification) true ;; 2) # at least one *bad* host key (and no good host keys) was # found, so output some usefull information output_no_valid_key ;; *) # anything else drop through true ;; esac # FIXME: what about the case where monkeysphere successfully finds a # valid key for the host and adds it to the known_hosts file, but a # different non-monkeysphere key for the host already exists in the # known_hosts, and it is this non-ms key that is offered by the host? # monkeysphere will succeed, and the ssh connection will succeed, and # the user will be left with the impression that they are dealing with # a OpenPGP/PKI host key when in fact they are not. should we use # ssh-keyscan to compare the keys first? # exec a netcat passthrough to host for the ssh connection if [ -z "$NO_CONNECT" ] ; then if (which nc 2>/dev/null >/dev/null); then exec nc "$HOST" "$PORT" elif (which socat 2>/dev/null >/dev/null); then exec socat STDIO "TCP:$HOST:$PORT" else echo "Neither netcat nor socat found -- could not complete monkeysphere-ssh-proxycommand connection to $HOST:$PORT" >&2 exit 255 fi fi }