summaryrefslogtreecommitdiff
path: root/src/monkeysphere-host
blob: 9e73ad20debd75f516b0b6d82524a05c6bbb5c4b (plain)
  1. #!/usr/bin/env bash
  2. # monkeysphere-host: Monkeysphere host 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:-"/usr/share/monkeysphere"}
  18. export SYSSHAREDIR
  19. . "${SYSSHAREDIR}/common" || exit 1
  20. SYSDATADIR=${MONKEYSPHERE_SYSDATADIR:-"/var/lib/monkeysphere"}
  21. export SYSDATADIR
  22. # sharedir for host functions
  23. MHSHAREDIR="${SYSSHAREDIR}/mh"
  24. # datadir for host functions
  25. MHDATADIR="${SYSDATADIR}/host"
  26. # host pub key files
  27. HOST_KEY_FILE="${SYSDATADIR}/ssh_host_rsa_key.pub.gpg"
  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. # default return code
  33. RETURN=0
  34. ########################################################################
  35. # FUNCTIONS
  36. ########################################################################
  37. usage() {
  38. cat <<EOF >&2
  39. usage: $PGRM <subcommand> [options] [args]
  40. Monkeysphere host admin tool.
  41. subcommands:
  42. import-key (i) [NAME[:PORT]] import existing ssh key to gpg
  43. show-key (s) output all host key information
  44. set-expire (e) EXPIRE set host key expiration
  45. add-hostname (n+) NAME[:PORT] add hostname user ID to host key
  46. revoke-hostname (n-) NAME[:PORT] revoke hostname user ID
  47. add-revoker (o) FINGERPRINT add a revoker to the host key
  48. revoke-key (r) revoke host key
  49. publish-key (p) publish host key to keyserver
  50. version (v) show version number
  51. help (h,?) this help
  52. See ${PGRM}(8) for more info.
  53. EOF
  54. }
  55. # function to interact with the gpg keyring
  56. gpg_host() {
  57. GNUPGHOME="$GNUPGHOME_HOST" gpg --no-greeting --quiet --no-tty "$@"
  58. }
  59. # command to list the info about the host key, in colon format, to
  60. # stdout
  61. gpg_host_list() {
  62. gpg_host --list-keys --with-colons --fixed-list-mode \
  63. --with-fingerprint --with-fingerprint \
  64. "0x${HOST_FINGERPRINT}!"
  65. }
  66. # command for edit key scripts, takes scripts on stdin
  67. gpg_host_edit() {
  68. gpg_host --command-fd 0 --edit-key "0x${HOST_FINGERPRINT}!" "$@"
  69. }
  70. # export the host public key to the monkeysphere gpg pub key file
  71. update_gpg_pub_file() {
  72. log debug "updating openpgp public key file '$HOST_KEY_FILE'..."
  73. gpg_host --export --armor --export-options export-minimal \
  74. "0x${HOST_FINGERPRINT}!" > "$HOST_KEY_FILE"
  75. }
  76. # load the host fingerprint into the fingerprint variable, using the
  77. # export gpg pub key file
  78. # FIXME: this seems much less than ideal, with all this temp keyring
  79. # stuff. is there a way we can do this without having to create temp
  80. # files? what if we stored the fingerprint in MHDATADIR/fingerprint?
  81. load_fingerprint() {
  82. if [ -f "$HOST_KEY_FILE" ] ; then
  83. HOST_FINGERPRINT=$( \
  84. (FUBAR=$(mktemp -d) && export GNUPGHOME="$FUBAR" \
  85. && gpg --quiet --import \
  86. && gpg --quiet --list-keys --with-colons --with-fingerprint \
  87. && rm -rf "$FUBAR") <"$HOST_KEY_FILE" \
  88. | grep '^fpr:' | cut -d: -f10 )
  89. else
  90. HOST_FINGERPRINT=
  91. fi
  92. }
  93. # load the host fingerprint into the fingerprint variable, using the
  94. # gpg host secret key
  95. load_fingerprint_secret() {
  96. HOST_FINGERPRINT=$( \
  97. gpg_host --list-secret-key --with-colons --with-fingerprint \
  98. | grep '^fpr:' | cut -d: -f10 )
  99. }
  100. # fail if host key present
  101. check_host_key() {
  102. [ ! -s "$HOST_KEY_FILE" ] \
  103. || failure "An OpenPGP host key already exists."
  104. }
  105. # fail if host key not present
  106. check_host_no_key() {
  107. [ -s "$HOST_KEY_FILE" ] \
  108. || failure "You don't appear to have a Monkeysphere host key on this server.
  109. Please run 'monkeysphere-host import-key...' first."
  110. }
  111. # output the index of a user ID on the host key
  112. # return 1 if user ID not found
  113. find_host_userid() {
  114. local userID="$1"
  115. local tmpuidMatch
  116. local line
  117. # match to only ultimately trusted user IDs
  118. tmpuidMatch="u:$(echo $userID | gpg_escape)"
  119. # find the index of the requsted user ID
  120. # NOTE: this is based on circumstantial evidence that the order of
  121. # this output is the appropriate index
  122. line=$(gpg_host_list | egrep '^(uid|uat):' | cut -f2,10 -d: | \
  123. grep -n -x -F "$tmpuidMatch" 2>/dev/null)
  124. if [ "$line" ] ; then
  125. echo ${line%%:*}
  126. return 0
  127. else
  128. return 1
  129. fi
  130. }
  131. # show info about the host key
  132. show_key() {
  133. local GNUPGHOME
  134. # tmp gpghome dir
  135. export GNUPGHOME=$(msmktempdir)
  136. # trap to remove tmp dir if break
  137. trap "rm -rf $GNUPGHOME" EXIT
  138. # import the host key into the tmp dir
  139. gpg --quiet --import <"$HOST_KEY_FILE"
  140. HOST_FINGERPRINT=$(gpg --quiet --list-keys --with-colons --with-fingerprint \
  141. | grep '^fpr:' | cut -d: -f10 )
  142. # list the host key info
  143. # FIXME: make no-show-keyring work so we don't have to do the grep'ing
  144. # FIXME: can we show uid validity somehow?
  145. gpg --list-keys --fingerprint \
  146. --list-options show-unusable-uids 2>/dev/null \
  147. | grep -v "^${GNUPGHOME}/pubring.gpg$" \
  148. | egrep -v '^-+$'
  149. # list the pgp fingerprint
  150. echo "OpenPGP fingerprint: $HOST_FINGERPRINT"
  151. # list the ssh fingerprint
  152. echo -n "ssh fingerprint: "
  153. ssh-keygen -l -f /dev/stdin \
  154. <<<$(openpgp2ssh <"$HOST_KEY_FILE" 2>/dev/null) \
  155. | awk '{ print $1, $2, $4 }'
  156. # remove the tmp file
  157. trap - EXIT
  158. rm -rf "$GNUPGHOME"
  159. }
  160. ########################################################################
  161. # MAIN
  162. ########################################################################
  163. # load configuration file
  164. [ -e ${MONKEYSPHERE_HOST_CONFIG:="${SYSCONFIGDIR}/monkeysphere-host.conf"} ] \
  165. && . "$MONKEYSPHERE_HOST_CONFIG"
  166. # set empty config variable with ones from the environment, or with
  167. # defaults
  168. LOG_LEVEL=${MONKEYSPHERE_LOG_LEVEL:=$LOG_LEVEL}
  169. KEYSERVER=${MONKEYSPHERE_KEYSERVER:=$KEYSERVER}
  170. CHECK_KEYSERVER=${MONKEYSPHERE_CHECK_KEYSERVER:=$CHECK_KEYSERVER}
  171. MONKEYSPHERE_USER=${MONKEYSPHERE_MONKEYSPHERE_USER:=$MONKEYSPHERE_USER}
  172. PROMPT=${MONKEYSPHERE_PROMPT:=$PROMPT}
  173. # other variables
  174. GNUPGHOME_HOST=${MONKEYSPHERE_GNUPGHOME_HOST:="${MHDATADIR}"}
  175. # export variables needed in su invocation
  176. export DATE
  177. export LOG_LEVEL
  178. export KEYSERVER
  179. export CHECK_KEYSERVER
  180. export MONKEYSPHERE_USER
  181. export PROMPT
  182. export GNUPGHOME_HOST
  183. export GNUPGHOME
  184. export HOST_FINGERPRINT
  185. # get subcommand
  186. COMMAND="$1"
  187. [ "$COMMAND" ] || failure "Type '$PGRM help' for usage."
  188. shift
  189. case $COMMAND in
  190. 'show-key'|'show'|'s')
  191. check_host_no_key
  192. show_key
  193. ;;
  194. 'set-expire'|'extend-key'|'e')
  195. check_host_no_key
  196. load_fingerprint
  197. source "${MHSHAREDIR}/set_expire"
  198. set_expire "$@"
  199. ;;
  200. 'add-hostname'|'add-name'|'n+')
  201. check_host_no_key
  202. load_fingerprint
  203. source "${MHSHAREDIR}/add_hostname"
  204. add_hostname "$@"
  205. ;;
  206. 'revoke-hostname'|'revoke-name'|'n-')
  207. check_host_no_key
  208. load_fingerprint
  209. source "${MHSHAREDIR}/revoke_hostname"
  210. revoke_hostname "$@"
  211. ;;
  212. 'add-revoker'|'o')
  213. check_host_no_key
  214. load_fingerprint
  215. source "${MHSHAREDIR}/add_revoker"
  216. add_revoker "$@"
  217. ;;
  218. 'revoke-key'|'r')
  219. check_host_no_key
  220. load_fingerprint
  221. source "${MHSHAREDIR}/revoke_key"
  222. revoke_key "$@"
  223. ;;
  224. 'publish-key'|'publish'|'p')
  225. check_host_no_key
  226. load_fingerprint
  227. source "${MHSHAREDIR}/publish_key"
  228. publish_key
  229. ;;
  230. 'import-key'|'i')
  231. check_host_key
  232. source "${MHSHAREDIR}/import_key"
  233. import_key "$@"
  234. ;;
  235. 'diagnostics'|'d')
  236. load_fingerprint
  237. source "${MHSHAREDIR}/diagnostics"
  238. diagnostics
  239. ;;
  240. 'update-gpg-pub-file')
  241. update_gpg_pub_file
  242. ;;
  243. 'version'|'v')
  244. echo "$VERSION"
  245. ;;
  246. '--help'|'help'|'-h'|'h'|'?')
  247. usage
  248. ;;
  249. *)
  250. failure "Unknown command: '$COMMAND'
  251. Type '$PGRM help' for usage."
  252. ;;
  253. esac
  254. exit "$RETURN"