-
Notifications
You must be signed in to change notification settings - Fork 182
/
proof_iavl_value.go
87 lines (73 loc) · 2.1 KB
/
proof_iavl_value.go
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
package iavl
import (
"fmt"
"github.com/pkg/errors"
"github.com/okex/exchain/libs/tendermint/crypto/merkle"
)
const ProofOpIAVLValue = "iavl:v"
// IAVLValueOp takes a key and a single value as argument and
// produces the root hash.
//
// If the produced root hash matches the expected hash, the proof
// is good.
type ValueOp struct {
// Encoded in ProofOp.Key.
key []byte
// To encode in ProofOp.Data.
// Proof is nil for an empty tree.
// The hash of an empty tree is nil.
Proof *RangeProof `json:"proof"`
}
var _ merkle.ProofOperator = ValueOp{}
func NewValueOp(key []byte, proof *RangeProof) ValueOp {
return ValueOp{
key: key,
Proof: proof,
}
}
func ValueOpDecoder(pop merkle.ProofOp) (merkle.ProofOperator, error) {
if pop.Type != ProofOpIAVLValue {
return nil, errors.Errorf("unexpected ProofOp.Type; got %v, want %v", pop.Type, ProofOpIAVLValue)
}
var op ValueOp // a bit strange as we'll discard this, but it works.
err := cdc.UnmarshalBinaryLengthPrefixed(pop.Data, &op)
if err != nil {
return nil, errors.Wrap(err, "decoding ProofOp.Data into IAVLValueOp")
}
return NewValueOp(pop.Key, op.Proof), nil
}
func (op ValueOp) ProofOp() merkle.ProofOp {
bz := cdc.MustMarshalBinaryLengthPrefixed(op)
return merkle.ProofOp{
Type: ProofOpIAVLValue,
Key: op.key,
Data: bz,
}
}
func (op ValueOp) String() string {
return fmt.Sprintf("IAVLValueOp{%v}", op.GetKey())
}
func (op ValueOp) Run(args [][]byte) ([][]byte, error) {
if len(args) != 1 {
return nil, errors.New("value size is not 1")
}
value := args[0]
// Compute the root hash and assume it is valid.
// The caller checks the ultimate root later.
root := op.Proof.ComputeRootHash()
err := op.Proof.Verify(root)
if err != nil {
return nil, errors.Wrap(err, "computing root hash")
}
// XXX What is the encoding for keys?
// We should decode the key depending on whether it's a string or hex,
// maybe based on quotes and 0x prefix?
err = op.Proof.VerifyItem(op.key, value)
if err != nil {
return nil, errors.Wrap(err, "verifying value")
}
return [][]byte{root}, nil
}
func (op ValueOp) GetKey() []byte {
return op.key
}