4d7acc6cb50276bb7a46ae589d3c6995ed540252
[monkeysphere.git] / src / monkeysphere-server
1 #!/bin/bash
2
3 # monkeysphere-server: MonkeySphere server admin tool
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 ########################################################################
12 PGRM=$(basename $0)
13
14 SHARE=${MONKEYSPHERE_SHARE:="/usr/share/monkeysphere"}
15 export SHARE
16 . "${SHARE}/common" || exit 1
17
18 VARLIB="/var/lib/monkeysphere"
19 export VARLIB
20
21 # date in UTF format if needed
22 DATE=$(date -u '+%FT%T')
23
24 # unset some environment variables that could screw things up
25 unset GREP_OPTIONS
26
27 # default return code
28 RETURN=0
29
30 ########################################################################
31 # FUNCTIONS
32 ########################################################################
33
34 usage() {
35 cat <<EOF
36 usage: $PGRM <subcommand> [options] [args]
37 MonkeySphere server admin tool.
38
39 subcommands:
40   update-users (u) [USER]...            update user authorized_keys files
41
42   gen-key (g) [HOSTNAME]                generate gpg key for the server
43     -l|--length BITS                      key length in bits (2048)
44     -e|--expire EXPIRE                    date to expire
45     -r|--revoker FINGERPRINT              add a revoker
46   show-fingerprint (f)                  show server's host key fingerprint
47   publish-key (p)                       publish server's host key to keyserver
48
49   add-identity-certifier (a) KEYID      import and tsign a certification key
50     -n|--domain DOMAIN                    limit ID certifications to IDs in DOMAIN ()
51     -t|--trust TRUST                      trust level of certifier (full)
52     -d|--depth DEPTH                      trust depth for certifier (1)
53   remove-identity-certifier (r) KEYID   remove a certification key
54   list-identity-certifiers (l)          list certification keys
55
56   gpg-authentication-cmd CMD            gnupg-authentication command
57
58   help (h,?)                            this help
59
60 EOF
61 }
62
63 su_monkeysphere_user() {
64     su --preserve-environment "$MONKEYSPHERE_USER" -- -c "$@"
65 }
66
67 # function to interact with the host gnupg keyring
68 gpg_host() {
69     local returnCode
70
71     GNUPGHOME="$GNUPGHOME_HOST"
72     export GNUPGHOME
73
74     # NOTE: we supress this warning because we need the monkeysphere
75     # user to be able to read the host pubring.  we realize this might
76     # be problematic, but it's the simplest solution, without too much
77     # loss of security.
78     gpg --no-permission-warning "$@"
79     returnCode="$?"
80
81     # always reset the permissions on the host pubring so that the
82     # monkeysphere user can read the trust signatures
83     chgrp "$MONKEYSPHERE_USER" "${GNUPGHOME_HOST}/pubring.gpg"
84     chmod g+r "${GNUPGHOME_HOST}/pubring.gpg"
85     
86     return "$returnCode"
87 }
88
89 # function to interact with the authentication gnupg keyring
90 # FIXME: this function requires basically accepts only a single
91 # argument because of problems with quote expansion.  this needs to be
92 # fixed/improved.
93 gpg_authentication() {
94     GNUPGHOME="$GNUPGHOME_AUTHENTICATION"
95     export GNUPGHOME
96
97     su_monkeysphere_user "gpg $@"
98 }
99
100 # update authorized_keys for users
101 update_users() {
102     if [ "$1" ] ; then
103         # get users from command line
104         unames="$@"
105     else
106         # or just look at all users if none specified
107         unames=$(getent passwd | cut -d: -f1)
108     fi
109
110     # set mode
111     MODE="authorized_keys"
112
113     # set gnupg home
114     GNUPGHOME="$GNUPGHOME_AUTHENTICATION"
115
116     # check to see if the gpg trust database has been initialized
117     if [ ! -s "${GNUPGHOME}/trustdb.gpg" ] ; then
118         failure "GNUPG trust database uninitialized.  Please see MONKEYSPHERE-SERVER(8)."
119     fi
120
121     # make sure the authorized_keys directory exists
122     mkdir -p "${VARLIB}/authorized_keys"
123
124     # loop over users
125     for uname in $unames ; do
126         # check all specified users exist
127         if ! getent passwd "$uname" >/dev/null ; then
128             log "----- unknown user '$uname' -----"
129             continue
130         fi
131
132         # set authorized_user_ids and raw authorized_keys variables,
133         # translating ssh-style path variables
134         authorizedUserIDs=$(translate_ssh_variables "$uname" "$AUTHORIZED_USER_IDS")
135         rawAuthorizedKeys=$(translate_ssh_variables "$uname" "$RAW_AUTHORIZED_KEYS")
136
137         # if neither is found, skip user
138         if [ ! -s "$authorizedUserIDs" ] ; then
139             if [ "$rawAuthorizedKeys" = '-' -o ! -s "$rawAuthorizedKeys" ] ; then
140                 continue
141             fi
142         fi
143
144         log "----- user: $uname -----"
145
146         if ! check_key_file_permissions "$uname" "$AUTHORIZED_USER_IDS" ; then
147             log "Improper permissions on authorized_user_ids file."
148             continue
149         fi
150
151         if ! check_key_file_permissions "$uname" "$RAW_AUTHORIZED_KEYS" ; then
152             log "Improper permissions on authorized_keys file."
153             continue
154         fi
155
156         # make temporary directory
157         TMPDIR=$(mktemp -d)
158
159         # trap to delete temporary directory on exit
160         trap "rm -rf $TMPDIR" EXIT
161
162         # create temporary authorized_user_ids file
163         TMP_AUTHORIZED_USER_IDS="${TMPDIR}/authorized_user_ids"
164         touch "$TMP_AUTHORIZED_USER_IDS"
165
166         # create temporary authorized_keys file
167         AUTHORIZED_KEYS="${TMPDIR}/authorized_keys"
168         touch "$AUTHORIZED_KEYS"
169
170         # set restrictive permissions on the temporary files
171         # FIXME: is there a better way to do this?
172         chmod 0700 "$TMPDIR"
173         chmod 0600 "$AUTHORIZED_KEYS"
174         chmod 0600 "$TMP_AUTHORIZED_USER_IDS"
175         chown -R "$MONKEYSPHERE_USER" "$TMPDIR"
176
177         # if the authorized_user_ids file exists...
178         if [ -s "$authorizedUserIDs" ] ; then
179             # copy user authorized_user_ids file to temporary
180             # location
181             cat "$authorizedUserIDs" > "$TMP_AUTHORIZED_USER_IDS"
182
183             # export needed variables
184             export AUTHORIZED_KEYS
185             export TMP_AUTHORIZED_USER_IDS
186
187             # process authorized_user_ids file, as monkeysphere
188             # user
189             su_monkeysphere_user \
190                 ". ${SHARE}/common; process_authorized_user_ids $TMP_AUTHORIZED_USER_IDS"
191             RETURN="$?"
192         fi
193
194         # add user-controlled authorized_keys file path if specified
195         if [ "$rawAuthorizedKeys" != '-' -a -s "$rawAuthorizedKeys" ] ; then
196             log -n "adding raw authorized_keys file... "
197             cat "$rawAuthorizedKeys" >> "$AUTHORIZED_KEYS"
198             loge "done."
199         fi
200
201         # openssh appears to check the contents of the
202         # authorized_keys file as the user in question, so the
203         # file must be readable by that user at least.
204         # FIXME: is there a better way to do this?
205         chown root "$AUTHORIZED_KEYS"
206         chgrp $(getent passwd "$uname" | cut -f4 -d:) "$AUTHORIZED_KEYS"
207         chmod g+r "$AUTHORIZED_KEYS"
208
209         # if the resulting authorized_keys file is not empty, move
210         # it into place
211         mv -f "$AUTHORIZED_KEYS" "${VARLIB}/authorized_keys/${uname}"
212
213         # destroy temporary directory
214         rm -rf "$TMPDIR"
215     done
216 }
217
218 # generate server gpg key
219 gen_key() {
220     local keyType
221     local keyLength
222     local keyUsage
223     local keyExpire
224     local revoker
225     local hostName
226     local userID
227     local keyParameters
228     local fingerprint
229
230     # set default key parameter values
231     keyType="RSA"
232     keyLength="2048"
233     keyUsage="auth"
234     keyExpire=
235     revoker=
236
237     # get options
238     TEMP=$(getopt -o l:e:r: -l length:,expire:,revoker: -n "$PGRM" -- "$@")
239
240     if [ $? != 0 ] ; then
241         exit 1
242     fi
243
244     # Note the quotes around `$TEMP': they are essential!
245     eval set -- "$TEMP"
246
247     while true ; do
248         case "$1" in
249             -l|--length)
250                 keyLength="$2"
251                 shift 2
252                 ;;
253             -e|--expire)
254                 keyExpire="$2"
255                 shift 2
256                 ;;
257             -r|--revoker)
258                 revoker="$2"
259                 shift 2
260                 ;;
261             --)
262                 shift
263                 ;;
264             *)
265                 break
266                 ;;
267         esac
268     done
269
270     hostName=${1:-$(hostname --fqdn)}
271     userID="ssh://${hostName}"
272
273     # check for presense of key with user ID
274     if gpg_host --list-key ="$userID" > /dev/null 2>&1 ; then
275         failure "Key for '$userID' already exists"
276     fi
277
278     # prompt about key expiration if not specified
279     if [ -z "$keyExpire" ] ; then
280         cat <<EOF
281 Please specify how long the key should be valid.
282          0 = key does not expire
283       <n>  = key expires in n days
284       <n>w = key expires in n weeks
285       <n>m = key expires in n months
286       <n>y = key expires in n years
287 EOF
288         while [ -z "$keyExpire" ] ; do
289             read -p "Key is valid for? (0) " keyExpire
290             if ! test_gpg_expire ${keyExpire:=0} ; then
291                 echo "invalid value"
292                 unset keyExpire
293             fi
294         done
295     elif ! test_gpg_expire "$keyExpire" ; then
296         failure "invalid key expiration value '$keyExpire'."
297     fi
298
299     # set key parameters
300     keyParameters=$(cat <<EOF
301 Key-Type: $keyType
302 Key-Length: $keyLength
303 Key-Usage: $keyUsage
304 Name-Real: $userID
305 Expire-Date: $keyExpire
306 EOF
307 )
308
309     # add the revoker field if specified
310     # FIXME: the "1:" below assumes that $REVOKER's key is an RSA key.
311     # FIXME: key is marked "sensitive"?  is this appropriate?
312     if [ "$revoker" ] ; then
313         keyParameters="${keyParameters}"$(cat <<EOF
314 Revoker: 1:$revoker sensitive
315 EOF
316 )
317     fi
318
319     echo "The following key parameters will be used for the host private key:"
320     echo "$keyParameters"
321
322     read -p "Generate key? (Y/n) " OK; OK=${OK:=Y}
323     if [ ${OK/y/Y} != 'Y' ] ; then
324         failure "aborting."
325     fi
326
327     # add commit command
328     keyParameters="${keyParameters}"$(cat <<EOF
329
330 %commit
331 %echo done
332 EOF
333 )
334
335     log "generating server key..."
336     echo "$keyParameters" | gpg_host --batch --gen-key
337
338     # output the server fingerprint
339     fingerprint_server_key "=${userID}"
340
341     # find the key fingerprint of the server primary key
342     fingerprint=$(gpg_host --list-key --with-colons --with-fingerprint "=${userID}" | \
343         grep '^fpr:' | head -1 | cut -d: -f10)
344
345     # translate the private key to ssh format, and export to a file
346     # for sshs usage.
347     # NOTE: assumes that the primary key is the proper key to use
348     (umask 077 && \
349         gpg_host --export-secret-key "$fingerprint" | \
350         openpgp2ssh "$fingerprint" > "${VARLIB}/ssh_host_rsa_key")
351     log "Private SSH host key output to file: ${VARLIB}/ssh_host_rsa_key"
352 }
353
354 # gpg output key fingerprint
355 fingerprint_server_key() {
356     gpg_host --fingerprint --list-secret-keys
357 }
358
359 # publish server key to keyserver
360 publish_server_key() {
361     read -p "Really publish key to $KEYSERVER? (y/N) " OK; OK=${OK:=N}
362     if [ ${OK/y/Y} != 'Y' ] ; then
363         failure "aborting."
364     fi
365
366     # publish host key
367     # FIXME: need to figure out better way to identify host key
368     # dummy command so as not to publish fakes keys during testing
369     # eventually:
370     #gpg_authentication "--keyserver $KEYSERVER --send-keys $(hostname -f)"
371     echo "NOT PUBLISHED (to avoid permanent publication errors during monkeysphere development)."
372     echo "The following command should publish the key:"
373     echo "monkeysphere-server gpg-authentication-cmd '--keyserver $KEYSERVER --send-keys $(hostname -f)'"
374     exit 255
375 }
376
377 # retrieve key from web of trust, import it into the host keyring, and
378 # ltsign the key in the host keyring so that it may certify other keys
379 add_certifier() {
380     local domain
381     local trust
382     local depth
383     local keyID
384     local fingerprint
385     local ltsignCommand
386     local trustval
387
388     # set default values for trust depth and domain
389     domain=
390     trust=full
391     depth=1
392
393     # get options
394     TEMP=$(getopt -o n:t:d: -l domain:,trust:,depth: -n "$PGRM" -- "$@")
395
396     if [ $? != 0 ] ; then
397         exit 1
398     fi
399
400     # Note the quotes around `$TEMP': they are essential!
401     eval set -- "$TEMP"
402
403     while true ; do
404         case "$1" in
405             -n|--domain)
406                 domain="$2"
407                 shift 2
408                 ;;
409             -t|--trust)
410                 trust="$2"
411                 shift 2
412                 ;;
413             -d|--depth)
414                 depth="$2"
415                 shift 2
416                 ;;
417             --)
418                 shift
419                 ;;
420             *)
421                 break
422                 ;;
423         esac
424     done
425
426     keyID="$1"
427     if [ -z "$keyID" ] ; then
428         failure "You must specify the key ID of a key to add."
429     fi
430     export keyID
431
432     # export host ownertrust to authentication keyring
433     gpg_host --export-ownertrust | gpg_authentication "--import-ownertrust"
434
435     # get the key from the key server
436     gpg_authentication "--keyserver $KEYSERVER --recv-key '$keyID'"
437
438     # get the full fingerprint of a key ID
439     fingerprint=$(gpg_authentication "--list-key --with-colons --with-fingerprint $keyID" | \
440         grep '^fpr:' | grep "$keyID" | cut -d: -f10)
441
442     echo "key found:"
443     gpg_authentication "--fingerprint $fingerprint"
444
445     echo "Are you sure you want to add this key as a certifier of"
446     read -p "users on this system? (y/N) " OK; OK=${OK:-N}
447     if [ "${OK/y/Y}" != 'Y' ] ; then
448         failure "aborting."
449     fi
450
451     # export the key to the host keyring
452     gpg_authentication "--export $keyID" | gpg_host --import
453
454     if [ "$trust" == marginal ]; then
455         trustval=1
456     elif [ "$trust" == full ]; then
457         trustval=2
458     else
459         failure "trust value requested ('$trust') was unclear (only 'marginal' or 'full' are supported)"
460     fi
461
462     # ltsign command
463     # NOTE: *all* user IDs will be ltsigned
464     ltsignCommand=$(cat <<EOF
465 ltsign
466 y
467 $trustval
468 $depth
469 $domain
470 y
471 save
472 EOF
473 )
474
475     # ltsign the key
476     echo "$ltsignCommand" | gpg_host --quiet --command-fd 0 --edit-key "$fingerprint"
477
478     # update the trustdb for the authentication keyring
479     gpg_authentication "--check-trustdb"
480 }
481
482 # delete a certifiers key from the host keyring
483 remove_certifier() {
484     local keyID
485     local fingerprint
486
487     keyID="$1"
488     if [ -z "$keyID" ] ; then
489         failure "You must specify the key ID of a key to remove."
490     fi
491
492     # delete the requested key (with prompting)
493     gpg_host --delete-key "$keyID"
494
495     # update the trustdb for the authentication keyring
496     gpg_authentication "--check-trustdb"
497 }
498
499 # list the host certifiers
500 list_certifiers() {
501     gpg_host --list-keys
502 }
503
504 # issue command to gpg-authentication keyring
505 gpg_authentication_cmd() {
506     gpg_authentication "$@"
507 }
508
509 ########################################################################
510 # MAIN
511 ########################################################################
512
513 # unset variables that should be defined only in config file
514 unset KEYSERVER
515 unset AUTHORIZED_USER_IDS
516 unset RAW_AUTHORIZED_KEYS
517 unset MONKEYSPHERE_USER
518
519 # load configuration file
520 [ -e ${MONKEYSPHERE_SERVER_CONFIG:="${ETC}/monkeysphere-server.conf"} ] && . "$MONKEYSPHERE_SERVER_CONFIG"
521
522 # set empty config variable with ones from the environment, or with
523 # defaults
524 KEYSERVER=${MONKEYSPHERE_KEYSERVER:=${KEYSERVER:="subkeys.pgp.net"}}
525 AUTHORIZED_USER_IDS=${MONKEYSPHERE_AUTHORIZED_USER_IDS:=${AUTHORIZED_USER_IDS:="%h/.config/monkeysphere/authorized_user_ids"}}
526 RAW_AUTHORIZED_KEYS=${MONKEYSPHERE_RAW_AUTHORIZED_KEYS:=${RAW_AUTHORIZED_KEYS:="%h/.ssh/authorized_keys"}}
527 MONKEYSPHERE_USER=${MONKEYSPHERE_MONKEYSPHERE_USER:=${MONKEYSPHERE_USER:="monkeysphere"}}
528
529 # other variables
530 CHECK_KEYSERVER=${MONKEYSPHERE_CHECK_KEYSERVER:="true"}
531 REQUIRED_USER_KEY_CAPABILITY=${MONKEYSPHERE_REQUIRED_USER_KEY_CAPABILITY:="a"}
532 GNUPGHOME_HOST=${MONKEYSPHERE_GNUPGHOME_HOST:="${VARLIB}/gnupg-host"}
533 GNUPGHOME_AUTHENTICATION=${MONKEYSPHERE_GNUPGHOME_AUTHENTICATION:="${VARLIB}/gnupg-authentication"}
534
535 # export variables needed in su invocation
536 export DATE
537 export MODE
538 export MONKEYSPHERE_USER
539 export KEYSERVER
540 export CHECK_KEYSERVER
541 export REQUIRED_USER_KEY_CAPABILITY
542 export GNUPGHOME_HOST
543 export GNUPGHOME_AUTHENTICATION
544 export GNUPGHOME
545
546 # get subcommand
547 COMMAND="$1"
548 [ "$COMMAND" ] || failure "Type '$PGRM help' for usage."
549 shift
550
551 case $COMMAND in
552     'update-users'|'update-user'|'u')
553         update_users "$@"
554         ;;
555
556     'gen-key'|'g')
557         gen_key "$@"
558         ;;
559
560     'show-fingerprint'|'f')
561         fingerprint_server_key
562         ;;
563
564     'publish-key'|'p')
565         publish_server_key
566         ;;
567
568     'add-identity-certifier'|'add-certifier'|'a')
569         add_certifier "$1"
570         ;;
571
572     'remove-identity-certifier'|'remove-certifier'|'r')
573         remove_certifier "$1"
574         ;;
575
576     'list-identity-certifiers'|'list-certifiers'|'list-certifier'|'l')
577         list_certifiers "$@"
578         ;;
579
580     'gpg-authentication-cmd')
581         gpg_authentication_cmd "$@"
582         ;;
583
584     'help'|'h'|'?')
585         usage
586         ;;
587
588     *)
589         failure "Unknown command: '$COMMAND'
590 Type '$PGRM help' for usage."
591         ;;
592 esac
593
594 exit "$RETURN"