aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/storage/types.go
blob: 7ec21328e2bbb31816f95393803b3c96c2637365 (plain) (blame)
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
// Copyright 2016 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 storage

import (
    "bytes"
    "context"
    "crypto"
    "crypto/rand"
    "encoding/binary"
    "fmt"
    "io"

    "github.com/ethereum/go-ethereum/common"
    "github.com/ethereum/go-ethereum/swarm/bmt"
    ch "github.com/ethereum/go-ethereum/swarm/chunk"
    "golang.org/x/crypto/sha3"
)

const MaxPO = 16
const AddressLength = 32

type SwarmHasher func() SwarmHash

type Address []byte

// Proximity(x, y) returns the proximity order of the MSB distance between x and y
//
// The distance metric MSB(x, y) of two equal length byte sequences x an y is the
// value of the binary integer cast of the x^y, ie., x and y bitwise xor-ed.
// the binary cast is big endian: most significant bit first (=MSB).
//
// Proximity(x, y) is a discrete logarithmic scaling of the MSB distance.
// It is defined as the reverse rank of the integer part of the base 2
// logarithm of the distance.
// It is calculated by counting the number of common leading zeros in the (MSB)
// binary representation of the x^y.
//
// (0 farthest, 255 closest, 256 self)
func Proximity(one, other []byte) (ret int) {
    b := (MaxPO-1)/8 + 1
    if b > len(one) {
        b = len(one)
    }
    m := 8
    for i := 0; i < b; i++ {
        oxo := one[i] ^ other[i]
        for j := 0; j < m; j++ {
            if (oxo>>uint8(7-j))&0x01 != 0 {
                return i*8 + j
            }
        }
    }
    return MaxPO
}

var ZeroAddr = Address(common.Hash{}.Bytes())

func MakeHashFunc(hash string) SwarmHasher {
    switch hash {
    case "SHA256":
        return func() SwarmHash { return &HashWithLength{crypto.SHA256.New()} }
    case "SHA3":
        return func() SwarmHash { return &HashWithLength{sha3.NewLegacyKeccak256()} }
    case "BMT":
        return func() SwarmHash {
            hasher := sha3.NewLegacyKeccak256
            hasherSize := hasher().Size()
            segmentCount := ch.DefaultSize / hasherSize
            pool := bmt.NewTreePool(hasher, segmentCount, bmt.PoolSize)
            return bmt.New(pool)
        }
    }
    return nil
}

func (a Address) Hex() string {
    return fmt.Sprintf("%064x", []byte(a[:]))
}

func (a Address) Log() string {
    if len(a[:]) < 8 {
        return fmt.Sprintf("%x", []byte(a[:]))
    }
    return fmt.Sprintf("%016x", []byte(a[:8]))
}

func (a Address) String() string {
    return fmt.Sprintf("%064x", []byte(a))
}

func (a Address) MarshalJSON() (out []byte, err error) {
    return []byte(`"` + a.String() + `"`), nil
}

func (a *Address) UnmarshalJSON(value []byte) error {
    s := string(value)
    *a = make([]byte, 32)
    h := common.Hex2Bytes(s[1 : len(s)-1])
    copy(*a, h)
    return nil
}

type AddressCollection []Address

func NewAddressCollection(l int) AddressCollection {
    return make(AddressCollection, l)
}

func (c AddressCollection) Len() int {
    return len(c)
}

func (c AddressCollection) Less(i, j int) bool {
    return bytes.Compare(c[i], c[j]) == -1
}

func (c AddressCollection) Swap(i, j int) {
    c[i], c[j] = c[j], c[i]
}

// Chunk interface implemented by context.Contexts and data chunks
type Chunk interface {
    Address() Address
    Data() []byte
}

type chunk struct {
    addr  Address
    sdata []byte
    span  int64
}

func NewChunk(addr Address, data []byte) *chunk {
    return &chunk{
        addr:  addr,
        sdata: data,
        span:  -1,
    }
}

func (c *chunk) Address() Address {
    return c.addr
}

func (c *chunk) Data() []byte {
    return c.sdata
}

// String() for pretty printing
func (self *chunk) String() string {
    return fmt.Sprintf("Address: %v TreeSize: %v Chunksize: %v", self.addr.Log(), self.span, len(self.sdata))
}

func GenerateRandomChunk(dataSize int64) Chunk {
    hasher := MakeHashFunc(DefaultHash)()
    sdata := make([]byte, dataSize+8)
    rand.Read(sdata[8:])
    binary.LittleEndian.PutUint64(sdata[:8], uint64(dataSize))
    hasher.ResetWithLength(sdata[:8])
    hasher.Write(sdata[8:])
    return NewChunk(hasher.Sum(nil), sdata)
}

func GenerateRandomChunks(dataSize int64, count int) (chunks []Chunk) {
    for i := 0; i < count; i++ {
        ch := GenerateRandomChunk(dataSize)
        chunks = append(chunks, ch)
    }
    return chunks
}

// Size, Seek, Read, ReadAt
type LazySectionReader interface {
    Context() context.Context
    Size(context.Context, chan bool) (int64, error)
    io.Seeker
    io.Reader
    io.ReaderAt
}

type LazyTestSectionReader struct {
    *io.SectionReader
}

func (r *LazyTestSectionReader) Size(context.Context, chan bool) (int64, error) {
    return r.SectionReader.Size(), nil
}

func (r *LazyTestSectionReader) Context() context.Context {
    return context.TODO()
}

type StoreParams struct {
    Hash          SwarmHasher `toml:"-"`
    DbCapacity    uint64
    CacheCapacity uint
    BaseKey       []byte
}

func NewDefaultStoreParams() *StoreParams {
    return NewStoreParams(defaultLDBCapacity, defaultCacheCapacity, nil, nil)
}

func NewStoreParams(ldbCap uint64, cacheCap uint, hash SwarmHasher, basekey []byte) *StoreParams {
    if basekey == nil {
        basekey = make([]byte, 32)
    }
    if hash == nil {
        hash = MakeHashFunc(DefaultHash)
    }
    return &StoreParams{
        Hash:          hash,
        DbCapacity:    ldbCap,
        CacheCapacity: cacheCap,
        BaseKey:       basekey,
    }
}

type ChunkData []byte

type Reference []byte

// Putter is responsible to store data and create a reference for it
type Putter interface {
    Put(context.Context, ChunkData) (Reference, error)
    // RefSize returns the length of the Reference created by this Putter
    RefSize() int64
    // Close is to indicate that no more chunk data will be Put on this Putter
    Close()
    // Wait returns if all data has been store and the Close() was called.
    Wait(context.Context) error
}

// Getter is an interface to retrieve a chunk's data by its reference
type Getter interface {
    Get(context.Context, Reference) (ChunkData, error)
}

// NOTE: this returns invalid data if chunk is encrypted
func (c ChunkData) Size() uint64 {
    return binary.LittleEndian.Uint64(c[:8])
}

type ChunkValidator interface {
    Validate(chunk Chunk) bool
}

// Provides method for validation of content address in chunks
// Holds the corresponding hasher to create the address
type ContentAddressValidator struct {
    Hasher SwarmHasher
}

// Constructor
func NewContentAddressValidator(hasher SwarmHasher) *ContentAddressValidator {
    return &ContentAddressValidator{
        Hasher: hasher,
    }
}

// Validate that the given key is a valid content address for the given data
func (v *ContentAddressValidator) Validate(chunk Chunk) bool {
    data := chunk.Data()
    if l := len(data); l < 9 || l > ch.DefaultSize+8 {
        // log.Error("invalid chunk size", "chunk", addr.Hex(), "size", l)
        return false
    }

    hasher := v.Hasher()
    hasher.ResetWithLength(data[:8])
    hasher.Write(data[8:])
    hash := hasher.Sum(nil)

    return bytes.Equal(hash, chunk.Address())
}

type ChunkStore interface {
    Put(ctx context.Context, ch Chunk) (err error)
    Get(rctx context.Context, ref Address) (ch Chunk, err error)
    Has(rctx context.Context, ref Address) bool
    Close()
}

// SyncChunkStore is a ChunkStore which supports syncing
type SyncChunkStore interface {
    ChunkStore
    BinIndex(po uint8) uint64
    Iterator(from uint64, to uint64, po uint8, f func(Address, uint64) bool) error
    FetchFunc(ctx context.Context, ref Address) func(context.Context) error
}

// FakeChunkStore doesn't store anything, just implements the ChunkStore interface
// It can be used to inject into a hasherStore if you don't want to actually store data just do the
// hashing
type FakeChunkStore struct {
}

// Put doesn't store anything it is just here to implement ChunkStore
func (f *FakeChunkStore) Put(_ context.Context, ch Chunk) error {
    return nil
}

// Has doesn't do anything it is just here to implement ChunkStore
func (f *FakeChunkStore) Has(_ context.Context, ref Address) bool {
    panic("FakeChunkStore doesn't support HasChunk")
}

// Get doesn't store anything it is just here to implement ChunkStore
func (f *FakeChunkStore) Get(_ context.Context, ref Address) (Chunk, error) {
    panic("FakeChunkStore doesn't support Get")
}

// Close doesn't store anything it is just here to implement ChunkStore
func (f *FakeChunkStore) Close() {
}