Merge commit 'dkg/master'
[monkeysphere.git] / tests / basic
1 #!/usr/bin/env bash
2
3 # Tests to ensure that the monkeysphere is working
4
5 # Authors: 
6 #   Daniel Kahn Gillmor <dkg@fifthhorseman.net>
7 #   Jameson Rollins <jrollins@fifthhorseman.net>
8 # Copyright: 2008
9 # License: GPL v3 or later
10
11 # these tests should all be able to
12 # as a non-privileged user.
13
14 # all subcommands in this script should complete without failure:
15 set -e
16 # piped commands should return the code of the first non-zero return
17 set -o pipefail
18
19 ## make sure that the right tools are installed to run the test.  the
20 ## test has *more* requirements than plain ol' monkeysphere:
21 which socat || { echo "You must have socat installed to run this test." ; exit 1; }
22
23 ## FIXME: other checks?
24
25 # gpg command for test admin user
26 gpgadmin() {
27     GNUPGHOME="$TEMPDIR"/admin/.gnupg gpg "$@"
28 }
29
30 # test ssh connection
31 # first argument is expected return code from ssh connection
32 ssh_test() {
33     umask 0077
34
35     CODE=${1:-0}
36
37     # start the ssh daemon on the socket
38     echo "##### starting ssh server..."
39     socat EXEC:"/usr/sbin/sshd -f ${SSHD_CONFIG} -i -D -e" "UNIX-LISTEN:${SOCKET}" 2> "$TEMPDIR"/sshd.log &
40     SSHD_PID="$!"
41
42     # wait until the socket is created before continuing
43     while [ ! -S "$SOCKET" ] ; do
44         sleep 1
45     done
46
47     set +e
48
49     # make a client connection to the socket
50     echo "##### starting ssh client..."
51     ssh-agent bash -c \
52         "monkeysphere subkey-to-ssh-agent && ssh -F $TEMPDIR/testuser/.ssh/config testhost true"
53     RETURN="$?"
54
55     # kill the sshd process if it's still running
56     kill "$SSHD_PID"
57
58     set -e
59
60     echo "##### return $RETURN"
61     if [ "$RETURN" = "$CODE" ] ; then
62         echo "##### ssh connection test returned as desired"
63         return 0
64     else
65         echo "##### ssh connection test failed.  expected return code $CODE"
66         return 1
67     fi
68 }
69
70 failed_cleanup() {
71     # FIXME: can we be more verbose here?
72     echo 'FAILED!'
73     read -p "press enter to cleanup and remove tmp:"
74
75     cleanup
76 }
77
78 get_gpg_prng_arg() {
79     if (gpg --quick-random --version >/dev/null 2>&1) ; then
80         echo quick-random
81     elif (gpg --debug-quick-random --version >/dev/null 2>&1) ; then
82         echo debug-quick-random
83     fi
84 }
85
86 cleanup() {
87     echo "### removing temp dir..."
88     rm -rf "$TEMPDIR"
89
90     wait
91 }
92
93 ## setup trap
94 trap failed_cleanup EXIT
95
96
97 ### SETUP VARIABLES
98 ## set up some variables to ensure that we're operating strictly in
99 ## the tests, not system-wide:
100
101 export TESTDIR=$(pwd)
102
103 # make temp dir
104 TEMPDIR="$TESTDIR"/tmp
105 if [ -e "$TEMPDIR" ] ; then
106     echo "tempdir '$TEMPDIR' already exists."
107     exit 1
108 fi
109 mkdir "$TEMPDIR"
110
111 # Use the local copy of executables first, instead of system ones.
112 # This should help us test without installing.
113 export PATH="$TESTDIR"/../src:"$TESTDIR"/../src/keytrans:"$PATH"
114
115 export MONKEYSPHERE_SYSDATADIR="$TEMPDIR"
116 export MONKEYSPHERE_SYSCONFIGDIR="$TEMPDIR"
117 export MONKEYSPHERE_SYSSHAREDIR="$TESTDIR"/../src
118 export MONKEYSPHERE_MONKEYSPHERE_USER=$(whoami)
119 export MONKEYSPHERE_CHECK_KEYSERVER=false
120 export MONKEYSPHERE_LOG_LEVEL=DEBUG
121
122 export SSHD_CONFIG="$TEMPDIR"/sshd_config
123 export SOCKET="$TEMPDIR"/ssh-socket
124
125 # Make sure $DISPLAY is set to convince ssh and monkeysphere to fall
126 # back on $SSH_ASKPASS.  Make sure it's not set to the current actual
127 # $DISPLAY (if one exists) because this test suite should not be doing
128 # *anything* with any running X11 session.
129 export DISPLAY=monkeys
130
131 ### CONFIGURE ENVIRONMENTS
132
133 # copy in admin and testuser home to tmp
134 echo "### copying admin and testuser homes..."
135 cp -a "$TESTDIR"/home/admin "$TEMPDIR"/
136 cp -a "$TESTDIR"/home/testuser "$TEMPDIR"/
137
138 # set up environment for testuser
139 TESTHOME="$TEMPDIR"/testuser
140 export GNUPGHOME="$TESTHOME"/.gnupg
141 export SSH_ASKPASS="$TESTHOME"/.ssh/askpass
142 export MONKEYSPHERE_HOME="$TESTHOME"/.monkeysphere
143 cat <<EOF >> "$TESTHOME"/.ssh/config
144 UserKnownHostsFile $TESTHOME/.ssh/known_hosts
145 IdentityFile $TESTHOME/.ssh/no-such-identity
146 ProxyCommand $TESTHOME/.ssh/proxy-command %h %p $SOCKET
147 EOF
148 cat <<EOF >> "$MONKEYSPHERE_HOME"/monkeysphere.conf
149 KNOWN_HOSTS=$TESTHOME/.ssh/known_hosts
150 EOF
151 get_gpg_prng_arg >> "$GNUPGHOME"/gpg.conf
152
153 # set up sshd
154 echo "### configuring sshd..."
155 cp etc/ssh/sshd_config "$SSHD_CONFIG"
156 # write the sshd_config
157 cat <<EOF >> "$SSHD_CONFIG"
158 HostKey ${MONKEYSPHERE_SYSDATADIR}/ssh_host_rsa_key
159 AuthorizedKeysFile ${MONKEYSPHERE_SYSDATADIR}/authorized_keys/%u
160 EOF
161
162 # set up monkeysphere-server
163 echo "### configuring monkeysphere..."
164 mkdir -p -m 750 "$MONKEYSPHERE_SYSDATADIR"/gnupg-host
165 mkdir -p -m 700 "$MONKEYSPHERE_SYSDATADIR"/gnupg-authentication
166 mkdir -p -m 700 "$MONKEYSPHERE_SYSDATADIR"/authorized_keys
167 mkdir -p -m 700 "$MONKEYSPHERE_SYSDATADIR"/tmp
168 cp etc/monkeysphere/monkeysphere-server.conf "$TEMPDIR"/monkeysphere-server.conf
169 cat <<EOF >> "$TEMPDIR"/monkeysphere-server.conf
170 AUTHORIZED_USER_IDS="$MONKEYSPHERE_HOME/authorized_user_ids"
171 EOF
172 cat <<EOF > "$MONKEYSPHERE_SYSDATADIR"/gnupg-authentication/gpg.conf
173 primary-keyring ${MONKEYSPHERE_SYSDATADIR}/gnupg-authentication/pubring.gpg
174 keyring ${MONKEYSPHERE_SYSDATADIR}/gnupg-host/pubring.gpg
175 EOF
176
177
178 ### SERVER TESTS
179
180 # create a new host key
181 echo "### generating server key..."
182 # add gpg.conf with quick-random
183 get_gpg_prng_arg >> "$MONKEYSPHERE_SYSCONFIGDIR"/gnupg-host/gpg.conf
184 echo | monkeysphere-server gen-key --length 1024 --expire 0 testhost
185 # remove the gpg.conf
186 rm "$MONKEYSPHERE_SYSCONFIGDIR"/gnupg-host/gpg.conf
187
188 HOSTKEYID=$( monkeysphere-server show-key | tail -n1 | cut -f3 -d\  )
189
190 # certify it with the "Admin's Key".
191 # (this would normally be done via keyservers)
192 echo "### certifying server key..."
193 monkeysphere-server gpg-authentication-cmd "--armor --export $HOSTKEYID" | gpgadmin --import
194 echo y | gpgadmin --command-fd 0 --sign-key "$HOSTKEYID"
195
196 # FIXME: how can we test publish-key without flooding junk into the
197 # keyservers?
198
199 # add admin as identity certifier for testhost
200 echo "### adding admin as certifier..."
201 echo y | monkeysphere-server add-identity-certifier "$TEMPDIR"/admin/.gnupg/pubkey.gpg
202
203
204 ### TESTUSER TESTS
205
206 # generate an auth subkey for the test user that expires in 2 days
207 echo "### generating key for testuser..."
208 monkeysphere gen-subkey --expire 2
209
210 # add server key to testuser keychain
211 echo "### export server key to testuser..."
212 gpgadmin --armor --export "$HOSTKEYID" | gpg --import
213
214 # teach the "server" about the testuser's key
215 echo "### export testuser key to server..."
216 gpg --export testuser | monkeysphere-server gpg-authentication-cmd --import
217 echo "### update server authorized_keys file for this testuser..."
218 monkeysphere-server update-users $(whoami)
219
220 # connect to test sshd, using monkeysphere-ssh-proxycommand to verify
221 # the identity before connection.  This should work in both directions!
222 echo "### ssh connection test for success..."
223 ssh_test
224
225 # remove the testuser's authorized_user_ids file, update, and make
226 # sure that the ssh authentication FAILS
227 echo "### removing testuser authorized_user_ids and updating..."
228 mv "$TESTHOME"/.monkeysphere/authorized_user_ids{,.bak}
229 monkeysphere-server update-users $(whoami)
230 echo "### ssh connection test for server authentication denial..."
231 ssh_test 255
232 mv "$TESTHOME"/.monkeysphere/authorized_user_ids{.bak,}
233
234 # put improper permissions on authorized_user_ids file, update, and
235 # make sure ssh authentication FAILS
236 echo "### setting group writability on authorized_user_ids and updating..."
237 chmod g+w "$TESTHOME"/.monkeysphere/authorized_user_ids
238 monkeysphere-server update-users $(whoami)
239 echo "### ssh connection test for server authentication denial..."
240 ssh_test 255
241 chmod g-w "$TESTHOME"/.monkeysphere/authorized_user_ids
242 echo "### setting other writability on authorized_user_ids and updating..."
243 chmod o+w "$TESTHOME"/.monkeysphere/authorized_user_ids
244 monkeysphere-server update-users $(whoami)
245 echo "### ssh connection test for server authentication denial..."
246 ssh_test 255
247 chmod o-w "$TESTHOME"/.monkeysphere/authorized_user_ids
248
249
250 trap - EXIT
251
252 echo
253 echo "Monkeysphere basic tests completed successfully!"
254 echo
255
256 cleanup