summaryrefslogtreecommitdiff
path: root/src/monkeysphere-authentication
blob: c924034e8cfddfa475e399d289b7047fd74d648e (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. # set the pipefail option so pipelines fail on first command failure
  15. set -o pipefail
  16. PGRM=$(basename $0)
  17. SYSSHAREDIR=${MONKEYSPHERE_SYSSHAREDIR:-"__SYSSHAREDIR_PREFIX__/share/monkeysphere"}
  18. export SYSSHAREDIR
  19. . "${SYSSHAREDIR}/defaultenv"
  20. . "${SYSSHAREDIR}/common"
  21. # sharedir for authentication functions
  22. MASHAREDIR="${SYSSHAREDIR}/ma"
  23. # datadir for authentication functions
  24. MADATADIR="${SYSDATADIR}/authentication"
  25. # temp directory to enable atomic moves of authorized_keys files
  26. MATMPDIR="${MADATADIR}/tmp"
  27. export MATMPDIR
  28. # UTC date in ISO 8601 format if needed
  29. DATE=$(date -u '+%FT%T')
  30. # unset some environment variables that could screw things up
  31. unset GREP_OPTIONS
  32. ########################################################################
  33. # FUNCTIONS
  34. ########################################################################
  35. usage() {
  36. cat <<EOF >&2
  37. usage: $PGRM <subcommand> [options] [args]
  38. Monkeysphere authentication admin tool.
  39. subcommands:
  40. update-users (u) [USER]... update user authorized_keys files
  41. refresh-keys (r) refresh keys in keyring
  42. keys-for-user USER output valid keys for user
  43. add-id-certifier (c+) KEYID|FILE import and tsign a certification key
  44. [--domain (-n) DOMAIN] limit ID certifications to DOMAIN
  45. [--trust (-t) TRUST] trust level of certifier (default: full)
  46. [--depth (-d) DEPTH] trust depth for certifier (default: 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 --no-greeting --quiet --no-tty "$@"
  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 --no-greeting --quiet --no-tty $@"
  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 --list-secret-key --with-colons \
  73. --fixed-list-mode --with-fingerprint \
  74. | grep ^fpr: | cut -d: -f10
  75. }
  76. # export signatures from core to sphere
  77. gpg_core_sphere_sig_transfer() {
  78. log debug "exporting core local sigs to sphere..."
  79. gpg_core --export-options export-local-sigs --export | \
  80. gpg_sphere "--import-options import-local-sigs --import" 2>&1 | log debug
  81. }
  82. ########################################################################
  83. # MAIN
  84. ########################################################################
  85. # set unset default variables
  86. AUTHORIZED_USER_IDS="%h/.monkeysphere/authorized_user_ids"
  87. RAW_AUTHORIZED_KEYS="%h/.ssh/authorized_keys"
  88. # load configuration file
  89. [ -e ${MONKEYSPHERE_AUTHENTICATION_CONFIG:="${SYSCONFIGDIR}/monkeysphere-authentication.conf"} ] \
  90. && . "$MONKEYSPHERE_AUTHENTICATION_CONFIG"
  91. # set empty config variable with ones from the environment
  92. LOG_LEVEL=${MONKEYSPHERE_LOG_LEVEL:=$LOG_LEVEL}
  93. KEYSERVER=${MONKEYSPHERE_KEYSERVER:=$KEYSERVER}
  94. CHECK_KEYSERVER=${MONKEYSPHERE_CHECK_KEYSERVER:=$CHECK_KEYSERVER}
  95. MONKEYSPHERE_USER=${MONKEYSPHERE_MONKEYSPHERE_USER:=$MONKEYSPHERE_USER}
  96. MONKEYSPHERE_GROUP=$(get_primary_group "$MONKEYSPHERE_USER")
  97. PROMPT=${MONKEYSPHERE_PROMPT:=$PROMPT}
  98. AUTHORIZED_USER_IDS=${MONKEYSPHERE_AUTHORIZED_USER_IDS:=$AUTHORIZED_USER_IDS}
  99. RAW_AUTHORIZED_KEYS=${MONKEYSPHERE_RAW_AUTHORIZED_KEYS:=$RAW_AUTHORIZED_KEYS}
  100. STRICT_MODES=${MONKEYSPHERE_STRICT_MODES:=$STRICT_MODES}
  101. # other variables
  102. REQUIRED_USER_KEY_CAPABILITY=${MONKEYSPHERE_REQUIRED_USER_KEY_CAPABILITY:="a"}
  103. GNUPGHOME_CORE=${MONKEYSPHERE_GNUPGHOME_CORE:="${MADATADIR}/core"}
  104. GNUPGHOME_SPHERE=${MONKEYSPHERE_GNUPGHOME_SPHERE:="${MADATADIR}/sphere"}
  105. CORE_KEYLENGTH=${MONKEYSPHERE_CORE_KEYLENGTH:="2048"}
  106. LOG_PREFIX=${MONKEYSPHERE_LOG_PREFIX:='ms: '}
  107. # export variables needed in su invocation
  108. export DATE
  109. export LOG_LEVEL
  110. export KEYSERVER
  111. export MONKEYSPHERE_USER
  112. export MONKEYSPHERE_GROUP
  113. export PROMPT
  114. export CHECK_KEYSERVER
  115. export REQUIRED_USER_KEY_CAPABILITY
  116. export GNUPGHOME_CORE
  117. export GNUPGHOME_SPHERE
  118. export GNUPGHOME
  119. export CORE_KEYLENGTH
  120. export LOG_PREFIX
  121. if [ "$#" -eq 0 ] ; then
  122. usage
  123. failure "Please supply a subcommand."
  124. fi
  125. # get subcommand
  126. COMMAND="$1"
  127. shift
  128. case $COMMAND in
  129. 'setup'|'setup'|'s')
  130. source "${MASHAREDIR}/setup"
  131. setup
  132. ;;
  133. 'update-users'|'update-user'|'update'|'u')
  134. source "${MASHAREDIR}/setup"
  135. setup
  136. source "${MASHAREDIR}/update_users"
  137. update_users "$@"
  138. ;;
  139. 'refresh-keys'|'refresh'|'r')
  140. source "${MASHAREDIR}/setup"
  141. setup
  142. gpg_sphere "--keyserver $KEYSERVER --refresh-keys"
  143. ;;
  144. 'keys-for-user')
  145. source "${MASHAREDIR}/keys_for_user"
  146. keys_for_user "$@"
  147. ;;
  148. 'add-identity-certifier'|'add-id-certifier'|'add-certifier'|'c+')
  149. source "${MASHAREDIR}/setup"
  150. setup
  151. source "${MASHAREDIR}/add_certifier"
  152. add_certifier "$@"
  153. ;;
  154. 'remove-identity-certifier'|'remove-id-certifier'|'remove-certifier'|'c-')
  155. source "${MASHAREDIR}/setup"
  156. setup
  157. source "${MASHAREDIR}/remove_certifier"
  158. remove_certifier "$@"
  159. ;;
  160. 'list-identity-certifiers'|'list-id-certifiers'|'list-certifiers'|'list-certifier'|'c')
  161. source "${MASHAREDIR}/setup"
  162. setup
  163. source "${MASHAREDIR}/list_certifiers"
  164. list_certifiers
  165. ;;
  166. 'diagnostics'|'d')
  167. source "${MASHAREDIR}/setup"
  168. setup
  169. source "${MASHAREDIR}/diagnostics"
  170. diagnostics
  171. ;;
  172. 'gpg-cmd')
  173. source "${MASHAREDIR}/setup"
  174. setup
  175. gpg_sphere "$@"
  176. ;;
  177. 'version'|'--version'|'v')
  178. version
  179. ;;
  180. '--help'|'help'|'-h'|'h'|'?')
  181. usage
  182. ;;
  183. *)
  184. failure "Unknown command: '$COMMAND'
  185. Try '$PGRM help' for usage."
  186. ;;
  187. esac