Merge remote branch 'dkg/master'
[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 "Your host keyring contains multiple keys.
142 Please specify one to act on (see 'monkeysphere-host show-key')."
143             fi
144             ;;
145     esac
146     printf '%s\n' "${fprs[@]}" | grep "${keyID}$" \
147         || failure "Host key '$keyID' not found."
148 }
149
150 # return 0 if user ID was found.
151 # return 1 if user ID not found.
152 check_key_userid() {
153     local keyID="$1"
154     local userID="$2"
155     local tmpuidMatch
156
157     # match to only "unknown" user IDs (host has no need for ultimate trust)
158     tmpuidMatch="uid:-:$(echo $userID | gpg_escape)"
159
160     # See whether the requsted user ID is present
161     gpg_host_list_keys "$keyID" | cut -f1,2,10 -d: | \
162         grep -q -x -F "$tmpuidMatch" 2>/dev/null
163 }
164
165 # run command looped over keys
166 multi_key() {
167     local cmd="$1"
168     shift
169     local keys=$@
170     local i=0
171     local fprs=($(host_fingerprints))
172     local key
173
174     check_no_keys
175
176     if [[ -z "$1" || "$1" == '--all' ]] ; then
177         keys="${fprs[@]}"
178     fi
179
180     for key in $keys ; do
181         if (( i++ > 0 )) ; then
182             echo "##############################"
183         fi
184         eval "$cmd" "$key"
185     done
186 }
187
188 # show info about the a key
189 show_key() {
190     local id="$1"
191     local GNUPGHOME
192     local TMPSSH
193     local fingerprint
194     local revokers
195
196     # tmp gpghome dir
197     export GNUPGHOME=$(msmktempdir)
198
199     # trap to remove tmp dir if break
200     trap "rm -rf $GNUPGHOME" EXIT
201
202     # import the host key into the tmp dir
203     gpg --quiet --import <"$HOST_KEY_FILE"
204
205     # create the ssh key
206     TMPSSH="$GNUPGHOME"/ssh_host_key_rsa_pub
207     if ! gpg --export "$id" 2>/dev/null \
208         | openpgp2ssh 2>/dev/null >"$TMPSSH" ; then
209         failure "Key '$id' not found."
210     fi
211
212     # get the gpg fingerprint
213     fingerprint=$(gpg --quiet --list-keys \
214         --with-colons --with-fingerprint "$id" \
215         | grep '^fpr:' | cut -d: -f10 )
216
217     # list the host key info
218     # FIXME: make no-show-keyring work so we don't have to do the grep'ing
219     # FIXME: can we show uid validity somehow?
220     gpg --list-keys --list-options show-unusable-uids "$id" 2>/dev/null \
221         | grep -v "^${GNUPGHOME}/pubring.gpg$" \
222         | egrep -v '^-+$'
223
224     # list revokers, if there are any
225     revokers=$(gpg --list-keys --with-colons --fixed-list-mode "$id" \
226         | awk -F: '/^rvk:/{ print $10 }' )
227     if [ "$revokers" ] ; then
228         echo "The following keys are allowed to revoke this host key:"
229         for key in $revokers ; do
230             echo "revoker: $key"
231         done
232         echo
233     fi
234
235     # list the pgp fingerprint
236     echo "OpenPGP fingerprint: $fingerprint"
237
238     # list the ssh fingerprint
239     echo -n "ssh fingerprint: "
240     ssh-keygen -l -f "$TMPSSH" | awk '{ print $1, $2, $4 }'
241
242     # remove the tmp file
243     trap - EXIT
244     rm -rf "$GNUPGHOME"
245 }
246
247 ########################################################################
248 # MAIN
249 ########################################################################
250
251 # load configuration file
252 [ -e ${MONKEYSPHERE_HOST_CONFIG:="${SYSCONFIGDIR}/monkeysphere-host.conf"} ] \
253     && . "$MONKEYSPHERE_HOST_CONFIG"
254
255 # set empty config variable with ones from the environment, or with
256 # defaults
257 LOG_LEVEL=${MONKEYSPHERE_LOG_LEVEL:=$LOG_LEVEL}
258 KEYSERVER=${MONKEYSPHERE_KEYSERVER:=$KEYSERVER}
259 CHECK_KEYSERVER=${MONKEYSPHERE_CHECK_KEYSERVER:=$CHECK_KEYSERVER}
260 MONKEYSPHERE_USER=${MONKEYSPHERE_MONKEYSPHERE_USER:=$MONKEYSPHERE_USER}
261 MONKEYSPHERE_GROUP=$(get_primary_group "$MONKEYSPHERE_USER")
262 PROMPT=${MONKEYSPHERE_PROMPT:=$PROMPT}
263
264 # other variables
265 GNUPGHOME_HOST=${MONKEYSPHERE_GNUPGHOME_HOST:="${MHDATADIR}"}
266 LOG_PREFIX=${MONKEYSPHERE_LOG_PREFIX:='ms: '}
267
268 # export variables needed in su invocation
269 export DATE
270 export LOG_LEVEL
271 export KEYSERVER
272 export CHECK_KEYSERVER
273 export MONKEYSPHERE_USER
274 export MONKEYSPHERE_GROUP
275 export PROMPT
276 export GNUPGHOME_HOST
277 export GNUPGHOME
278 export HOST_FINGERPRINT
279 export LOG_PREFIX
280
281 if [ "$#" -eq 0 ] ; then 
282     usage
283     failure "Please supply a subcommand."
284 fi
285
286 # get subcommand
287 COMMAND="$1"
288 shift
289
290 case $COMMAND in
291     'import-key'|'i')
292         source "${MHSHAREDIR}/import_key"
293         import_key "$@"
294         ;;
295
296     'show-keys'|'show-key'|'show'|'s')
297         multi_key show_key "$@"
298         ;;
299
300     'set-expire'|'extend-key'|'e')
301         source "${MHSHAREDIR}/set_expire"
302         set_expire "$@"
303         ;;
304
305     'add-servicename'|'add-hostname'|'add-name'|'n+')
306         source "${MHSHAREDIR}/add_name"
307         add_name "$@"
308         ;;
309
310     'revoke-servicename'|'revoke-hostname'|'revoke-name'|'n-')
311         source "${MHSHAREDIR}/revoke_name"
312         revoke_name "$@"
313         ;;
314
315     'add-revoker'|'r+')
316         source "${MHSHAREDIR}/add_revoker"
317         add_revoker "$@"
318         ;;
319
320     'revoke-key')
321         source "${MHSHAREDIR}/revoke_key"
322         revoke_key "$@"
323         ;;
324
325     'publish-keys'|'publish-key'|'publish'|'p')
326         source "${MHSHAREDIR}/publish_key"
327         multi_key publish_key "$@"
328         ;;
329
330     'diagnostics'|'d')
331         source "${MHSHAREDIR}/diagnostics"
332         diagnostics
333         ;;
334
335     'update-gpg-pub-file')
336         update_gpg_pub_file
337         ;;
338
339     'version'|'v')
340         version
341         ;;
342
343     '--help'|'help'|'-h'|'h'|'?')
344         usage
345         ;;
346
347     *)
348         failure "Unknown command: '$COMMAND'
349 Try '$PGRM help' for usage."
350         ;;
351 esac