keys.list-{keepers,recov}: New commands for inspecting infrastructure.
[distorted-keys] / keys.list-recov
1 #! /bin/sh
2 ###
3 ### List the available recovery keys
4 ###
5 ### (c) 2012 Mark Wooding
6 ###
7
8 ###----- Licensing notice ---------------------------------------------------
9 ###
10 ### This file is part of the distorted.org.uk key management suite.
11 ###
12 ### distorted-keys is free software; you can redistribute it and/or modify
13 ### it under the terms of the GNU General Public License as published by
14 ### the Free Software Foundation; either version 2 of the License, or
15 ### (at your option) any later version.
16 ###
17 ### distorted-keys is distributed in the hope that it will be useful,
18 ### but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ### GNU General Public License for more details.
21 ###
22 ### You should have received a copy of the GNU General Public License
23 ### along with distorted-keys; if not, write to the Free Software Foundation,
24 ### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26 set -e
27 case "${KEYSLIB+t}" in t) ;; *) echo >&2 "$0: KEYSLIB unset"; exit 1 ;; esac
28 . "$KEYSLIB"/keyfunc.sh
29
30 defhelp <<HELP
31
32 List the available recovery keys, and the secrets they protect.
33 HELP
34
35 case $# in 0) ;; *) usage_err ;; esac
36
37 if [ ! -d $KEYS/recov ]; then
38 echo 2>&1 "$quis: no recovery keys"
39 else
40 cd $KEYS/recov
41 firstp=t
42 for r in $(find . -type l -name current -print); do
43 r=${r#./}; r=${r%/current}
44 if ! expr >/dev/null "Q$r" : "Q$R_LABEL"; then continue; fi
45 unset ri
46 case $firstp in t) firstp=nil ;; nil) echo ;; esac
47 echo "$r"
48 echo " keepers"
49 while read k t; do
50 read n hunoz <$KEYS/keeper/$k/meta
51 echo " $k t=$t n=$n"
52 done <$r/keepers
53 rcur=$(readlink $r/current)
54 for ri in $r/*; do
55 i=${ri##*/}
56 case "$i" in *[!0-9]*) continue ;; esac
57 echo " instance $i"
58 case "$rcur" in $i) echo " current" ;; esac
59 readmeta $ri/store
60 nubid=$(cat $ri/store/nubid)
61 echo " profile $profile"
62 echo " nubid $nubid"
63 echo " keepers"
64 for kp in $ri/*.param; do
65 k=${kp##*/}; k=${k%.param}
66 read n hunoz <$KEYS/keeper/$k/meta
67 t=$(sharethresh $kp)
68 echo " $k t=$t n=$n"
69 done
70 anyp=nil
71 for sf in $(cd $ri; find . -type f -name '*.recov' -print); do
72 s=${sf#./}
73 case $anyp in nil) anyp=t; echo " secrets" ;; esac
74 echo " $s"
75 done
76 done
77 done
78 fi
79
80 ###----- That's all, folks --------------------------------------------------