forked from YahooArchive/coname
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlookup.go
More file actions
326 lines (295 loc) · 9.83 KB
/
lookup.go
File metadata and controls
326 lines (295 loc) · 9.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
package coname
import (
"bytes"
"fmt"
"strings"
"time"
"sort"
"log"
"golang.org/x/crypto/sha3"
"github.com/yahoo/coname/proto"
"github.com/yahoo/coname/vrf"
"github.com/yahoo/coname/keyserver/kv"
)
func CalculateCommitment(profile *proto.EncodedProfile) []byte {
var commitmentCheck [64]byte
h := sha3.NewShake256()
h.Write(profile.Profile.Nonce)
// Keys has to be sorted the same way the client does
keys := make([]string, 0, len(profile.Profile.Keys))
for k := range(profile.Profile.Keys) {
keys = append(keys, k)
}
sort.Strings(keys)
for i := 0; i < len(keys); i++ {
k := keys[i]
h.Write([]byte(k))
h.Write(profile.Profile.Keys[k])
}
h.Read(commitmentCheck[:])
return commitmentCheck[:]
}
func CheckCommitment(commitment []byte, profile *proto.EncodedProfile) bool {
// The hash used here is modeled as a random oracle. This means that SHA3
// is fine but SHA2 is not (consider HMAC-SHA2 instead).
return bytes.Equal(commitment[:], CalculateCommitment(profile))
}
func GetRealmByDomain(cfg *proto.Config, domain string) (ret *proto.RealmConfig, err error) {
for _, realm := range cfg.Realms {
for _, pattern := range realm.Domains {
if pattern == domain { // TODO: implement wildcards?
if ret != nil && ret != realm {
return nil, fmt.Errorf("GetRealmByDomain: multiple realms match %q: %v and %v", domain, realm, ret)
}
ret = realm
}
}
}
if ret == nil {
err = fmt.Errorf("GetRealm: unknown domain %q", domain)
}
return
}
func GetRealmByUser(cfg *proto.Config, user string) (*proto.RealmConfig, error) {
indexOfAt := strings.LastIndex(user, "@")
if indexOfAt == -1 {
return nil, fmt.Errorf("GetRealm: user must be of the form .*@.* (got %q)", user)
}
domain := user[indexOfAt+1:]
return GetRealmByDomain(cfg, domain)
}
func VerifyLookup(cfg *proto.Config, user string, pf *proto.LookupProof, now time.Time) (keys map[string][]byte, err error) {
if pf.UserId != "" && pf.UserId != user {
return nil, fmt.Errorf("VerifyLookup: proof specifies different user ID: %q != %q", pf.UserId, user)
}
realm, err := GetRealmByUser(cfg, user)
if err != nil {
return nil, err
}
if !vrf.Verify(realm.VRFPublic, []byte(user), pf.Index, pf.IndexProof) {
return nil, fmt.Errorf("VerifyLookup: VRF verification failed")
}
root, err := VerifyConsensus(realm, pf.Ratifications, now)
if err != nil {
return
}
verifiedEntryHash, err := reconstructTreeAndLookup(realm.TreeNonce, root, pf.Index, pf.TreeProof)
if err != nil {
return nil, fmt.Errorf("VerifyLookup: failed to verify the lookup: %v", err)
}
if verifiedEntryHash == nil {
if pf.Entry != nil {
return nil, fmt.Errorf("VerifyLookup: non-empty entry %x did not match verified lookup result <nil>", pf.Entry)
}
if pf.Profile != nil {
return nil, fmt.Errorf("VerifyLookup: non-empty profile %x did not match verified lookup result <nil>", pf.Profile)
}
return nil, nil
} else {
if pf.Entry == nil {
return nil, fmt.Errorf("VerifyLookup: empty entry did not match verified lookup result <non nil>")
}
if pf.Profile == nil {
return nil, fmt.Errorf("VerifyLookup: empty profile did not match verified lookup result <non nil>")
}
var entryHash [32]byte
sha3.ShakeSum256(entryHash[:], pf.Entry.Encoding)
if !bytes.Equal(entryHash[:], verifiedEntryHash) {
return nil, fmt.Errorf("VerifyLookup: entry hash %x did not match verified lookup result %x", entryHash, verifiedEntryHash)
}
if !CheckCommitment(pf.Entry.ProfileCommitment, pf.Profile) {
return nil, fmt.Errorf("VerifyLookup: profile does not match the hash in the entry")
}
return pf.Profile.Keys, nil
}
}
func VerifyConsensus(rcg *proto.RealmConfig, ratifications []*proto.SignedEpochHead, now time.Time) (root []byte, err error) {
if len(ratifications) == 0 {
return nil, fmt.Errorf("VerifyConsensus: no signed epoch heads provided")
}
// check that all the SEHs have the same head
for i := 1; i < len(ratifications); i++ {
if want, got := ratifications[0].Head.Head.Encoding, ratifications[i].Head.Head.Encoding; !bytes.Equal(want, got) {
// @@ should not return an error immediately! Just one (benign) failure can mess up the whole thing!!
return nil, fmt.Errorf("VerifyConsensus: epoch heads don't match: %x vs %x", want, got)
}
}
// check that the seh corresponds to the realm in question
if got := ratifications[0].Head.Head.Realm; got != rcg.RealmName {
return nil, fmt.Errorf("VerifyConsensus: SEH does not match realm: %q != %q", got, rcg.RealmName)
}
// check that the seh is not expired
if t := ratifications[0].Head.Head.IssueTime.Time().Add(rcg.EpochTimeToLive.Duration()); now.After(t) {
return nil, fmt.Errorf("VerifyConsensus: epoch expired at %v < %v", t, now)
}
// check that there are sufficiently many fresh signatures.
pks := rcg.VerificationPolicy.PublicKeys
policyQuorum, ok := rcg.VerificationPolicy.PolicyType.(*proto.AuthorizationPolicy_Quorum)
if !ok {
return nil, fmt.Errorf("VerifyConsensus: unknown verification policy in realm config: %v", rcg)
}
want := policyQuorum.Quorum
can := ListQuorum(want, nil)
have := make(map[uint64]struct{})
next_verifier:
for id := range can {
if CheckQuorum(want, have) {
break // already sufficiently verified, short-circuit
}
for _, seh := range ratifications {
if sig, ok := seh.Signatures[id]; ok &&
VerifySignature(pks[id], seh.Head.Encoding, sig) {
have[id] = struct{}{}
continue next_verifier
}
}
}
if !CheckQuorum(want, have) {
return nil, fmt.Errorf("VerifyConsensus: insufficient signatures (have %v, want %v)", have, want)
}
return ratifications[0].Head.Head.RootHash, nil
}
func reconstructTreeAndLookup(treeNonce []byte, rootHash []byte, index []byte, proof *proto.TreeProof) ([]byte, error) {
// First, reconstruct the partial tree
reconstructed, err := ReconstructTree(proof, ToBits(IndexBits, index))
if err != nil {
return nil, err
}
// Reconstruct the root hash
reconstructedHash, err := RecomputeHash(treeNonce, reconstructed)
if err != nil {
return nil, err
}
// Compare root hashes
if !bytes.Equal(reconstructedHash, rootHash) {
return nil, fmt.Errorf("Root hashes do not match! Reconstructed %x; wanted %x", reconstructedHash, rootHash)
}
// Then, do the lookup
value, err := TreeLookup(reconstructed, index)
if err != nil {
return nil, err
}
return value, nil
}
func RecomputeHash(treeNonce []byte, node MerkleNode) ([]byte, error) {
return recomputeHash(treeNonce, []bool{}, node)
}
// assumes ownership of the array underlying prefixBits
func recomputeHash(treeNonce []byte, prefixBits []bool, node MerkleNode) ([]byte, error) {
if node.IsEmpty() {
return HashEmptyBranch(treeNonce, prefixBits), nil
} else if node.IsLeaf() {
return HashLeaf(treeNonce, node.Index(), node.Depth(), node.Value()), nil
} else {
var childHashes [2][HashBytes]byte
for i := 0; i < 2; i++ {
rightChild := i == 1
h := node.ChildHash(rightChild)
if h == nil {
ch, err := node.Child(rightChild)
if err != nil {
return nil, err
}
h, err = recomputeHash(treeNonce, append(prefixBits, rightChild), ch)
if err != nil {
return nil, err
}
}
copy(childHashes[i][:], h)
}
return HashInternalNode(prefixBits, &childHashes), nil
}
}
type ReconstructedNode struct {
isLeaf bool
depth int
children [2]struct {
// Only one of the following two may be set
Omitted []byte
Present *ReconstructedNode
}
index []byte
value []byte
}
func ReconstructTree(trace *proto.TreeProof, lookupIndexBits []bool) (*ReconstructedNode, error) {
return reconstructBranch(trace, lookupIndexBits, 0), nil
}
func reconstructBranch(trace *proto.TreeProof, lookupIndexBits []bool, depth int) *ReconstructedNode {
if depth == len(trace.Neighbors) {
if trace.ExistingEntryHash == nil {
return nil
} else {
return &ReconstructedNode{
isLeaf: true,
depth: depth,
index: trace.ExistingIndex,
value: trace.ExistingEntryHash,
}
}
} else {
node := &ReconstructedNode{
isLeaf: false,
depth: depth,
}
presentChild := lookupIndexBits[depth]
node.children[BitToIndex(presentChild)].Present = reconstructBranch(trace, lookupIndexBits, depth+1)
node.children[BitToIndex(!presentChild)].Omitted = trace.Neighbors[depth]
return node
}
}
var _ MerkleNode = (*ReconstructedNode)(nil)
func (n *ReconstructedNode) IsEmpty() bool {
return n == nil
}
func (n *ReconstructedNode) IsLeaf() bool {
return n.isLeaf
}
func (n *ReconstructedNode) Depth() int {
return n.depth
}
func (n *ReconstructedNode) ChildHash(rightChild bool) []byte {
return n.children[BitToIndex(rightChild)].Omitted
}
func (n *ReconstructedNode) Child(rightChild bool) (MerkleNode, error) {
// Give an error if the lookup algorithm tries to access anything the server didn't provide us.
if n.children[BitToIndex(rightChild)].Omitted != nil {
return nil, fmt.Errorf("can't access omitted node")
}
// This might still be nil if the branch is in fact empty.
return n.children[BitToIndex(rightChild)].Present, nil
}
func (n *ReconstructedNode) Index() []byte {
return n.index
}
func (n *ReconstructedNode) Value() []byte {
return n.value
}
// GetUpdate returns the last update to profile of idx during or before epoch.
// If there is no such update, (nil, nil) is returned.
func GetUpdate(db kv.DB, idx []byte, epoch uint64) (*proto.UpdateRequest, error) {
// idx: []&const
if len(idx) != vrf.Size {
log.Panicf("GetUpdate: index %x has bad length", idx)
}
prefixIdxEpoch := TableUpdateRequests(idx, epoch)
iter := db.NewIterator(&kv.Range{
Start: prefixIdxEpoch[:1+len(idx)],
Limit: kv.IncrementKey(prefixIdxEpoch),
})
defer iter.Release()
if !iter.Last() {
if iter.Error() != nil {
return nil, iter.Error()
}
return nil, nil
}
ret := new(proto.UpdateRequest)
if err := ret.Unmarshal(iter.Value()); err != nil {
return nil, iter.Error()
}
return ret, nil
}
type UpdateOutput struct {
Epoch uint64 // which epoch the update will appear in
Error error
}