proposed fix to marginal ui in case where host key not retrieved (should fix 1141)
[monkeysphere.git] / src / share / m / ssh_proxycommand
1 # -*-shell-script-*-
2 # This should be sourced by bash (though we welcome changes to make it POSIX sh compliant)
3
4 # Monkeysphere ssh-proxycommand subcommand
5 #
6 # The monkeysphere scripts are written by:
7 # Jameson Rollins <jrollins@finestructure.net>
8 # Daniel Kahn Gillmor <dkg@fifthhorseman.net>
9 #
10 # They are Copyright 2008-2009, and are all released under the GPL,
11 # version 3 or later.
12
13 # This is meant to be run as an ssh ProxyCommand to initiate a
14 # monkeysphere known_hosts update before an ssh connection to host is
15 # established.  Can be added to ~/.ssh/config as follows:
16 #  ProxyCommand monkeysphere ssh-proxycommand %h %p
17
18 # output the key info, including the RSA fingerprint
19 show_key_info() {
20     local keyid="$1"
21     local sshKeyGPGFile
22     local sshFingerprint
23     local gpgSigOut
24     local otherUids
25
26     # get the ssh key of the gpg key
27     sshKeyGPGFile=$(msmktempfile)
28     gpg2ssh "$keyid" >"$sshKeyGPGFile"
29     sshFingerprint=$(ssh-keygen -l -f "$sshKeyGPGFile" | \
30         awk '{ print $2 }')
31     rm -f "$sshKeyGPGFile"
32
33     # get the sigs for the matching key
34     gpgSigOut=$(gpg_user --check-sigs \
35         --list-options show-uid-validity \
36         "$keyid")
37
38     echo | log info
39
40     # output the sigs, but only those on the user ID
41     # we are looking for
42     echo "$gpgSigOut" | awk '
43 {
44 if (match($0,"^pub")) { print; }
45 if (match($0,"^uid")) { ok=0; }
46 if (match($0,"^uid.*'$userID'$")) { ok=1; print; }
47 if (ok) { if (match($0,"^sig")) { print; } }
48 }
49 '
50
51     # output ssh fingerprint
52     cat <<EOF
53 RSA key fingerprint is ${sshFingerprint}.
54 EOF
55
56     # output the other user IDs for reference
57     otherUids=$(echo "$gpgSigOut" | grep "^uid" | grep -v "$userID")
58     if [ "$otherUids" ] ; then
59         log info <<EOF
60 Other user IDs on this key:
61 EOF
62         echo "$otherUids" | log info
63     fi
64
65 }
66
67 # "marginal case" ouput in the case that there is not a full
68 # validation path to the host
69 output_no_valid_key() {
70     local userID
71     local sshKeyOffered
72     local gpgOut
73     local type
74     local validity
75     local keyid
76     local uidfpr
77     local usage
78     local sshKeyGPG
79     local tmpkey
80     local returnCode=0
81
82     userID="ssh://${HOSTP}"
83
84     LOG_PREFIX=
85
86     # retrieve the ssh key being offered by the host
87     sshKeyOffered=$(ssh-keyscan -t rsa -p "$PORT" "$HOST" 2>/dev/null \
88         | awk '{ print $2, $3 }')
89
90     # get the gpg info for userid
91     gpgOut=$(gpg_user --list-key --fixed-list-mode --with-colon \
92         --with-fingerprint --with-fingerprint \
93         ="$userID" 2>/dev/null)
94
95     # output header
96     log info <<EOF
97 -------------------- Monkeysphere warning -------------------
98 Monkeysphere found OpenPGP keys for this hostname, but none had full validity.
99 EOF
100
101     # output message if host key could not be retrieved from the host
102     if [ -z "$sshKeyOffered" ] ; then
103         log info <<EOF
104 Could not retrieve RSA host key from $HOST.
105 EOF
106         # check that there are any marginally valid keys
107         if echo "$gpgOut" | egrep -q '^(pub|sub):(m|f|u):' ; then
108             log info <<EOF
109 The following keys were found with marginal validity:
110 EOF
111         fi
112     fi
113
114     # find all 'pub' and 'sub' lines in the gpg output, which each
115     # represent a retrieved key for the user ID
116     echo "$gpgOut" | cut -d: -f1,2,5,10,12 | \
117     while IFS=: read -r type validity keyid uidfpr usage ; do
118         case $type in
119             'pub'|'sub')
120                 # get the ssh key of the gpg key
121                 sshKeyGPG=$(gpg2ssh "$keyid")
122
123                 # if a key was retrieved from the host...
124                 if [ "$sshKeyOffered" ] ; then
125
126                     # if one of keys found matches the one offered by the
127                     # host, then output info
128                     if [ "$sshKeyGPG" = "$sshKeyOffered" ] ; then
129                         log info <<EOF
130 An OpenPGP key matching the ssh key offered by the host was found:
131 EOF
132
133                         show_key_info "$keyid" | log info
134
135                         # this whole process is in a "while read"
136                         # subshell.  the only way to get information
137                         # out of the subshell is to change the return
138                         # code.  therefore we return 1 here to
139                         # indicate that a matching gpg key was found
140                         # for the ssh key offered by the host
141                         return 1
142                     fi
143
144                 # else if a key was not retrieved from the host
145                 else
146
147                     # if the current key is marginal, show info
148                     if [ "$validity" = 'm' ] ; then
149                         show_key_info "$keyid" | log info
150                     fi
151                 fi
152                 ;;
153         esac
154     done || returnCode="$?"
155
156     # if no key match was made (and the "while read" subshell
157     # returned 1) output how many keys were found
158     if (( returnCode != 1 )) ; then
159
160         echo | log info
161
162         # output different footer messages depending on if a key had
163         # been retrieved from the host
164         if [ "$sshKeyOffered" ] ; then
165             log info <<EOF
166 None of the found keys matched the key offered by the host.
167 EOF
168         else
169             log info <<EOF
170 There may be keys for this hostname with less than marginal validity.
171 EOF
172         fi
173         log info <<EOF
174 Run the following command for more info about the found keys:
175 gpg --check-sigs --list-options show-uid-validity =${userID}
176 EOF
177
178         # FIXME: should we do anything extra here if the retrieved
179         # host key is actually in the known_hosts file and the ssh
180         # connection will succeed?  Should the user be warned?
181         # prompted?
182     fi
183
184     # output footer
185     log info <<EOF
186 -------------------- ssh continues below --------------------
187 EOF
188 }
189
190
191 # the ssh proxycommand function itself
192 ssh_proxycommand() {
193
194 if [ "$1" = '--no-connect' ] ; then
195     NO_CONNECT='true'
196     shift 1
197 fi
198
199 HOST="$1"
200 PORT="$2"
201
202 if [ -z "$HOST" ] ; then
203     log error "Host not specified."
204     usage
205     exit 255
206 fi
207 if [ -z "$PORT" ] ; then
208     PORT=22
209 fi
210
211 # set the host URI
212 if [ "$PORT" != '22' ] ; then
213     HOSTP="${HOST}:${PORT}"
214 else
215     HOSTP="${HOST}"
216 fi
217 URI="ssh://${HOSTP}"
218
219 # specify keyserver checking.  the behavior of this proxy command is
220 # intentionally different than that of running monkeyesphere normally,
221 # and keyserver checking is intentionally done under certain
222 # circumstances.  This can be overridden by setting the
223 # MONKEYSPHERE_CHECK_KEYSERVER environment variable, or by setting the
224 # CHECK_KEYSERVER variable in the monkeysphere.conf file.
225
226 # if the host is in the gpg keyring...
227 if gpg_user --list-key ="${URI}" &>/dev/null ; then
228     # do not check the keyserver
229     CHECK_KEYSERVER=${CHECK_KEYSERVER:="false"}
230
231 # if the host is NOT in the keyring...
232 else
233     # if the host key is found in the known_hosts file...
234     # FIXME: this only works for default known_hosts location
235     hostKey=$(ssh-keygen -F "$HOST" 2>/dev/null)
236
237     if [ "$hostKey" ] ; then
238         # do not check the keyserver
239         # FIXME: more nuanced checking should be done here to properly
240         # take into consideration hosts that join monkeysphere by
241         # converting an existing and known ssh key
242         CHECK_KEYSERVER=${CHECK_KEYSERVER:="false"}
243
244     # if the host key is not found in the known_hosts file...
245     else
246         # check the keyserver
247         CHECK_KEYSERVER=${CHECK_KEYSERVER:="true"}
248     fi
249 fi
250
251 # finally look in the MONKEYSPHERE_ environment variable for a
252 # CHECK_KEYSERVER setting to override all else
253 CHECK_KEYSERVER=${MONKEYSPHERE_CHECK_KEYSERVER:=$CHECK_KEYSERVER}
254
255 # update the known_hosts file for the host
256 local returnCode=0
257 update_known_hosts "$HOSTP" || returnCode="$?"
258
259 # output on depending on the return of the update-known_hosts
260 # subcommand, which is (ultimately) the return code of the
261 # update_known_hosts function in common
262 case "$returnCode" in
263     0)
264         # acceptable host key found so continue to ssh
265         true
266         ;;
267     1)
268         # no hosts at all found so also continue (drop through to
269         # regular ssh host verification)
270         true
271         ;;
272     2)
273         # at least one *bad* host key (and no good host keys) was
274         # found, so output some usefull information
275         output_no_valid_key
276         ;;
277     *)
278         # anything else drop through
279         true
280         ;;
281 esac
282
283 # FIXME: what about the case where monkeysphere successfully finds a
284 # valid key for the host and adds it to the known_hosts file, but a
285 # different non-monkeysphere key for the host already exists in the
286 # known_hosts, and it is this non-ms key that is offered by the host?
287 # monkeysphere will succeed, and the ssh connection will succeed, and
288 # the user will be left with the impression that they are dealing with
289 # a OpenPGP/PKI host key when in fact they are not.  should we use
290 # ssh-keyscan to compare the keys first?
291
292 # exec a netcat passthrough to host for the ssh connection
293 if [ -z "$NO_CONNECT" ] ; then
294     if (type nc &>/dev/null); then
295         exec nc "$HOST" "$PORT"
296     elif (type socat &>/dev/null); then
297         exec socat STDIO "TCP:$HOST:$PORT"
298     else
299         echo "Neither netcat nor socat found -- could not complete monkeysphere-ssh-proxycommand connection to $HOST:$PORT" >&2
300         exit 255
301     fi
302 fi
303
304 }