chiark / gitweb /
Makefile: Install configuration files.
[distorted-keys] / keys.reveal
... / ...
CommitLineData
1#! /bin/sh
2###
3### Reveal shares of a secret distributed among keepers
4###
5### (c) 2011 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
31RECOV KEEPER
32Reveal a share of a recovery key distributed among keepers.
33
34If enough shares have been revealed, reconstruct the recovery private key.
35The keeper nub is read from stdin.
36HELP
37
38## Parse the command line.
39case $# in 2) ;; *) usage_err ;; esac
40recov=$1 keeper=$2; shift 2
41checklabel "recovery key" "$recov"
42case "$recov" in
43 */*) ;;
44 *) recov=$recov/current ;;
45esac
46checkword "keeper set label" "$keeper"
47
48## Check that this is a sensible thing to do.
49if [ ! -f $KEYS/keeper/$keeper/meta ]; then
50 echo >&2 "$quis: unknown keeper set \`$keeper'"
51 exit 1
52fi
53if [ ! -d $KEYS/recov/$recov ]; then
54 echo >&2 "$quis: unknown recovery key \`$recov'"
55 exit 1
56fi
57if [ ! -f $KEYS/recov/$recov/$keeper.param ]; then
58 echo >&2 "$quis: recovery key \`$recov' not kept by keeper set \`$keeper'"
59 exit 1
60fi
61
62## Grab the key, because we'll need to read it several times.
63mktmp
64cat >$tmp/secret
65
66## Read the threshold from the recovery metadata.
67t=$(sharethresh $KEYS/recov/$recov/$keeper.param)
68
69## Find out which keeper index it corresponds to.
70read n hunoz <$KEYS/keeper/$keeper/meta
71i=0
72foundp=nil
73while [ $i -lt $n ]; do
74 c_sysprepare $KEYS/keeper/$keeper/$i
75 nubbin=$(nubid <$tmp/secret)
76 nubid=$(cat $KEYS/keeper/$keeper/$i/nubid)
77 case "$nubbin" in "$nubid") foundp=t; break ;; esac
78 i=$(( $i + 1 ))
79done
80case $foundp in
81 nil) echo >&2 "$quis: nub doesn't match keeper \`$keeper'"; exit 1 ;;
82esac
83
84## Establish the recovery staging area. See whether we've done enough
85## already.
86reqsafe
87tag=$(echo $recov | tr / .)
88mkdir -p -m700 $SAFE/keys.reveal
89reveal=$SAFE/keys.reveal/$tag
90if [ ! -d $reveal ]; then mkdir -m700 $reveal; fi
91cd $reveal
92if [ -f nub ]; then
93 echo >&2 "$quis: recovery key \`$recov' already revealed"
94 exit 1
95fi
96
97## Decrypt the share.
98umask 077
99if [ -f $keeper.$i.share ]; then
100 echo >&2 "$quis: share $i already revealed"
101else
102 c_sysdecrypt $KEYS/keeper/$keeper/$i $tmp/secret \
103 <$KEYS/recov/$recov/$keeper.$i.share \
104 >$keeper.$i.new
105 mv $keeper.$i.new $keeper.$i.share
106fi
107
108## See if there's enough for a recovery.
109n=0
110for j in $keeper.*.share; do if [ -f "$j" ]; then n=$(( $n + 1 )); fi; done
111if [ $n -lt $t ]; then
112 echo >&2 "$quis: share $i revealed; $(( $t - $n )) more required"
113else
114 cat $KEYS/recov/$recov/$keeper.param $keeper.*.share >$keeper.shares
115 $bindir/shamir recover <$keeper.shares >nub.new
116 c_sysprepare $KEYS/recov/$recov/store
117 nubbin=$(nubid <nub.new)
118 nubid=$(cat $KEYS/recov/$recov/store/nubid)
119 case "$nubbin" in
120 "$nubid") ;;
121 *)
122 echo >&2 "$quis: recovered nub doesn't match stored hash"
123 exit 1
124 ;;
125 esac
126 mv nub.new nub
127 rm -f $keeper.*
128 echo >&2 "$quis: recovery key \`$recov' revealed"
129fi
130
131###----- That's all, folks --------------------------------------------------