Skip to content
This repository was archived by the owner on Jul 5, 2024. It is now read-only.

Commit c46f309

Browse files
committed
fix all the cases except ext-mod node only
1 parent 609dbf8 commit c46f309

File tree

4 files changed

+127
-106
lines changed

4 files changed

+127
-106
lines changed

geth-utils/gethutil/mpt/trie/stacktrie.go

+18-26
Original file line numberDiff line numberDiff line change
@@ -671,20 +671,20 @@ func isTxExt(proofEl []byte) bool {
671671

672672
func printProof(ps [][]byte, t, idx []byte) {
673673

674-
enable := byte(200)
674+
enable := byte(150)
675675
fmt.Print(" [")
676676
for i, p := range ps {
677677
if t[i] == extNode {
678678
fmt.Print("EXT - ")
679-
if idx[0] > enable {
679+
if idx[0] >= enable {
680680
fmt.Print(" (", p, ") - ")
681681
}
682682
} else if t[i] == branchNode {
683683
fmt.Print("BRANCH - ")
684684
// fmt.Print(" (", p, ") - ")
685685
} else if t[i] == leafNode {
686686
fmt.Print("LEAF - ")
687-
if idx[0] > enable {
687+
if idx[0] >= enable {
688688
fmt.Print(" (", p, ") - ")
689689
}
690690
} else if t[i] == hashedNode {
@@ -706,7 +706,6 @@ func (st *StackTrie) UpdateAndGetProof(db ethdb.KeyValueReader, indexBuf, value
706706
if err != nil {
707707
return StackProof{}, err
708708
}
709-
len1 := len(proofS)
710709
printProof(proofS, typesS, indexBuf)
711710

712711
st.Update(indexBuf, value)
@@ -715,14 +714,8 @@ func (st *StackTrie) UpdateAndGetProof(db ethdb.KeyValueReader, indexBuf, value
715714
if err != nil {
716715
return StackProof{}, err
717716
}
718-
len2 := len(proofC)
719717
printProof(proofC, typesC, indexBuf)
720718

721-
// fmt.Println(len1, len2)
722-
if len1 > len2 {
723-
fmt.Println(KeybytesToHex(indexBuf))
724-
}
725-
726719
return StackProof{proofS, proofC, nibblesS, nibblesC, typesS, typesC}, nil
727720
}
728721

@@ -806,7 +799,7 @@ func (st *StackTrie) GetProof(db ethdb.KeyValueReader, key []byte) ([][]byte, []
806799
// fmt.Print(" ", k[i], "/", c.nodeType, " | ")
807800
proofType = append(proofType, c.nodeType)
808801
if c.nodeType == extNode {
809-
fmt.Print(c.key, " ")
802+
// fmt.Print(c.key, " ")
810803
i += len(c.key) - 1
811804
nodes = append(nodes, c)
812805
c = c.children[0]
@@ -825,19 +818,18 @@ func (st *StackTrie) GetProof(db ethdb.KeyValueReader, key []byte) ([][]byte, []
825818
panic(error)
826819
}
827820

828-
if c_rlp[0] > 192 && c_rlp[0] < 248 {
829-
numNibbles := c_rlp[0] - 225
830-
var nibble = make([]byte, numNibbles)
831-
for i := 0; i < int(numNibbles); i++ {
832-
nibble[i] = c_rlp[i+1] - 16
833-
}
834-
// fmt.Println(" HASHED Ext nibble:", nibble, c_rlp)
835-
nibbles = append(nibbles, nibble)
836-
}
821+
// if c_rlp[0] > 192 && c_rlp[0] < 248 {
822+
// numNibbles := c_rlp[0] - 225
823+
// var nibble = make([]byte, numNibbles)
824+
// for i := 0; i < int(numNibbles); i++ {
825+
// nibble[i] = c_rlp[i+1] - 16
826+
// }
827+
// // fmt.Println(" HASHED Ext nibble:", nibble, c_rlp)
828+
// }
837829

838-
fmt.Print(" hashed node key:", c.key, " ")
839830
// fmt.Println(" c_rlp:", c_rlp)
840831
proof = append(proof, c_rlp)
832+
nibbles = append(nibbles, c.key)
841833
branchChild := st.getNodeFromBranchRLP(c_rlp, int(k[i]))
842834
// branchChild is of length 1 when there is no child at this position in the branch
843835
// (`branchChild = [128]` in this case), but it is also of length 1 when `c_rlp` is a leaf.
@@ -886,11 +878,11 @@ func (st *StackTrie) GetProof(db ethdb.KeyValueReader, key []byte) ([][]byte, []
886878
// if it's an ext node, it contains 1.)nibbles and 2.) 32bytes hashed value
887879
// 2.) 32 bytes long data plus rlp flag, it becomes 33 bytes long data
888880
// 192 + 33 = 225, and the left bytes are for nibbles.
889-
numNibbles := raw_rlp[0] - 225
890-
var nibble = make([]byte, numNibbles)
891-
for i := 0; i < int(numNibbles); i++ {
892-
nibble[i] = raw_rlp[i+1] - 16
893-
}
881+
// numNibbles := raw_rlp[0] - 225
882+
// var nibble = make([]byte, numNibbles)
883+
// for i := 0; i < int(numNibbles); i++ {
884+
// nibble[i] = raw_rlp[i+1] - 16
885+
// }
894886
// fmt.Println(" Ext nibble:", numNibbles, node.key)
895887
nibbles = append(nibbles, node.key)
896888
} else {

geth-utils/gethutil/mpt/witness/branch.go

+16-23
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package witness
22

33
import (
4-
"fmt"
54
"log"
65

76
"github.com/ethereum/go-ethereum/rlp"
@@ -237,11 +236,12 @@ func getDriftedPosition(leafKeyRow []byte, numberOfNibbles int) byte {
237236
// addBranchAndPlaceholder adds to the rows a branch and its placeholder counterpart
238237
// (used when one of the proofs have one branch more than the other).
239238
func addBranchAndPlaceholder(proof1, proof2 [][]byte, extNibblesS, extNibblesC []byte,
240-
leafRow0, key []byte, keyIndex int, isShorterProofLastLeaf bool,
239+
proofTx, leafRow0, key []byte, keyIndex int, isShorterProofLastLeaf bool,
241240
) (bool, bool, int, Node) {
242241

243242
len1 := len(proof1)
244243
len2 := len(proof2)
244+
isTxProof := len(proofTx) != 0
245245

246246
var node Node
247247

@@ -252,22 +252,14 @@ func addBranchAndPlaceholder(proof1, proof2 [][]byte, extNibblesS, extNibblesC [
252252
extValues = append(extValues, make([]byte, valueLen))
253253
}
254254

255-
// For stack trie
256-
// if 1 st node of proof2 is a branch node and 1st node of Proof1 is an ext node
257-
need_placeholder_ext := isBranch(proof2[0]) && isTxExt(proof1[0])
258-
if need_placeholder_ext {
259-
fmt.Println("need_placeholder_ext", isTxLeaf(proof1[0]), isBranch(proof1[0]), proof1[0])
260-
fmt.Println("need_placeholder_ext", isBranch(proof2[0]), proof2[0])
261-
fmt.Println("nibble:", extNibblesS)
262-
}
263-
isExtension := (len1 == len2+2) || (len2 == len1+2)
264-
if isExtension || need_placeholder_ext {
255+
isExtension := (len1 == len2+2) || (len2 == len1+2) || (isTxProof && !isBranch(proofTx))
256+
if isExtension {
265257
var numNibbles byte
266258
var proof []byte
267259
var extNibbles []byte
268-
if need_placeholder_ext {
260+
if isTxProof {
269261
extNibbles = extNibblesS
270-
proof = proof1[0]
262+
proof = proofTx
271263
} else {
272264
if len1 > len2 {
273265
extNibbles = extNibblesS
@@ -306,18 +298,19 @@ func addBranchAndPlaceholder(proof1, proof2 [][]byte, extNibblesS, extNibblesC [
306298
in the rows before we add a leaf.
307299
*/
308300
var longExtNode []byte
309-
if len1 > len2 {
310-
longExtNode = proof2[len2-1]
301+
if isTxProof {
302+
longExtNode = proofTx
311303
} else {
312-
longExtNode = proof1[len1-1]
304+
if len1 > len2 {
305+
longExtNode = proof2[len2-1]
306+
} else {
307+
longExtNode = proof1[len1-1]
308+
}
313309
}
314310

315-
// TODO: fix
316311
var extNode []byte
317-
if need_placeholder_ext {
318-
extNode = proof1[0]
319-
// FIXME should move to above and need to avoid above [len-3] operation
320-
isExtension = need_placeholder_ext
312+
if isTxProof {
313+
extNode = proofTx
321314
} else {
322315
if isExtension {
323316
if len1 > len2 {
@@ -329,7 +322,7 @@ func addBranchAndPlaceholder(proof1, proof2 [][]byte, extNibblesS, extNibblesC [
329322
}
330323

331324
// Note that isModifiedExtNode happens also when we have a branch instead of shortExtNode
332-
isModifiedExtNode := (!isBranch(longExtNode) && !isShorterProofLastLeaf) || need_placeholder_ext
325+
isModifiedExtNode := (!isBranch(longExtNode) && !isShorterProofLastLeaf)
333326

334327
// We now get the first nibble of the leaf that was turned into branch.
335328
// This first nibble presents the position of the leaf once it moved

geth-utils/gethutil/mpt/witness/gen_witness_transactions_test.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,9 @@ func transactionsStackTrieInsertionTemplate(t *testing.T, n int) {
121121
}
122122

123123
func TestTransactionInsertion(t *testing.T) {
124-
// TODO: check drifted_index at 128
125-
txs := makeTransactions(130)
124+
// potential ext. mod nodes
125+
// 145, 513, 529, 785, 1041, 1297, 1553, 1809
126+
txs := makeTransactions(2015)
126127
prepareStackTrieWitness("TransactionInsertion", types.Transactions(txs))
127128
}
128129

0 commit comments

Comments
 (0)