summaryrefslogtreecommitdiff
path: root/src/monkeysphere-authentication
blob: c349e6fc93c3c062e07b0d5c4f60b3ca2f7daf07 (plain)
  1. #!/usr/bin/env bash
  2. # monkeysphere-authentication: Monkeysphere authentication admin tool
  3. #
  4. # The monkeysphere scripts are written by:
  5. # Jameson Rollins <jrollins@finestructure.net>
  6. # Jamie McClelland <jm@mayfirst.org>
  7. # Daniel Kahn Gillmor <dkg@fifthhorseman.net>
  8. # Micah Anderson <micah@riseup.net>
  9. #
  10. # They are Copyright 2008-2009, and are all released under the GPL,
  11. # version 3 or later.
  12. ########################################################################
  13. set -e
  14. PGRM=$(basename $0)
  15. SYSSHAREDIR=${MONKEYSPHERE_SYSSHAREDIR:-"/usr/share/monkeysphere"}
  16. export SYSSHAREDIR
  17. . "${SYSSHAREDIR}/common" || exit 1
  18. SYSDATADIR=${MONKEYSPHERE_SYSDATADIR:-"/var/lib/monkeysphere"}
  19. export SYSDATADIR
  20. # sharedir for authentication functions
  21. MASHAREDIR="${SYSSHAREDIR}/ma"
  22. # datadir for authentication functions
  23. MADATADIR="${SYSDATADIR}/authentication"
  24. # temp directory to enable atomic moves of authorized_keys files
  25. MATMPDIR="${MADATADIR}/tmp"
  26. export MATMPDIR
  27. # UTC date in ISO 8601 format if needed
  28. DATE=$(date -u '+%FT%T')
  29. # unset some environment variables that could screw things up
  30. unset GREP_OPTIONS
  31. # default return code
  32. RETURN=0
  33. ########################################################################
  34. # FUNCTIONS
  35. ########################################################################
  36. usage() {
  37. cat <<EOF >&2
  38. usage: $PGRM <subcommand> [options] [args]
  39. Monkeysphere authentication admin tool.
  40. subcommands:
  41. setup (s) setup monkeysphere user authentication
  42. update-users (u) [USER]... update user authorized_keys files
  43. add-id-certifier (c+) KEYID import and tsign a certification key
  44. --domain (-n) DOMAIN limit ID certifications to DOMAIN
  45. --trust (-t) TRUST trust level of certifier (full)
  46. --depth (-d) DEPTH trust depth for certifier (1)
  47. remove-id-certifier (c-) KEYID remove a certification key
  48. list-id-certifiers (c) list certification keys
  49. version (v) show version number
  50. help (h,?) this help
  51. See ${PGRM}(8) for more info.
  52. EOF
  53. }
  54. # function to interact with the gpg core keyring
  55. gpg_core() {
  56. GNUPGHOME="$GNUPGHOME_CORE"
  57. export GNUPGHOME
  58. gpg "$@"
  59. }
  60. # function to interact with the gpg sphere keyring
  61. # FIXME: this function requires only a single argument because of
  62. # problems with quote expansion. this needs to be fixed/improved.
  63. gpg_sphere() {
  64. GNUPGHOME="$GNUPGHOME_SPHERE"
  65. export GNUPGHOME
  66. su_monkeysphere_user "gpg $@"
  67. }
  68. # output to stdout the core fingerprint from the gpg core secret
  69. # keyring
  70. core_fingerprint() {
  71. log debug "determining core key fingerprint..."
  72. gpg_core --quiet --list-secret-key \
  73. --with-colons --fixed-list-mode --with-fingerprint \
  74. | grep ^fpr: | cut -d: -f10
  75. }
  76. # fail if authentication has not been setup
  77. check_no_setup() {
  78. # FIXME: what is the right test to do here?
  79. [ -d "$MADATADIR" ] \
  80. || failure "This host appears to have not yet been set up for Monkeysphere authentication.
  81. Please run 'monkeysphere-authentication setup' first."
  82. }
  83. # export signatures from core to sphere
  84. gpg_core_sphere_sig_transfer() {
  85. log debug "exporting core local sigs to sphere..."
  86. gpg_core --export-options export-local-sigs --export | \
  87. gpg_sphere "--import-options import-local-sigs --import"
  88. }
  89. ########################################################################
  90. # MAIN
  91. ########################################################################
  92. # unset variables that should be defined only in config file of in
  93. # MONKEYSPHERE_ variables
  94. unset LOG_LEVEL
  95. unset KEYSERVER
  96. unset AUTHORIZED_USER_IDS
  97. unset RAW_AUTHORIZED_KEYS
  98. unset MONKEYSPHERE_USER
  99. unset PROMPT
  100. # load configuration file
  101. [ -e ${MONKEYSPHERE_AUTHENTICATION_CONFIG:="${SYSCONFIGDIR}/monkeysphere-authentication.conf"} ] && . "$MONKEYSPHERE_AUTHENTICATION_CONFIG"
  102. # set empty config variable with ones from the environment, or with
  103. # defaults
  104. LOG_LEVEL=${MONKEYSPHERE_LOG_LEVEL:=${LOG_LEVEL:="INFO"}}
  105. KEYSERVER=${MONKEYSPHERE_KEYSERVER:=${KEYSERVER:="pool.sks-keyservers.net"}}
  106. AUTHORIZED_USER_IDS=${MONKEYSPHERE_AUTHORIZED_USER_IDS:=${AUTHORIZED_USER_IDS:="%h/.monkeysphere/authorized_user_ids"}}
  107. RAW_AUTHORIZED_KEYS=${MONKEYSPHERE_RAW_AUTHORIZED_KEYS:=${RAW_AUTHORIZED_KEYS:="%h/.ssh/authorized_keys"}}
  108. MONKEYSPHERE_USER=${MONKEYSPHERE_MONKEYSPHERE_USER:=${MONKEYSPHERE_USER:="monkeysphere"}}
  109. PROMPT=${MONKEYSPHERE_PROMPT:=${PROMPT:="true"}}
  110. # other variables
  111. CHECK_KEYSERVER=${MONKEYSPHERE_CHECK_KEYSERVER:="true"}
  112. REQUIRED_USER_KEY_CAPABILITY=${MONKEYSPHERE_REQUIRED_USER_KEY_CAPABILITY:="a"}
  113. GNUPGHOME_CORE=${MONKEYSPHERE_GNUPGHOME_CORE:="${MADATADIR}/core"}
  114. GNUPGHOME_SPHERE=${MONKEYSPHERE_GNUPGHOME_SPHERE:="${MADATADIR}/sphere"}
  115. CORE_KEYLENGTH=${MONKEYSPHERE_CORE_KEYLENGTH:="2048"}
  116. # export variables needed in su invocation
  117. export DATE
  118. export MODE
  119. export LOG_LEVEL
  120. export KEYSERVER
  121. export MONKEYSPHERE_USER
  122. export PROMPT
  123. export CHECK_KEYSERVER
  124. export REQUIRED_USER_KEY_CAPABILITY
  125. export GNUPGHOME_CORE
  126. export GNUPGHOME_SPHERE
  127. export GNUPGHOME
  128. export CORE_KEYLENGTH
  129. # get subcommand
  130. COMMAND="$1"
  131. [ "$COMMAND" ] || failure "Type '$PGRM help' for usage."
  132. shift
  133. case $COMMAND in
  134. 'setup'|'setup'|'s')
  135. source "${MASHAREDIR}/setup"
  136. setup "$@"
  137. ;;
  138. 'update-users'|'update-user'|'u')
  139. check_no_setup
  140. source "${MASHAREDIR}/update_users"
  141. update_users "$@"
  142. ;;
  143. 'add-identity-certifier'|'add-id-certifier'|'add-certifier'|'c+')
  144. check_no_setup
  145. source "${MASHAREDIR}/add_certifier"
  146. add_certifier "$@"
  147. ;;
  148. 'remove-identity-certifier'|'remove-id-certifier'|'remove-certifier'|'c-')
  149. check_no_setup
  150. source "${MASHAREDIR}/remove_certifier"
  151. remove_certifier "$@"
  152. ;;
  153. 'list-identity-certifiers'|'list-id-certifiers'|'list-certifiers'|'list-certifier'|'c')
  154. check_no_setup
  155. source "${MASHAREDIR}/list_certifiers"
  156. list_certifiers "$@"
  157. ;;
  158. 'diagnostics'|'d')
  159. source "${MASHAREDIR}/diagnostics"
  160. diagnostics
  161. ;;
  162. 'gpg-cmd')
  163. check_no_setup
  164. gpg_sphere "$@"
  165. ;;
  166. 'version'|'v')
  167. echo "$VERSION"
  168. ;;
  169. '--help'|'help'|'-h'|'h'|'?')
  170. usage
  171. ;;
  172. *)
  173. failure "Unknown command: '$COMMAND'
  174. Type '$PGRM help' for usage."
  175. ;;
  176. esac
  177. exit "$RETURN"