Try to fix monkeysphere-host and tests/basic for revoke-key test
[monkeysphere.git] / src / monkeysphere-host
1 #!/usr/bin/env bash
2
3 # monkeysphere-host: Monkeysphere host admin tool
4 #
5 # The monkeysphere scripts are written by:
6 # Jameson Rollins <jrollins@finestructure.net>
7 # Jamie McClelland <jm@mayfirst.org>
8 # Daniel Kahn Gillmor <dkg@fifthhorseman.net>
9 # Micah Anderson <micah@riseup.net>
10 #
11 # They are Copyright 2008-2010, and are all released under the GPL,
12 # version 3 or later.
13
14 ########################################################################
15 set -e
16
17 # set the pipefail option so pipelines fail on first command failure
18 set -o pipefail
19
20 PGRM=$(basename $0)
21
22 SYSSHAREDIR=${MONKEYSPHERE_SYSSHAREDIR:-"/usr/share/monkeysphere"}
23 export SYSSHAREDIR
24 . "${SYSSHAREDIR}/defaultenv"
25 . "${SYSSHAREDIR}/common"
26
27 SYSDATADIR=${MONKEYSPHERE_SYSDATADIR:-"/var/lib/monkeysphere"}
28 export SYSDATADIR
29
30 # sharedir for host functions
31 MHSHAREDIR="${SYSSHAREDIR}/mh"
32
33 # datadir for host functions
34 MHDATADIR="${SYSDATADIR}/host"
35
36 # host pub key files
37 HOST_KEY_FILE="${SYSDATADIR}/host_keys.pub.gpg"
38 # host pub key fingerprints file
39 HOST_KEY_FPR_FILE="${SYSDATADIR}/host_keys.fprs"
40
41 # UTC date in ISO 8601 format if needed
42 DATE=$(date -u '+%FT%T')
43
44 # unset some environment variables that could screw things up
45 unset GREP_OPTIONS
46
47 ########################################################################
48 # FUNCTIONS
49 ########################################################################
50
51 usage() {
52     cat <<EOF >&2
53 usage: $PGRM <subcommand> [options] [args]
54 Monkeysphere host admin tool.
55
56 subcommands:
57  import-key (i) FILE SERVICENAME       import PEM-encoded key from file
58  show-keys (s) [KEYID ...]             output host key information
59  publish-keys (p) [KEYID ...]          publish key(s) to keyserver
60  set-expire (e) EXPIRE [KEYID]         set key expiration
61  add-servicename (n+) SERVICENAME [KEYID]
62                                        add a service name to key
63  revoke-servicename (n-) SERVICENAME [KEYID]
64                                        revoke a service name from key
65  add-revoker (r+) REVOKER_KEYID|FILE [KEYID]
66                                        add a revoker to key
67  revoke-key [KEYID]                    generate and/or publish revocation
68                                        certificate for key
69
70  version (v)                           show version number
71  help (h,?)                            this help
72
73 See ${PGRM}(8) for more info.
74 EOF
75 }
76
77 # function to interact with the gpg keyring
78 gpg_host() {
79     GNUPGHOME="$GNUPGHOME_HOST" gpg --no-greeting --quiet --no-tty "$@"
80 }
81
82 # list the info about the a key, in colon format, to stdout
83 gpg_host_list_keys() {
84     gpg_host --list-keys --with-colons --fixed-list-mode \
85         --with-fingerprint --with-fingerprint \
86         "$1"
87 }
88
89 # edit key scripts, takes scripts on stdin, and keyID as first input
90 gpg_host_edit() {
91     gpg_host --command-fd 0 --edit-key "$@"
92 }
93
94 # export the monkeysphere gpg pub key file
95 update_gpg_pub_file() {
96     log debug "updating openpgp public key file '$HOST_KEY_FILE'..."
97     gpg_host --export --armor --export-options export-minimal > "$HOST_KEY_FILE"
98     log debug "updating fingerprint file '$HOST_KEY_FPR_FILE'..."
99     gpg_host --list-secret-key --with-colons --with-fingerprint \
100         | awk -F: '/^fpr:/{ print $10 }' > "$HOST_KEY_FPR_FILE"
101 }
102
103 host_fingerprints() {
104     local fprs=($(cat "$HOST_KEY_FPR_FILE"))
105
106     log debug "host key fingerprints:"
107     printf '%s\n' "${fprs[@]}" | log debug
108     printf '%s\n' "${fprs[@]}"
109 }
110
111 # check that the service name is well formed
112 check_service_name() {
113     local name="$1"
114     log error "FIX ME: check service name"
115 }
116
117 # fail if host key not present
118 check_no_keys() {
119     [ -s "$HOST_KEY_FILE" ] || [ -s "$HOST_KEY_FPR_FILE" ] \
120         || failure "You don't appear to have a Monkeysphere host key on this server.
121 Please run 'monkeysphere-host import-key' import a key."
122 }
123
124 # key input to functions, outputs full fingerprint of specified key if
125 # found
126 check_key_input() {
127     local keyID="$1"
128     # array of fingerprints
129     local fprs=($(host_fingerprints))
130
131     case ${#fprs[@]} in
132         0)
133             failure "You don't appear to have any Monkeysphere host keys.
134 Please run 'monkeysphere-host import-key' to import a key."
135             ;;
136         1)
137             :
138             ;;
139         *)
140             if [ -z "$keyID" ] ; then
141                 failure "Keyring contains multiple keys.  Please specify one to act on (see 'monkeysphere-host show-key')."
142             fi
143             ;;
144     esac
145     printf '%s\n' "${fprs[@]}" | grep "${keyID}$" \
146         || failure "Key '$keyID' not found."
147 }
148
149 # return 0 if user ID was found.
150 # return 1 if user ID not found.
151 check_key_userid() {
152     local keyID="$1"
153     local userID="$2"
154     local tmpuidMatch
155
156     # match to only "unknown" user IDs (host has no need for ultimate trust)
157     tmpuidMatch="uid:-:$(echo $userID | gpg_escape)"
158
159     # See whether the requsted user ID is present
160     gpg_host_list_keys "$keyID" | cut -f1,2,10 -d: | \
161         grep -q -x -F "$tmpuidMatch" 2>/dev/null
162 }
163
164 # run command looped over keys
165 multi_key() {
166     local cmd="$1"
167     shift
168     local keys=$@
169     local i=0
170     local fprs=($(host_fingerprints))
171     local key
172
173     check_no_keys
174
175     if [[ -z "$1" || "$1" == '--all' ]] ; then
176         keys="${fprs[@]}"
177     fi
178
179     for key in $keys ; do
180         if (( i++ > 0 )) ; then
181             echo "##############################"
182         fi
183         eval "$cmd" "$key"
184     done
185 }
186
187 # show info about the a key
188 show_key() {
189     local id="$1"
190     local GNUPGHOME
191     local TMPSSH
192     local fingerprint
193     local revokers
194
195     # tmp gpghome dir
196     export GNUPGHOME=$(msmktempdir)
197
198     # trap to remove tmp dir if break
199     trap "rm -rf $GNUPGHOME" EXIT
200
201     # import the host key into the tmp dir
202     gpg --quiet --import <"$HOST_KEY_FILE"
203
204     # create the ssh key
205     TMPSSH="$GNUPGHOME"/ssh_host_key_rsa_pub
206     if ! gpg --export "$id" 2>/dev/null \
207         | openpgp2ssh 2>/dev/null >"$TMPSSH" ; then
208         failure "Key '$id' not found."
209     fi
210
211     # get the gpg fingerprint
212     fingerprint=$(gpg --quiet --list-keys \
213         --with-colons --with-fingerprint "$id" \
214         | grep '^fpr:' | cut -d: -f10 )
215
216     # list the host key info
217     # FIXME: make no-show-keyring work so we don't have to do the grep'ing
218     # FIXME: can we show uid validity somehow?
219     gpg --list-keys --list-options show-unusable-uids "$id" 2>/dev/null \
220         | grep -v "^${GNUPGHOME}/pubring.gpg$" \
221         | egrep -v '^-+$'
222
223     # list revokers, if there are any
224     revokers=$(gpg --list-keys --with-colons --fixed-list-mode "$id" \
225         | awk -F: '/^rvk:/{ print $10 }' )
226     if [ "$revokers" ] ; then
227         echo "The following keys are allowed to revoke this host key:"
228         for key in $revokers ; do
229             echo "revoker: $key"
230         done
231         echo
232     fi
233
234     # list the pgp fingerprint
235     echo "OpenPGP fingerprint: $fingerprint"
236
237     # list the ssh fingerprint
238     echo -n "ssh fingerprint: "
239     ssh-keygen -l -f "$TMPSSH" | awk '{ print $1, $2, $4 }'
240
241     # remove the tmp file
242     trap - EXIT
243     rm -rf "$GNUPGHOME"
244 }
245
246 ########################################################################
247 # MAIN
248 ########################################################################
249
250 # load configuration file
251 [ -e ${MONKEYSPHERE_HOST_CONFIG:="${SYSCONFIGDIR}/monkeysphere-host.conf"} ] \
252     && . "$MONKEYSPHERE_HOST_CONFIG"
253
254 # set empty config variable with ones from the environment, or with
255 # defaults
256 LOG_LEVEL=${MONKEYSPHERE_LOG_LEVEL:=$LOG_LEVEL}
257 KEYSERVER=${MONKEYSPHERE_KEYSERVER:=$KEYSERVER}
258 CHECK_KEYSERVER=${MONKEYSPHERE_CHECK_KEYSERVER:=$CHECK_KEYSERVER}
259 MONKEYSPHERE_USER=${MONKEYSPHERE_MONKEYSPHERE_USER:=$MONKEYSPHERE_USER}
260 MONKEYSPHERE_GROUP=$(get_primary_group "$MONKEYSPHERE_USER")
261 PROMPT=${MONKEYSPHERE_PROMPT:=$PROMPT}
262
263 # other variables
264 GNUPGHOME_HOST=${MONKEYSPHERE_GNUPGHOME_HOST:="${MHDATADIR}"}
265 LOG_PREFIX=${MONKEYSPHERE_LOG_PREFIX:='ms: '}
266
267 # export variables needed in su invocation
268 export DATE
269 export LOG_LEVEL
270 export KEYSERVER
271 export CHECK_KEYSERVER
272 export MONKEYSPHERE_USER
273 export MONKEYSPHERE_GROUP
274 export PROMPT
275 export GNUPGHOME_HOST
276 export GNUPGHOME
277 export HOST_FINGERPRINT
278 export LOG_PREFIX
279
280 if [ "$#" -eq 0 ] ; then 
281     usage
282     failure "Please supply a subcommand."
283 fi
284
285 # get subcommand
286 COMMAND="$1"
287 shift
288
289 case $COMMAND in
290     'import-key'|'i')
291         source "${MHSHAREDIR}/import_key"
292         import_key "$@"
293         ;;
294
295     'show-keys'|'show-key'|'show'|'s')
296         multi_key show_key "$@"
297         ;;
298
299     'set-expire'|'extend-key'|'e')
300         source "${MHSHAREDIR}/set_expire"
301         set_expire "$@"
302         ;;
303
304     'add-servicename'|'add-hostname'|'add-name'|'n+')
305         source "${MHSHAREDIR}/add_name"
306         add_name "$@"
307         ;;
308
309     'revoke-servicename'|'revoke-hostname'|'revoke-name'|'n-')
310         source "${MHSHAREDIR}/revoke_name"
311         revoke_name "$@"
312         ;;
313
314     'add-revoker'|'r+')
315         source "${MHSHAREDIR}/add_revoker"
316         add_revoker "$@"
317         ;;
318
319     'revoke-key')
320         source "${MHSHAREDIR}/revoke_key"
321         revoke_key "$@"
322         ;;
323
324     'publish-keys'|'publish-key'|'publish'|'p')
325         source "${MHSHAREDIR}/publish_key"
326         multi_key publish_key "$@"
327         ;;
328
329     'diagnostics'|'d')
330         source "${MHSHAREDIR}/diagnostics"
331         diagnostics
332         ;;
333
334     'update-gpg-pub-file')
335         update_gpg_pub_file
336         ;;
337
338     'version'|'v')
339         version
340         ;;
341
342     '--help'|'help'|'-h'|'h'|'?')
343         usage
344         ;;
345
346     *)
347         failure "Unknown command: '$COMMAND'
348 Try '$PGRM help' for usage."
349         ;;
350 esac