mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 01:43:47 +00:00
* swarm: Integrate encryption into dpa and chunker This is not a fully functional change. Chunker api changed: it uses Putter and Getter interfaces to put and get chunks from the store and to do the encryption/decryption if needed. These putters and getters should also the hashing, so hashing related code could be removed from chunker. Some things are temporary, pyramid chunker doesn't work yet (only tree chunker), and hashing and putting in dpa is not parallelized. * swarm/storage: Use TreeChunker in DPA PyramydChunker doesn't work yet with Putter/Getter * swarm/storage: HasherStore needs a new hasher instance on every chunk creation This fixes the tests with pyramid chunker * swarm/storage: Add back tree/pyramid comparison in chunker test * swarm: Refactor chunker, new chunker instance is needed for each job Chunker code is much simpler if all data of the job is stored on the chunker object itself. * swarm/storage: Remove commented code * swarm/storage: Added comments * cmd/swarm: Remove Branches from config * swarm/storage: Remove commented code * swarm/network: Remove chunker from syncer * swarm/storage: Remove Chunker/Splitter/Joiner interfaces They are not used anymore * swarm/storage: Fix comment * swarm/storage: Reenable chunker_test.TestDataAppend * swarm/storage: Fix comments * swarm/storage, cmd/swarm: Add FakeChunkStore Instead of using a nil ChunkStore in hasherStore when we don't want the hasherStore to actually store the chunk data, now a FakeChunkStore instance should be used. Because of this the nil checks of the hasherStore.store could be removed. * swarm/storage: Use DefaultChunkSize az constant, not DefaultBranches The branches what is changing, and it is dependent on chunk size and hash size * swarm/storage: Remove unnecessary return statement * swarm/storage: Rename unfinishedChunk to unfinishedChunkData * swarm/storage: Move NewTreeSplitterParams to chunker.go It was in pyramid.go, although TreeSplitter is in chunker.go * swarm/storage: Minor cleanup incrementWorkerCount can be moved into runWorker remove obsolete comment * swarm/storage: Add TODO comment to chunker depth parameter Depth can only be 0 because of a bug: https://github.com/ethersphere/go-ethereum/issues/344 * swarm/storage: Fix padding in hasherStore There was a bug that data was not lengthened to padding * swarm/storage: Add unit test for hasherStore * swarm/storage: Decrease initial counter in span encryption * swarm/storage: Renames in benchmark tests * swarm/storage: Fixed pyramid benchmark test * swarm/storage: Convert TestHasherStore to table-driven test * swarm/storage, cmd/swarm: New MapChunkStore, simple ChunkStore implementation It is not just the test which needs this kind of implementation * swarm/storage: Cleanup on hashSize/chunkSize handling
298 lines
7.4 KiB
Go
298 lines
7.4 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 stream
|
|
|
|
import (
|
|
"context"
|
|
crand "crypto/rand"
|
|
"encoding/binary"
|
|
"fmt"
|
|
"io"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/ethereum/go-ethereum/node"
|
|
"github.com/ethereum/go-ethereum/p2p/discover"
|
|
"github.com/ethereum/go-ethereum/p2p/simulations"
|
|
"github.com/ethereum/go-ethereum/p2p/simulations/adapters"
|
|
"github.com/ethereum/go-ethereum/rpc"
|
|
"github.com/ethereum/go-ethereum/swarm/network"
|
|
streamTesting "github.com/ethereum/go-ethereum/swarm/network/stream/testing"
|
|
"github.com/ethereum/go-ethereum/swarm/state"
|
|
"github.com/ethereum/go-ethereum/swarm/storage"
|
|
)
|
|
|
|
var (
|
|
externalStreamName = "externalStream"
|
|
externalStreamSessionAt uint64 = 50
|
|
externalStreamMaxKeys uint64 = 100
|
|
)
|
|
|
|
func newIntervalsStreamerService(ctx *adapters.ServiceContext) (node.Service, error) {
|
|
id := ctx.Config.ID
|
|
addr := toAddr(id)
|
|
kad := network.NewKademlia(addr.Over(), network.NewKadParams())
|
|
store := stores[id].(*storage.LocalStore)
|
|
db := storage.NewDBAPI(store)
|
|
delivery := NewDelivery(kad, db)
|
|
deliveries[id] = delivery
|
|
r := NewRegistry(addr, delivery, db, state.NewMemStore(), &RegistryOptions{
|
|
SkipCheck: defaultSkipCheck,
|
|
})
|
|
|
|
r.RegisterClientFunc(externalStreamName, func(p *Peer, t string, live bool) (Client, error) {
|
|
return newTestExternalClient(db), nil
|
|
})
|
|
r.RegisterServerFunc(externalStreamName, func(p *Peer, t string, live bool) (Server, error) {
|
|
return newTestExternalServer(t, externalStreamSessionAt, externalStreamMaxKeys, nil), nil
|
|
})
|
|
|
|
go func() {
|
|
waitPeerErrC <- waitForPeers(r, 1*time.Second, peerCount(id))
|
|
}()
|
|
return &TestExternalRegistry{r}, nil
|
|
}
|
|
|
|
func TestIntervals(t *testing.T) {
|
|
testIntervals(t, true, nil)
|
|
testIntervals(t, false, NewRange(9, 26))
|
|
testIntervals(t, true, NewRange(9, 26))
|
|
}
|
|
|
|
func testIntervals(t *testing.T, live bool, history *Range) {
|
|
nodes := 2
|
|
chunkCount := dataChunkCount
|
|
skipCheck := false
|
|
|
|
defaultSkipCheck = skipCheck
|
|
toAddr = network.NewAddrFromNodeID
|
|
conf := &streamTesting.RunConfig{
|
|
Adapter: *adapter,
|
|
NodeCount: nodes,
|
|
ConnLevel: 1,
|
|
ToAddr: toAddr,
|
|
Services: services,
|
|
DefaultService: "intervalsStreamer",
|
|
}
|
|
|
|
sim, teardown, err := streamTesting.NewSimulation(conf)
|
|
defer teardown()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
stores = make(map[discover.NodeID]storage.ChunkStore)
|
|
deliveries = make(map[discover.NodeID]*Delivery)
|
|
for i, id := range sim.IDs {
|
|
stores[id] = sim.Stores[i]
|
|
}
|
|
|
|
peerCount = func(id discover.NodeID) int {
|
|
return 1
|
|
}
|
|
|
|
dpa := storage.NewDPA(sim.Stores[0], storage.NewDPAParams())
|
|
size := chunkCount * chunkSize
|
|
_, wait, err := dpa.Store(io.LimitReader(crand.Reader, int64(size)), int64(size), false)
|
|
wait()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
errc := make(chan error, 1)
|
|
waitPeerErrC = make(chan error)
|
|
quitC := make(chan struct{})
|
|
defer close(quitC)
|
|
|
|
action := func(ctx context.Context) error {
|
|
i := 0
|
|
for err := range waitPeerErrC {
|
|
if err != nil {
|
|
return fmt.Errorf("error waiting for peers: %s", err)
|
|
}
|
|
i++
|
|
if i == nodes {
|
|
break
|
|
}
|
|
}
|
|
|
|
id := sim.IDs[1]
|
|
|
|
err := sim.CallClient(id, func(client *rpc.Client) error {
|
|
|
|
sid := sim.IDs[0]
|
|
|
|
err := streamTesting.WatchDisconnections(id, client, errc, quitC)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
ctx, cancel := context.WithTimeout(ctx, 100*time.Second)
|
|
defer cancel()
|
|
|
|
err = client.CallContext(ctx, nil, "stream_subscribeStream", sid, NewStream(externalStreamName, "", live), history, Top)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
liveErrC := make(chan error)
|
|
historyErrC := make(chan error)
|
|
|
|
go func() {
|
|
if !live {
|
|
close(liveErrC)
|
|
return
|
|
}
|
|
|
|
var err error
|
|
defer func() {
|
|
liveErrC <- err
|
|
}()
|
|
|
|
// live stream
|
|
liveHashesChan := make(chan []byte)
|
|
liveSubscription, err := client.Subscribe(ctx, "stream", liveHashesChan, "getHashes", sid, NewStream(externalStreamName, "", true))
|
|
if err != nil {
|
|
return
|
|
}
|
|
defer liveSubscription.Unsubscribe()
|
|
|
|
i := externalStreamSessionAt
|
|
|
|
// we have subscribed, enable notifications
|
|
err = client.CallContext(ctx, nil, "stream_enableNotifications", sid, NewStream(externalStreamName, "", true))
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
for {
|
|
select {
|
|
case hash := <-liveHashesChan:
|
|
h := binary.BigEndian.Uint64(hash)
|
|
if h != i {
|
|
err = fmt.Errorf("expected live hash %d, got %d", i, h)
|
|
return
|
|
}
|
|
i++
|
|
if i > externalStreamMaxKeys {
|
|
return
|
|
}
|
|
case err = <-liveSubscription.Err():
|
|
return
|
|
case <-ctx.Done():
|
|
return
|
|
}
|
|
}
|
|
}()
|
|
|
|
go func() {
|
|
if live && history == nil {
|
|
close(historyErrC)
|
|
return
|
|
}
|
|
|
|
var err error
|
|
defer func() {
|
|
historyErrC <- err
|
|
}()
|
|
|
|
// history stream
|
|
historyHashesChan := make(chan []byte)
|
|
historySubscription, err := client.Subscribe(ctx, "stream", historyHashesChan, "getHashes", sid, NewStream(externalStreamName, "", false))
|
|
if err != nil {
|
|
return
|
|
}
|
|
defer historySubscription.Unsubscribe()
|
|
|
|
var i uint64
|
|
historyTo := externalStreamMaxKeys
|
|
if history != nil {
|
|
i = history.From
|
|
if history.To != 0 {
|
|
historyTo = history.To
|
|
}
|
|
}
|
|
|
|
// we have subscribed, enable notifications
|
|
err = client.CallContext(ctx, nil, "stream_enableNotifications", sid, NewStream(externalStreamName, "", false))
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
for {
|
|
select {
|
|
case hash := <-historyHashesChan:
|
|
h := binary.BigEndian.Uint64(hash)
|
|
if h != i {
|
|
err = fmt.Errorf("expected history hash %d, got %d", i, h)
|
|
return
|
|
}
|
|
i++
|
|
if i > historyTo {
|
|
return
|
|
}
|
|
case err = <-historySubscription.Err():
|
|
return
|
|
case <-ctx.Done():
|
|
return
|
|
}
|
|
}
|
|
}()
|
|
|
|
if err := <-liveErrC; err != nil {
|
|
return err
|
|
}
|
|
if err := <-historyErrC; err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
})
|
|
return err
|
|
}
|
|
check := func(ctx context.Context, id discover.NodeID) (bool, error) {
|
|
select {
|
|
case err := <-errc:
|
|
return false, err
|
|
case <-ctx.Done():
|
|
return false, ctx.Err()
|
|
default:
|
|
}
|
|
return true, nil
|
|
}
|
|
|
|
conf.Step = &simulations.Step{
|
|
Action: action,
|
|
Trigger: streamTesting.Trigger(10*time.Millisecond, quitC, sim.IDs[0]),
|
|
Expect: &simulations.Expectation{
|
|
Nodes: sim.IDs[1:1],
|
|
Check: check,
|
|
},
|
|
}
|
|
startedAt := time.Now()
|
|
timeout := 300 * time.Second
|
|
ctx, cancel := context.WithTimeout(context.Background(), timeout)
|
|
defer cancel()
|
|
result, err := sim.Run(ctx, conf)
|
|
finishedAt := time.Now()
|
|
if err != nil {
|
|
t.Fatalf("Setting up simulation failed: %v", err)
|
|
}
|
|
if result.Error != nil {
|
|
t.Fatalf("Simulation failed: %s", result.Error)
|
|
}
|
|
streamTesting.CheckResult(t, result, startedAt, finishedAt)
|
|
}
|