Skip to content

Commit 71509d4

Browse files
zhangbinzhangbin
zhangbin
authored and
zhangbin
committed
modify hash logic
1 parent 6bdf568 commit 71509d4

File tree

6 files changed

+59
-3
lines changed

6 files changed

+59
-3
lines changed

chainbridge-core/chainbridge.go

+14-2
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,12 @@ func handleFeedBackArbitersSig(engine *pbft.Pbft, e *events.Event) {
266266
bridgelog.Warn("handleFeedBackArbitersSig failed , is not producer", common.Bytes2Hex(producer))
267267
return
268268
}
269-
hash, err := arbiterManager.HashArbiterList()
269+
salt, err := MsgReleayer.GetHashSalt(escChainID)
270+
if err != nil {
271+
bridgelog.Warn("GetHashSalt failed", "error")
272+
return
273+
}
274+
hash, err := arbiterManager.HashArbiterList(salt)
270275
if err != nil {
271276
bridgelog.Warn("HashArbiterList failed", "error", err)
272277
return
@@ -307,7 +312,14 @@ func receivedReqArbiterSignature(engine *pbft.Pbft, e *events.Event) {
307312

308313
kp := engine.GetBridgeArbiters().(*secp256k1.Keypair)
309314
privateKey := kp.PrivateKey()
310-
hash, err := arbiterManager.HashArbiterList()
315+
316+
salt, err := MsgReleayer.GetHashSalt(escChainID)
317+
if err != nil {
318+
bridgelog.Warn("GetHashSalt failed", "error")
319+
return
320+
}
321+
322+
hash, err := arbiterManager.HashArbiterList(salt)
311323
if err != nil {
312324
bridgelog.Error("receivedReqArbiterSignature HashArbiterList failed", "error", err)
313325
}

chainbridge-core/chains/evm/aribiters/arbitermanager.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ func (a *ArbiterManager) Clear() {
140140
a.consensusArbiters.List = make([][]byte, 0)
141141
}
142142

143-
func (a *ArbiterManager) HashArbiterList() (common.Hash, error) {
143+
func (a *ArbiterManager) HashArbiterList(hashSalt *big.Int) (common.Hash, error) {
144144
arbiters := a.GetArbiterList()
145145
data := make([]byte, 0)
146146
for _, arbiter := range arbiters {
@@ -154,6 +154,9 @@ func (a *ArbiterManager) HashArbiterList() (common.Hash, error) {
154154
total := new(big.Int).SetUint64(uint64(a.nextTotalCount))
155155
totalBytes := common.LeftPadBytes(total.Bytes(), 32)
156156
data = append(data, totalBytes...)
157+
158+
saltBytes := common.LeftPadBytes(hashSalt.Bytes(), 32)
159+
data = append(data, saltBytes...)
157160
return crypto.Keccak256Hash(data), nil
158161
}
159162

chainbridge-core/chains/evm/chain.go

+5
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ type ProposalVoter interface {
3333
GetSignatures(bridgeAddress string) ([][crypto.SignatureLength]byte, error)
3434
GetTotalCount(bridgeAddress string) (uint64, error)
3535
GetESCState(bridgeAddress string) (uint8, error)
36+
GetHashSalt(bridgeAddress string) (*big.Int, error)
3637
IsDeployedBridgeContract(bridgeAddress string) bool
3738
SetESCState(bridgeAddress string, state uint8) error
3839
SetManualArbiter(bridgeAddress string, arbiter []common.Address, totalSigner int) error
@@ -121,6 +122,10 @@ func (c *EVMChain) GetESCState() (uint8, error) {
121122
return state, nil
122123
}
123124

125+
func (c *EVMChain) GetHashSalt() (*big.Int, error) {
126+
return c.writer.GetHashSalt(c.bridgeContractAddress)
127+
}
128+
124129
func (c *EVMChain) SetESCState(state uint8) error {
125130
err := c.writer.SetESCState(c.bridgeContractAddress, state)
126131
if err != nil {

chainbridge-core/chains/evm/voter/voter.go

+18
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,24 @@ func (w *EVMVoter) GetESCState(bridgeAddress string) (uint8, error) {
298298
return uint8(out0.Uint64()), err
299299
}
300300

301+
func (w *EVMVoter) GetHashSalt(bridgeAddress string) (*big.Int, error) {
302+
a, err := chainbridge_abi.GetHashSaltABI()
303+
if err != nil {
304+
return big.NewInt(0), err
305+
}
306+
input, err := a.Pack("GetHashSalt")
307+
if err != nil {
308+
return big.NewInt(0), err
309+
}
310+
bridge := common.HexToAddress(bridgeAddress)
311+
msg := ethereum.CallMsg{From: common.Address{}, To: &bridge, Data: input}
312+
out, err := w.client.CallContract(context.TODO(), toCallArg(msg), nil)
313+
log.Info("GetHashSalt", "error", err, "out", out)
314+
315+
out0 := big.NewInt(0).SetBytes(out)
316+
return out0, err
317+
}
318+
301319
func (w *EVMVoter) IsDeployedBridgeContract(bridgeAddress string) bool {
302320
return w.client.IsContractAddress(bridgeAddress)
303321
}

chainbridge-core/relayer/relayer.go

+12
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ package relayer
66
import (
77
"errors"
88
"fmt"
9+
"math/big"
910

1011
"github.com/elastos/Elastos.ELA.SideChain.ESC/chainbridge-core/bridgelog"
1112
"github.com/elastos/Elastos.ELA.SideChain.ESC/common"
@@ -21,6 +22,7 @@ type RelayedChain interface {
2122
GetTotalCount() (uint64, error)
2223
GetESCState() (uint8, error)
2324
SetESCState(state uint8) error
25+
GetHashSalt() (*big.Int, error)
2426
SetManualArbiters(arbiter []common.Address, totalSigner int) error
2527
GetBridgeContract() string
2628
PollEvents(sysErr chan<- error, stop <-chan struct{}, eventsChan chan *SetArbiterListMsg)
@@ -155,6 +157,16 @@ func (r *Relayer) SetESCState(state uint8) error {
155157
return nil
156158
}
157159

160+
func (r *Relayer) GetHashSalt(chainID uint64) (*big.Int, error) {
161+
for _, c := range r.relayedChains {
162+
if c.ChainID() != chainID {
163+
continue
164+
}
165+
return c.GetHashSalt()
166+
}
167+
return big.NewInt(0), errors.New("GetHashSalt error chainId")
168+
}
169+
158170
func (r *Relayer) SetManualArbiters(arbiters []common.Address, totalCount int) error {
159171
for _, c := range r.relayedChains {
160172
if c.ChainID() != r.escChainID {

chainbridge_abi/utils.go

+6
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,9 @@ func SetManualArbiterABI() (abi.ABI, error) {
5353
a, err := abi.JSON(strings.NewReader(definition))
5454
return a, err
5555
}
56+
57+
func GetHashSaltABI() (abi.ABI, error) {
58+
definition := "[{\"inputs\": [],\"name\": \"GetHashSalt\",\"outputs\": [{\"internalType\": \"uint256\",\"name\": \"\",\"type\": \"uint256\"}],\"stateMutability\": \"view\",\"type\": \"function\"}]"
59+
a, err := abi.JSON(strings.NewReader(definition))
60+
return a, err
61+
}

0 commit comments

Comments
 (0)