summaryrefslogtreecommitdiff
path: root/src/monkeysphere-authentication
blob: 231618355d497cfa39d9bef35753d984e9bd459c (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 MSTMPDIR
  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. expert <expert-subcommand> run expert command
  50. expert help expert command help
  51. version (v) show version number
  52. help (h,?) this help
  53. EOF
  54. }
  55. # function to run command as monkeysphere user
  56. su_monkeysphere_user() {
  57. # if the current user is the monkeysphere user, then just eval
  58. # command
  59. if [ $(id -un) = "$MONKEYSPHERE_USER" ] ; then
  60. eval "$@"
  61. # otherwise su command as monkeysphere user
  62. else
  63. su "$MONKEYSPHERE_USER" -c "$@"
  64. fi
  65. }
  66. # function to interact with the gpg core keyring
  67. gpg_core() {
  68. GNUPGHOME="$GNUPGHOME_CORE"
  69. export GNUPGHOME
  70. # NOTE: we supress this warning because we need the monkeysphere
  71. # user to be able to read the host pubring. we realize this might
  72. # be problematic, but it's the simplest solution, without too much
  73. # loss of security.
  74. gpg "$@"
  75. }
  76. # function to interact with the gpg sphere keyring
  77. # FIXME: this function requires basically accepts only a single
  78. # argument because of problems with quote expansion. this needs to be
  79. # fixed/improved.
  80. gpg_sphere() {
  81. GNUPGHOME="$GNUPGHOME_SPHERE"
  82. export GNUPGHOME
  83. su_monkeysphere_user "gpg $@"
  84. }
  85. # export signatures from core to sphere
  86. gpg_core_sphere_sig_transfer() {
  87. gpg_core --export-options export-local-sigs --export | \
  88. gpg_sphere --import-options import-local-sigs --import
  89. }
  90. ########################################################################
  91. # MAIN
  92. ########################################################################
  93. # unset variables that should be defined only in config file
  94. unset KEYSERVER
  95. unset AUTHORIZED_USER_IDS
  96. unset RAW_AUTHORIZED_KEYS
  97. unset MONKEYSPHERE_USER
  98. # load configuration file
  99. [ -e ${MONKEYSPHERE_AUTHENTICATION_CONFIG:="${SYSCONFIGDIR}/monkeysphere-authentication.conf"} ] && . "$MONKEYSPHERE_AUTHENTICATION_CONFIG"
  100. # set empty config variable with ones from the environment, or with
  101. # defaults
  102. LOG_LEVEL=${MONKEYSPHERE_LOG_LEVEL:=${LOG_LEVEL:="INFO"}}
  103. KEYSERVER=${MONKEYSPHERE_KEYSERVER:=${KEYSERVER:="pool.sks-keyservers.net"}}
  104. AUTHORIZED_USER_IDS=${MONKEYSPHERE_AUTHORIZED_USER_IDS:=${AUTHORIZED_USER_IDS:="%h/.monkeysphere/authorized_user_ids"}}
  105. RAW_AUTHORIZED_KEYS=${MONKEYSPHERE_RAW_AUTHORIZED_KEYS:=${RAW_AUTHORIZED_KEYS:="%h/.ssh/authorized_keys"}}
  106. MONKEYSPHERE_USER=${MONKEYSPHERE_MONKEYSPHERE_USER:=${MONKEYSPHERE_USER:="monkeysphere"}}
  107. # other variables
  108. CHECK_KEYSERVER=${MONKEYSPHERE_CHECK_KEYSERVER:="true"}
  109. REQUIRED_USER_KEY_CAPABILITY=${MONKEYSPHERE_REQUIRED_USER_KEY_CAPABILITY:="a"}
  110. GNUPGHOME_CORE=${MONKEYSPHERE_GNUPGHOME_CORE:="${MADATADIR}/core"}
  111. GNUPGHOME_SPHERE=${MONKEYSPHERE_GNUPGHOME_SPHERE:="${MADATADIR}/sphere"}
  112. # export variables needed in su invocation
  113. export DATE
  114. export MODE
  115. export LOG_LEVEL
  116. export MONKEYSPHERE_USER
  117. export KEYSERVER
  118. export CHECK_KEYSERVER
  119. export REQUIRED_USER_KEY_CAPABILITY
  120. export GNUPGHOME_CORE
  121. export GNUPGHOME_SPHERE
  122. export GNUPGHOME
  123. # get subcommand
  124. COMMAND="$1"
  125. [ "$COMMAND" ] || failure "Type '$PGRM help' for usage."
  126. shift
  127. case $COMMAND in
  128. 'setup'|'setup'|'s')
  129. source "${MASHAREDIR}/setup"
  130. setup "$@"
  131. ;;
  132. 'update-users'|'update-user'|'u')
  133. source "${MASHAREDIR}/update_users"
  134. update_users "$@"
  135. ;;
  136. 'add-identity-certifier'|'add-id-certifier'|'add-certifier'|'c+')
  137. source "${MASHAREDIR}/add_certifier"
  138. add_certifier "$@"
  139. ;;
  140. 'remove-identity-certifier'|'remove-id-certifier'|'remove-certifier'|'c-')
  141. source "${MASHAREDIR}/remove_certifier"
  142. remove_certifier "$@"
  143. ;;
  144. 'list-identity-certifiers'|'list-id-certifiers'|'list-certifiers'|'list-certifier'|'c')
  145. source "${MASHAREDIR}/list_certifiers"
  146. list_certifiers "$@"
  147. ;;
  148. 'expert'|'e')
  149. SUBCOMMAND="$1"
  150. shift
  151. case "$SUBCOMMAND" in
  152. 'help'|'h'|'?')
  153. cat <<EOF
  154. usage: $PGRM expert <subcommand> [options] [args]
  155. expert subcommands:
  156. diagnostics (d) monkeysphere authentication status
  157. gpg-cmd CMD execute gpg command
  158. EOF
  159. ;;
  160. 'diagnostics'|'d')
  161. source "${MASHAREDIR}/diagnostics"
  162. diagnostics
  163. ;;
  164. 'gpg-cmd')
  165. gpg_sphere "$@"
  166. ;;
  167. *)
  168. failure "Unknown expert subcommand: '$COMMAND'
  169. Type '$PGRM help' for usage."
  170. ;;
  171. esac
  172. ;;
  173. 'version'|'v')
  174. echo "$VERSION"
  175. ;;
  176. '--help'|'help'|'-h'|'h'|'?')
  177. usage
  178. ;;
  179. *)
  180. failure "Unknown command: '$COMMAND'
  181. Type '$PGRM help' for usage."
  182. ;;
  183. esac
  184. exit "$RETURN"