Move to /var/lib/monkeysphere instead of /var/cache/monkeysphere.
[monkeysphere.git] / src / monkeysphere-ssh-proxycommand
1 #!/bin/sh -e
2
3 # monkeysphere-ssh-proxycommand: MonkeySphere ssh ProxyCommand hook
4 #
5 # The monkeysphere scripts are written by:
6 # Jameson Rollins <jrollins@fifthhorseman.net>
7 #
8 # They are Copyright 2008, and are all released under the GPL, version 3
9 # or later.
10
11 # This is meant to be run as an ssh ProxyCommand to initiate a
12 # monkeysphere known_hosts update before an ssh connection to host is
13 # established.  Can be added to ~/.ssh/config as follows:
14 #  ProxyCommand monkeysphere-ssh-proxycommand %h %p
15
16 usage() {
17 cat <<EOF >&2
18 usage: ssh -o ProxyCommand="$(basename $0) %h %p" ...
19 EOF
20 }
21
22 log() {
23     echo "$@" >&2
24 }
25
26 if [ "$1" = '--no-connect' ] ; then
27     NO_CONNECT='true'
28     shift 1
29 fi
30
31 HOST="$1"
32 PORT="$2"
33
34 MS_HOME=${MS_HOME:-"${HOME}/.config/monkeysphere"}
35
36 if [ -z "$HOST" ] ; then
37     log "host must be specified."
38     usage
39     exit 1
40 fi
41 if [ -z "$PORT" ] ; then
42     log "port must be specified."
43     usage
44     exit 1
45 fi
46
47 # set the host URI
48 URI="ssh://${HOST}"
49 if [ "$PORT" != '22' ] ; then
50     URI="${URI}:$PORT"
51 fi
52
53 # if the host is in the gpg keyring...
54 if gpg --list-key ="${URI}" 2>&1 >/dev/null ; then
55     # do not check the keyserver
56     CHECK_KEYSERVER="false"
57 # if the host is NOT in the keyring...
58 else
59     # if the host key is found in the known_hosts file...
60     # FIXME: this only works for default known_hosts location
61     hostKey=$(ssh-keygen -F "$HOST")
62     if [ "$hostKey" ] ; then
63         # do not check the keyserver
64         # FIXME: more nuanced checking should be done here to properly
65         # take into consideration hosts that join monkeysphere by
66         # converting an existing and known ssh key
67         CHECK_KEYSERVER="false"
68
69     # if the host key is not found in the known_hosts file...
70     else
71         # check the keyserver
72         CHECK_KEYSERVER="true"
73     fi
74 fi
75 export CHECK_KEYSERVER
76
77 # update the known_hosts file for the host
78 monkeysphere update-known_hosts "$HOST"
79
80 # exec a netcat passthrough to host for the ssh connection
81 if [ -z "$NO_CONNECT" ] ; then
82     exec nc "$HOST" "$PORT"
83 fi