# add hostname user ID to server key
add_hostname() {
+ local userID
+ local fingerprint
++ local tmpuidMatch
++ local line
+ local adduidCommand
+
if [ -z "$1" ] ; then
failure "You must specify a hostname to add."
fi
userID="ssh://${1}"
- if [ "$(gpg_host --list-key "=${userID}" 2> /dev/null)" ] ; then
- if [ "$(gpg_host --list-key "=${userID}")" ] ; then
++ fingerprint=$(fingerprint_server_key)
++
++ # match to only ultimately trusted user IDs
++ tmpuidMatch="u:$(echo $userID | gpg_escape)"
++
++ # find the index of the requsted user ID
++ # NOTE: this is based on circumstantial evidence that the order of
++ # this output is the appropriate index
++ if line=$(gpg_host --list-keys --with-colons --fixed-list-mode "0x${fingerprint}"\! \
++ | egrep '^(uid|uat):' | cut -f2,10 -d: | grep -n -x -F "$tmpuidMatch") ; then
failure "Host userID '$userID' already exists."
fi
- fingerprint=$(fingerprint_server_key)
+ echo "The following user ID will be added to the host key:"
- echo " '$userID'"
++ echo " $userID"
+ read -p "Are you sure you would like to add this user ID? (y/N) " OK; OK=${OK:=N}
+ if [ ${OK/y/Y} != 'Y' ] ; then
+ failure "user ID not added."
+ fi
- fingerprint=$(fingerprint_server_key)
-
+ # edit-key script command to add user ID
adduidCommand=$(cat <<EOF
adduid
$userID
EOF
)
- # add uid
- echo "$adduidCommand" | gpg_host --quiet --command-fd 0 --edit-key "$fingerprint"
+ # execute edit-key script
- echo "$adduidCommand" | gpg_host --quiet --command-fd 0 --edit-key "$fingerprint"
++ if echo "$adduidCommand" | gpg_host --quiet --command-fd 0 --edit-key "0x${fingerprint}"\! ; then
++ # update trust db
++ gpg_host --check-trustdb
+
- # update trust db
- gpg_host --check-trustdb
++ show_server_key
- show_server_key
-
- # publish the key
- publish_server_key
- echo "NOTE: new host userID has not been published."
- echo "Use '$PGRM publish-key' to publish these changes."
++ echo "NOTE: User ID added but key not published."
++ echo "Run '$PGRM publish-key' to publish the key"
++ else
++ failure "Problem adding user ID."
++ fi
}
# revoke hostname user ID to server key
revoke_hostname() {
- local msg
- local uidNum
+ local userID
++ local fingerprint
+ local tmpuidMatch
- local fpr
- local linenum
++ local line
+ local uidIndex
++ local message
++ local revuidCommand
if [ -z "$1" ] ; then
failure "You must specify a hostname to revoke."
fi
- fpr=$(fingerprint_server_key)
- tmpuidMatch="u:$(escape "ssh://$1")"
+ userID="ssh://${1}"
+
+ fingerprint=$(fingerprint_server_key)
+
++ # match to only ultimately trusted user IDs
++ tmpuidMatch="u:$(echo $userID | gpg_escape)"
+
- if linenum=$(gpg_host --list-keys --with-colons --fixed-list-mode "0x$fpr"\! | egrep '^(uid|uat):' | cut -f2,10 -d: | grep -n -x -F "$tmpuidMatch") ; then
- uidNum=${linenum%%:*}
+ # find the index of the requsted user ID
+ # NOTE: this is based on circumstantial evidence that the order of
+ # this output is the appropriate index
- uidIndex=$(gpg_host --with-colons --fixed-list-mode --list-key "$fingerprint" 2> /dev/null | \
- egrep "^(uid|uat):" | cut -d: -f10 | gpg_unescape | cat -n | \
- grep "$userID" | awk '{ print $1 }')
-
- if [ -z "$uidIndex" ] ; then
- failure "User ID '$userID' not found in host key."
++ if line=$(gpg_host --list-keys --with-colons --fixed-list-mode "0x${fingerprint}"\! \
++ | egrep '^(uid|uat):' | cut -f2,10 -d: | grep -n -x -F "$tmpuidMatch") ; then
++ uidIndex=${line%%:*}
+ else
- failure "no non-revoked hostname '$1' is listed."
++ failure "No non-revoked user ID '$userID' is found."
fi
- msg="hostname removed by monkeysphere-server on $(date +%F)"
-
+ echo "The following user ID will be revoked from the host key:"
- echo " '$userID'"
++ echo " $userID"
+ read -p "Are you sure you would like to revoke this user ID? (y/N) " OK; OK=${OK:=N}
+ if [ ${OK/y/Y} != 'Y' ] ; then
+ failure "user ID not revoked."
+ fi
++ message="Hostname removed by monkeysphere-server $DATE"
++
+ # edit-key script command to revoke user ID
revuidCommand=$(cat <<EOF
-$uidNum
+$uidIndex
revuid
y
4
-$msg
++$message
y
save
EOF
-)
+ )
- echo "$revuidCommand" | gpg_host --quiet --command-fd 0 --edit-key "0x$fpr"\!
+ # execute edit-key script
- echo "$revuidCommand" | gpg_host --quiet --command-fd 0 --edit-key "$fingerprint"
-
- # update trust db
- gpg_host --check-trustdb
++ if echo "$revuidCommand" | gpg_host --quiet --command-fd 0 --edit-key "0x${fingerprint}"\! ; then
++ # update trust db
++ gpg_host --check-trustdb
- show_server_key
- echo "NOTE: host userID revokation has not been published."
- echo "Use '$PGRM publish-key' to publish these changes."
++ show_server_key
+
- # publish the key
- publish_server_key
++ echo "NOTE: User ID revoked but key not published."
++ echo "Run '$PGRM publish-key' to publish the key"
++ else
++ failure "Problem revoking user ID."
++ fi
}
# publish server key to keyserver