-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnode.go
266 lines (221 loc) · 7.4 KB
/
node.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
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
package core
import (
"encoding/binary"
"fmt"
crypto "github.com/ucbrise/MerkleSquare/lib/crypto"
)
const pointerSizeInBytes = 8
// Base node struct
type node struct {
hash []byte
parent MerkleNode
isRight bool
completed bool
index index
}
// InternalNode in Merkle Tree
type InternalNode struct {
node
leftChild MerkleNode
rightChild MerkleNode
prefixTree *prefixTree
}
// LeafNode representation in MerkleTree
type LeafNode struct {
node
contentHash []byte
key []byte
}
type index struct {
depth uint32
shift uint32
}
// Called when a leaf node is created; fills in leaf node struct variables.
func (node *LeafNode) completeLeaf(key []byte, value []byte, signature []byte, pos uint32) {
contentHash := ComputeContentHash(key, value, signature, pos)
hashVal := crypto.Hash(makePrefixFromKey(key), contentHash)
node.contentHash = contentHash
node.hash = hashVal
node.completed = true
node.key = key
}
// Create ghost leaf node; call completeLeaf() to fill in other variables
func createLeafNode(parent MerkleNode, isRight bool, shift uint32) *LeafNode {
return &LeafNode{
node: node{
parent: parent,
isRight: isRight,
completed: false,
index: index{
depth: 0,
shift: shift,
},
},
}
}
// Create ghost internal node; call internalNode.complete() to complete
func createInternalNode(parent MerkleNode, depth uint32, isRight bool, shift uint32) *InternalNode {
return &InternalNode{
node: node{
parent: parent,
isRight: isRight,
completed: false,
index: index{
depth: depth,
shift: shift,
},
},
prefixTree: NewPrefixTree(),
}
}
// Creates root node (called when initializing ghost nodes)
func createRootNode(depth uint32) MerkleNode {
return &InternalNode{
node: node{
completed: false,
index: index{
depth: depth,
shift: 0,
},
},
prefixTree: NewPrefixTree(),
}
}
// MerkleNode interface for leaf/internal nodes
type MerkleNode interface {
isLeafNode() bool
setParent(MerkleNode)
getHash() []byte
complete()
isComplete() bool
isRightChild() bool
getParent() MerkleNode
createRightChild() MerkleNode
createLeftChild() MerkleNode
getRightChild() MerkleNode
getLeftChild() MerkleNode
getDepth() uint32
print()
getPrefixTree() *prefixTree
getShift() uint32
getIndex() index
getSibling() Sibling
getContentHash() []byte
getPrefix() []byte
serialize() ([]byte, error)
getSize() int
}
//**********************************
// INTERFACE METHODS
//**********************************
func (node *InternalNode) complete() {
node.getPrefixTree().complete()
hashVal := crypto.Hash(node.leftChild.getHash(), node.rightChild.getHash(), node.getPrefixTree().getHash())
node.hash = hashVal
node.completed = true
}
// Called by internal nodes; creates a right child (of type internal or leaf)
func (node *InternalNode) createRightChild() MerkleNode {
var newNode MerkleNode
if node.getDepth() == 1 {
newNode = createLeafNode(node, true, node.getShift()*2+1)
} else {
newNode = createInternalNode(node, node.getDepth()-1, true, node.getShift()*2+1)
}
node.rightChild = newNode
return newNode
}
func (node *InternalNode) createLeftChild() MerkleNode {
var newNode MerkleNode
if node.getDepth() == 1 {
newNode = createLeafNode(node, false, node.getShift()*2)
} else {
newNode = createInternalNode(node, node.getDepth()-1, false, node.getShift()*2)
}
node.leftChild = newNode
return newNode
}
func (node *InternalNode) getSibling() Sibling {
var hash []byte
if node.isRightChild() {
hash = node.getParent().getLeftChild().getHash()
} else {
hash = node.getParent().getRightChild().getHash()
}
return Sibling{
Hash: hash,
}
}
func (node *LeafNode) getSibling() Sibling {
var hash []byte
if node.isRightChild() {
hash = node.getParent().getLeftChild().getHash()
} else {
hash = node.getParent().getRightChild().getHash()
}
return Sibling{
Hash: hash,
}
}
func (node *LeafNode) getSize() int {
// pointer to parent 8 bytes
total := pointerSizeInBytes
// hash, isRight, isComplete sizes
total += binary.Size(node.hash) + binary.Size(node.isRight) + binary.Size(node.isComplete)
// size of index
total += binary.Size(node.index.depth) + binary.Size(node.index.shift)
// content hash and key
total += binary.Size(node.contentHash) + binary.Size(node.key)
return total
}
func (node *InternalNode) getSize() int {
// pointer to parent 8 bytes + left and right child pointers + prefix tree pointer
total := pointerSizeInBytes * 4
// hash, isRight, isComplete sizes
total += binary.Size(node.hash) + binary.Size(node.isRight) + binary.Size(node.isComplete)
// size of index
total += binary.Size(node.index.depth) + binary.Size(node.index.shift)
// right child
if node.getRightChild() != nil {
total += node.getRightChild().getSize()
}
if node.getLeftChild() != nil {
total += node.getLeftChild().getSize()
}
// prefix tree size
total += node.getPrefixTree().getSize()
return total
}
func (node *InternalNode) isComplete() bool { return node.completed }
func (node *InternalNode) isRightChild() bool { return node.isRight }
func (node *InternalNode) getParent() MerkleNode { return node.parent }
func (node *InternalNode) isLeafNode() bool { return false }
func (node *InternalNode) setParent(parent MerkleNode) { node.parent = parent }
func (node *InternalNode) getHash() []byte { return node.hash }
func (node *InternalNode) getRightChild() MerkleNode { return node.rightChild }
func (node *InternalNode) getLeftChild() MerkleNode { return node.leftChild }
func (node *InternalNode) getDepth() uint32 { return node.index.depth }
func (node *InternalNode) print() { fmt.Print(node.isComplete()) }
func (node *InternalNode) getPrefixTree() *prefixTree { return node.prefixTree }
func (node *InternalNode) getShift() uint32 { return node.index.shift }
func (node *InternalNode) getIndex() index { return node.index }
func (node *InternalNode) getContentHash() []byte { return []byte("") }
func (node *InternalNode) getPrefix() []byte { return []byte("") }
func (node *LeafNode) isComplete() bool { return node.completed }
func (node *LeafNode) isRightChild() bool { return node.isRight }
func (node *LeafNode) getParent() MerkleNode { return node.parent }
func (node *LeafNode) isLeafNode() bool { return true }
func (node *LeafNode) setParent(parent MerkleNode) { node.parent = parent }
func (node *LeafNode) getHash() []byte { return node.hash }
func (node *LeafNode) complete() {}
func (node *LeafNode) createLeftChild() MerkleNode { return &LeafNode{} }
func (node *LeafNode) createRightChild() MerkleNode { return &LeafNode{} }
func (node *LeafNode) getRightChild() MerkleNode { return &LeafNode{} }
func (node *LeafNode) getLeftChild() MerkleNode { return &LeafNode{} }
func (node *LeafNode) getDepth() uint32 { return 0 }
func (node *LeafNode) print() { fmt.Print(node.isComplete()) }
func (node *LeafNode) getPrefixTree() *prefixTree { return NewPrefixTree() }
func (node *LeafNode) getShift() uint32 { return node.index.shift }
func (node *LeafNode) getIndex() index { return node.index }
func (node *LeafNode) getContentHash() []byte { return node.contentHash }
func (node *LeafNode) getPrefix() []byte { return makePrefixFromKey(node.key) }