Update man pages. Small tweak to proxycommand.
[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     PORT=22
43 fi
44
45 # set the host URI
46 URI="ssh://${HOST}"
47 if [ "$PORT" != '22' ] ; then
48     URI="${URI}:${PORT}"
49 fi
50
51 # if the host is in the gpg keyring...
52 if gpg --list-key ="${URI}" 2>&1 >/dev/null ; then
53     # do not check the keyserver
54     CHECK_KEYSERVER="false"
55
56 # if the host is NOT in the keyring...
57 else
58     # if the host key is found in the known_hosts file...
59     # FIXME: this only works for default known_hosts location
60     hostKey=$(ssh-keygen -F "$HOST")
61     if [ "$hostKey" ] ; then
62         # do not check the keyserver
63         # FIXME: more nuanced checking should be done here to properly
64         # take into consideration hosts that join monkeysphere by
65         # converting an existing and known ssh key
66         CHECK_KEYSERVER="false"
67
68     # if the host key is not found in the known_hosts file...
69     else
70         # check the keyserver
71         CHECK_KEYSERVER="true"
72     fi
73 fi
74 export CHECK_KEYSERVER
75
76 # update the known_hosts file for the host
77 monkeysphere update-known_hosts "$HOST"
78
79 # exec a netcat passthrough to host for the ssh connection
80 if [ -z "$NO_CONNECT" ] ; then
81     exec nc "$HOST" "$PORT"
82 fi