summaryrefslogtreecommitdiff
path: root/src/share/ma/setup
blob: 90f748e40d149cbea9bb546090ea4991b8ba1d79 (plain)
  1. # -*-shell-script-*-
  2. # This should be sourced by bash (though we welcome changes to make it POSIX sh compliant)
  3. # Monkeysphere authentication setup subcommand
  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. #
  10. # They are Copyright 2009, and are all released under the GPL,
  11. # version 3 or later.
  12. setup() {
  13. # make all needed directories
  14. mkdir -p "${MADATADIR}"
  15. mkdir -p "${MATMPDIR}"
  16. mkdir -p "${GNUPGHOME_CORE}"
  17. chmod 700 "${GNUPGHOME_CORE}"
  18. mkdir -p "${GNUPGHOME_SPHERE}"
  19. chmod 700 "${GNUPGHOME_SPHERE}"
  20. mkdir -p "${MADATADIR}"/authorized_keys
  21. # deliberately replace the config files via truncation
  22. # FIXME: should we be dumping to tmp files and then moving atomically?
  23. cat >"${GNUPGHOME_CORE}"/gpg.conf <<EOF
  24. # Monkeysphere trust core GnuPG configuration
  25. # This file is maintained by the Monkeysphere software.
  26. # Edits will be overwritten.
  27. no-greeting
  28. list-options show-uid-validity
  29. EOF
  30. cat >"${GNUPGHOME_SPHERE}"/gpg.conf <<EOF
  31. # Monkeysphere trust sphere GnuPG configuration
  32. # This file is maintained by the Monkeysphere software.
  33. # Edits will be overwritten.
  34. no-greeting
  35. primary-keyring ${GNUPGHOME_SPHERE}/pubring.gpg
  36. list-options show-uid-validity
  37. EOF
  38. # make sure the monkeysphere user owns everything in th sphere
  39. # gnupghome
  40. chown -R "$MONKEYPSHER_USER" "${GNUPGHOME_SPHERE}"
  41. chgrp -R "$MONKEYPSHER_USER" "${GNUPGHOME_SPHERE}"
  42. # get fingerprint of core key. this should be empty on unconfigured systems.
  43. local CORE_FPR=$(gpg_core --with-colons --fixed-list-mode --fingerprint --list-secret-key | grep ^fpr: | cut -f10 -d: )
  44. if [ -z "$CORE_FPR" ] ; then
  45. log info "Setting up Monkeysphere authentication trust core..."
  46. local CORE_UID=$(printf "Monkeysphere authentication trust core UID (random string: %s)" $(head -c21 </dev/urandom | base64))
  47. local TMPLOC=$(mktemp -d "${MATMPDIR}"/tmp.XXXXXXXXXX) || failure "Could not create temporary directory!"
  48. # generate the key with ssh-keygen...
  49. log debug "generating ssh key..."
  50. ssh-keygen -q -b 1024 -t rsa -N '' -f "${TMPLOC}/authkey" || failure "Could not generate new key for Monkeysphere authentication trust core"
  51. # and then translate to openpgp encoding and import
  52. # FIXME: pem2openpgp currently sets the A flag and a short
  53. # expiration date. We should set the C flag and no expiration
  54. # date.
  55. log debug "converting ssh key to pgp key and importing into core..."
  56. < "${TMPLOC}/authkey" pem2openpgp "$CORE_UID" | gpg_core --import || failure "Could not import new key for Monkeysphere authentication trust core"
  57. # get fingerprint of core key. should definitely not be empty at this point
  58. log debug "get core key fingerprint..."
  59. CORE_FPR=$(gpg_core --with-colons --fixed-list-mode --fingerprint --list-secret-key | grep ^fpr: | cut -f10 -d: )
  60. if [ -z "$CORE_FPR" ] ; then
  61. failure "Failed to create Monkeysphere authentication trust core!"
  62. fi
  63. else
  64. log verbose "This system has already set up the Monkeysphere authentication trust core."
  65. fi
  66. # ensure that the authentication sphere checker has absolute ownertrust on the expected key.
  67. log debug "set ultimate owner trust on core key in gpg_sphere..."
  68. printf "%s:6:\n" "$CORE_FPR" | gpg_sphere --import-ownertrust
  69. local ORIG_TRUST
  70. log debug "check gpg_sphere owner trust set properly..."
  71. if ORIG_TRUST=$(gpg_sphere --export-ownertrust | grep '^[^#]') ; then
  72. if [ "${CORE_FPR}:6:" != "$ORIG_TRUST" ] ; then
  73. failure "Monkeysphere authentication trust sphere should explicitly trust the core. It does not have proper ownertrust settings."
  74. fi
  75. else
  76. failure "Could not get monkeysphere-authentication trust guidelines."
  77. fi
  78. # ensure that we're using the extended trust model (1), and that
  79. # our preferences are reasonable (i.e. 3 marginal OR 1 fully
  80. # trusted certifications are sufficient to grant full validity.
  81. log debug "check trust level of core key..."
  82. if [ "1:3:1" != $(gpg_sphere --with-colons --fixed-list-mode --list-keys | head -n1 | grep ^tru: cut -f3,6,7 -d:) ] ; then
  83. failure "monkeysphere-authentication does not have the expected trust model settings."
  84. fi
  85. }