mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
cmd, les, node: remove callback mechanism cmd, node: remove callback definition les: simplify the registrar les: expose checkpoint rpc services in the light client les, light: don't store untrusted receipt cmd, contracts, les: discard stale checkpoint cmd, contracts/registrar: loose restriction of registeration cmd, contracts: add replay-protection all: off-chain multi-signature contract params: deploy checkpoint contract for rinkeby cmd/registrar: add raw signing mode for registrar cmd/registrar, contracts/registrar, les: fixed messages
112 lines
3.6 KiB
Go
112 lines
3.6 KiB
Go
// Copyright 2018 The go-ethereum Authors
|
|
// This file is part of the go-ethereum library.
|
|
//
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package les
|
|
|
|
import (
|
|
"errors"
|
|
"math/big"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/ethereum/go-ethereum/core"
|
|
"github.com/ethereum/go-ethereum/crypto"
|
|
"github.com/ethereum/go-ethereum/light"
|
|
"github.com/ethereum/go-ethereum/params"
|
|
)
|
|
|
|
func TestCheckpointSyncingLes2(t *testing.T) { testCheckpointSyncing(t, 2) }
|
|
|
|
func testCheckpointSyncing(t *testing.T, protocol int) {
|
|
config := light.TestServerIndexerConfig
|
|
|
|
waitIndexers := func(cIndexer, bIndexer, btIndexer *core.ChainIndexer) {
|
|
for {
|
|
cs, _, _ := cIndexer.Sections()
|
|
bts, _, _ := btIndexer.Sections()
|
|
if cs >= 1 && bts >= 1 {
|
|
break
|
|
}
|
|
time.Sleep(10 * time.Millisecond)
|
|
}
|
|
}
|
|
// Generate 512+4 blocks (totally 1 CHT sections)
|
|
server, client, tearDown := newClientServerEnv(t, int(config.ChtSize+config.ChtConfirms), protocol, waitIndexers, false)
|
|
defer tearDown()
|
|
|
|
// Register checkpoint 0 into the contract at block (512+4)+1
|
|
s, _, head := server.chtIndexer.Sections()
|
|
chtRoot := light.GetChtRoot(server.db, s-1, head)
|
|
btRoot := light.GetBloomTrieRoot(server.db, s-1, head)
|
|
|
|
cp := ¶ms.TrustedCheckpoint{
|
|
SectionIndex: 0,
|
|
SectionHead: head,
|
|
CHTRoot: chtRoot,
|
|
BloomRoot: btRoot,
|
|
}
|
|
header := server.backend.Blockchain().CurrentHeader()
|
|
|
|
data := append([]byte{0x19, 0x00}, append(registrarAddr.Bytes(), append([]byte{0, 0, 0, 0, 0, 0, 0, 0}, cp.Hash().Bytes()...)...)...)
|
|
sig, _ := crypto.Sign(crypto.Keccak256(data), signerKey)
|
|
sig[64] += 27 // Transform V from 0/1 to 27/28 according to the yellow paper
|
|
if _, err := server.pm.reg.contract.RegisterCheckpoint(signerKey, cp.SectionIndex, cp.Hash().Bytes(), new(big.Int).Sub(header.Number, big.NewInt(1)), header.ParentHash, [][]byte{sig}); err != nil {
|
|
t.Error("register checkpoint failed", err)
|
|
}
|
|
server.backend.Commit()
|
|
server.backend.InsertEmptyBlocks(1)
|
|
|
|
// Wait for the checkpoint registration
|
|
for {
|
|
_, hash, _, err := server.pm.reg.contract.Contract().GetLatestCheckpoint(nil)
|
|
if err != nil || hash == [32]byte{} {
|
|
time.Sleep(100 * time.Millisecond)
|
|
continue
|
|
}
|
|
break
|
|
}
|
|
|
|
done := make(chan error)
|
|
client.pm.reg.syncDoneHook = func() {
|
|
header := client.pm.blockchain.CurrentHeader()
|
|
if header.Number.Uint64() == config.ChtSize+config.ChtConfirms+2 {
|
|
done <- nil
|
|
} else {
|
|
done <- errors.New("blockchain mismatch")
|
|
}
|
|
}
|
|
|
|
// Create connected peer pair.
|
|
peer, err1, lPeer, err2 := newTestPeerPair("peer", protocol, server.pm, client.pm)
|
|
select {
|
|
case <-time.After(time.Millisecond * 100):
|
|
case err := <-err1:
|
|
t.Fatalf("peer 1 handshake error: %v", err)
|
|
case err := <-err2:
|
|
t.Fatalf("peer 2 handshake error: %v", err)
|
|
}
|
|
server.rPeer, client.rPeer = peer, lPeer
|
|
|
|
select {
|
|
case err := <-done:
|
|
if err != nil {
|
|
t.Error("sync failed", err)
|
|
}
|
|
return
|
|
case <-time.NewTimer(10 * time.Second).C:
|
|
t.Error("checkpoint syncing timeout")
|
|
}
|
|
}
|