chiark / gitweb /
Found in crybaby's working tree.
[distorted-keys] / keys.delete-keeper
CommitLineData
865fc4a1
MW
1#! /bin/sh
2###
3### Delete a keeper set
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
26set -e
27case "${KEYSLIB+t}" in t) ;; *) echo >&2 "$0: KEYSLIB unset"; exit 1 ;; esac
28. "$KEYSLIB"/keyfunc.sh
29
30defhelp <<HELP
31KEEPER
32Delete the keeper set named KEEPER.
33HELP
34
aa847893 35## Parse the command line.
865fc4a1
MW
36case $# in 1) ;; *) usage_err ;; esac
37keeper=$1
38checkword "keeper set label" "$keeper"
39
aa847893 40## Check that the set actually exists.
865fc4a1
MW
41cd $KEYS/keeper
42if [ ! -d $keeper ]; then
43 echo >&2 "$quis: unknown keeper set \`$keeper'"
44 exit 1
45fi
46
aa847893
MW
47## Make sure that there aren't recovery keys which would be orphaned by
48## deleting this keeper set. Also, build a data structure of recovery keys
49## and their instances: `$recov' is a space-separated list of recovery key
50## labels, and for each such label R, `$ri_R' is a space-separated list of
51## its instances.
52unset deps; recov=" "
865fc4a1
MW
53if [ -d $KEYS/recov ]; then
54 cd $KEYS/recov
aa847893
MW
55
56 ## Work through the available recovery keys.
57 for r in *; do
58 if ! expr >/dev/null "Q$r" : "Q$R_WORD"; then continue; fi
59 if [ ! -l $r/current ]; then continue; fi
60
61 ## Add the key to our list.
62 recov="$recov$r "
63
64 ## Now work through the instances.
65 ii=""
865fc4a1 66 for ri in $r/*; do
aa847893 67 i=${ri#*/}
865fc4a1 68 case "$i" in *[!0-9]*) continue ;; esac
aa847893
MW
69
70 ## Add the instance to our list.
71 ii="$ii $i"
72
73 ## For each recovery key, make sure that: either it doesn't depend on
74 ## this keeper set, or it also depends on at least one other set. If
75 ## not, add it to the `deps' list.
865fc4a1 76 this=nil others=nil
aa847893 77 for kp in $ri/*.param; do
865fc4a1
MW
78 k=${kp##*/}; k=${k%.param}
79 case $k in $keeper) this=t ;; *) others=t ;; esac
80 done
81 case $this,$others in t,nil) deps="$deps $ri" ;; esac
82 done
aa847893
MW
83
84 ## Record the list of instances.
85 eval "ri_$r=\$ii"
865fc4a1
MW
86 done
87fi
aa847893
MW
88
89## If we found any hard dependencies, report a failure.
865fc4a1
MW
90case "${deps+t}" in
91 t)
92 echo >&2 "$quis: deleting keeper \`$keeper' would orphan recovery keys:"
93 for d in $deps; do echo 2>&1 " $d"; done
94 exit 1
95 ;;
96esac
97
aa847893
MW
98## Disentangle the dependent recovery keys from this keeper set.
99for r in $recov; do
100
101 ## Remove the keeper data from the key's instances.
102 eval "ii=\$ri_$r"
103 for i in $ii; do rm -f $r/$i/$keeper.*; done
104
105 ## Work through the current keepers, and remove our keeper's name from the
106 ## list.
107 changep=nil
108 while read k rest; do
109 case $k in $keeper) changep=t ;; *) echo "$k $rest" ;; esac
110 done <$r/keepers >$r/keepers.new
111 case $changep in
112 t) mv $r/keepers.new $r/keepers ;;
113 nil) rm $r/keepers.new ;;
114 esac
115done
865fc4a1 116
aa847893 117## Finally, actually delete the keeper keys.
865fc4a1
MW
118cd $KEYS/keeper
119rm -r $keeper
120
121###----- That's all, folks --------------------------------------------------