aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/dexon-foundation/dexon-consensus/core/db/level-db.go
blob: 52968331e915f8ba74d4673d3f25f7878deed86a (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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
// Copyright 2018 The dexon-consensus Authors
// This file is part of the dexon-consensus library.
//
// The dexon-consensus 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 dexon-consensus 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 dexon-consensus library. If not, see
// <http://www.gnu.org/licenses/>.

package db

import (
    "encoding/binary"
    "io"

    "github.com/syndtr/goleveldb/leveldb"

    "github.com/dexon-foundation/dexon-consensus/common"
    "github.com/dexon-foundation/dexon-consensus/core/crypto/dkg"
    "github.com/dexon-foundation/dexon-consensus/core/types"
    "github.com/dexon-foundation/dexon/rlp"
)

var (
    blockKeyPrefix            = []byte("b-")
    compactionChainTipInfoKey = []byte("cc-tip")
    dkgPrivateKeyKeyPrefix    = []byte("dkg-prvs")
    dkgProtocolInfoKeyPrefix  = []byte("dkg-protocol-info")
)

type compactionChainTipInfo struct {
    Height uint64      `json:"height"`
    Hash   common.Hash `json:"hash"`
}

// DKGProtocolInfo DKG protocol info.
type DKGProtocolInfo struct {
    ID                        types.NodeID
    Round                     uint64
    Threshold                 uint64
    IDMap                     NodeIDToDKGID
    MpkMap                    NodeIDToPubShares
    MasterPrivateShare        dkg.PrivateKeyShares
    IsMasterPrivateShareEmpty bool
    PrvShares                 dkg.PrivateKeyShares
    IsPrvSharesEmpty          bool
    PrvSharesReceived         NodeID
    NodeComplained            NodeID
    AntiComplaintReceived     NodeIDToNodeIDs
    Step                      uint64
    Reset                     uint64
}

// Equal compare with target DKGProtocolInfo.
func (info *DKGProtocolInfo) Equal(target *DKGProtocolInfo) bool {
    if !info.ID.Equal(target.ID) ||
        info.Round != target.Round ||
        info.Threshold != target.Threshold ||
        info.IsMasterPrivateShareEmpty != target.IsMasterPrivateShareEmpty ||
        info.IsPrvSharesEmpty != target.IsPrvSharesEmpty ||
        info.Step != target.Step ||
        info.Reset != target.Reset ||
        !info.MasterPrivateShare.Equal(&target.MasterPrivateShare) ||
        !info.PrvShares.Equal(&target.PrvShares) {
        return false
    }

    if len(info.IDMap) != len(target.IDMap) {
        return false
    }
    for k, v := range info.IDMap {
        tV, exist := target.IDMap[k]
        if !exist {
            return false
        }

        if !v.IsEqual(&tV) {
            return false
        }
    }

    if len(info.MpkMap) != len(target.MpkMap) {
        return false
    }
    for k, v := range info.MpkMap {
        tV, exist := target.MpkMap[k]
        if !exist {
            return false
        }

        if !v.Equal(tV) {
            return false
        }
    }

    if len(info.PrvSharesReceived) != len(target.PrvSharesReceived) {
        return false
    }
    for k := range info.PrvSharesReceived {
        _, exist := target.PrvSharesReceived[k]
        if !exist {
            return false
        }
    }

    if len(info.NodeComplained) != len(target.NodeComplained) {
        return false
    }
    for k := range info.NodeComplained {
        _, exist := target.NodeComplained[k]
        if !exist {
            return false
        }
    }

    if len(info.AntiComplaintReceived) != len(target.AntiComplaintReceived) {
        return false
    }
    for k, v := range info.AntiComplaintReceived {
        tV, exist := target.AntiComplaintReceived[k]
        if !exist {
            return false
        }

        if len(v) != len(tV) {
            return false
        }
        for kk := range v {
            _, exist := tV[kk]
            if !exist {
                return false
            }
        }
    }

    return true
}

// NodeIDToNodeIDs the map with NodeID to NodeIDs.
type NodeIDToNodeIDs map[types.NodeID]map[types.NodeID]struct{}

// EncodeRLP implements rlp.Encoder
func (m NodeIDToNodeIDs) EncodeRLP(w io.Writer) error {
    var allBytes [][][]byte
    for k, v := range m {
        kBytes, err := k.MarshalText()
        if err != nil {
            return err
        }
        allBytes = append(allBytes, [][]byte{kBytes})

        var vBytes [][]byte
        for subK := range v {
            bytes, err := subK.MarshalText()
            if err != nil {
                return err
            }
            vBytes = append(vBytes, bytes)
        }
        allBytes = append(allBytes, vBytes)
    }

    return rlp.Encode(w, allBytes)
}

// DecodeRLP implements rlp.Encoder
func (m *NodeIDToNodeIDs) DecodeRLP(s *rlp.Stream) error {
    *m = make(NodeIDToNodeIDs)
    var dec [][][]byte
    if err := s.Decode(&dec); err != nil {
        return err
    }

    for i := 0; i < len(dec); i += 2 {
        key := types.NodeID{}
        err := key.UnmarshalText(dec[i][0])
        if err != nil {
            return err
        }

        valueMap := map[types.NodeID]struct{}{}
        for _, v := range dec[i+1] {
            value := types.NodeID{}
            err := value.UnmarshalText(v)
            if err != nil {
                return err
            }

            valueMap[value] = struct{}{}
        }

        (*m)[key] = valueMap
    }

    return nil
}

// NodeID the map with NodeID.
type NodeID map[types.NodeID]struct{}

// EncodeRLP implements rlp.Encoder
func (m NodeID) EncodeRLP(w io.Writer) error {
    var allBytes [][]byte
    for k := range m {
        kBytes, err := k.MarshalText()
        if err != nil {
            return err
        }
        allBytes = append(allBytes, kBytes)
    }

    return rlp.Encode(w, allBytes)
}

// DecodeRLP implements rlp.Encoder
func (m *NodeID) DecodeRLP(s *rlp.Stream) error {
    *m = make(NodeID)
    var dec [][]byte
    if err := s.Decode(&dec); err != nil {
        return err
    }

    for i := 0; i < len(dec); i++ {
        key := types.NodeID{}
        err := key.UnmarshalText(dec[i])
        if err != nil {
            return err
        }

        (*m)[key] = struct{}{}
    }

    return nil
}

// NodeIDToPubShares the map with NodeID to PublicKeyShares.
type NodeIDToPubShares map[types.NodeID]*dkg.PublicKeyShares

// EncodeRLP implements rlp.Encoder
func (m NodeIDToPubShares) EncodeRLP(w io.Writer) error {
    var allBytes [][]byte
    for k, v := range m {
        kBytes, err := k.MarshalText()
        if err != nil {
            return err
        }
        allBytes = append(allBytes, kBytes)

        bytes, err := rlp.EncodeToBytes(v)
        if err != nil {
            return err
        }
        allBytes = append(allBytes, bytes)
    }

    return rlp.Encode(w, allBytes)
}

// DecodeRLP implements rlp.Encoder
func (m *NodeIDToPubShares) DecodeRLP(s *rlp.Stream) error {
    *m = make(NodeIDToPubShares)
    var dec [][]byte
    if err := s.Decode(&dec); err != nil {
        return err
    }

    for i := 0; i < len(dec); i += 2 {
        key := types.NodeID{}
        err := key.UnmarshalText(dec[i])
        if err != nil {
            return err
        }

        value := dkg.PublicKeyShares{}
        err = rlp.DecodeBytes(dec[i+1], &value)
        if err != nil {
            return err
        }

        (*m)[key] = &value
    }

    return nil
}

// NodeIDToDKGID the map with NodeID to DKGID.
type NodeIDToDKGID map[types.NodeID]dkg.ID

// EncodeRLP implements rlp.Encoder
func (m NodeIDToDKGID) EncodeRLP(w io.Writer) error {
    var allBytes [][]byte
    for k, v := range m {
        kBytes, err := k.MarshalText()
        if err != nil {
            return err
        }
        allBytes = append(allBytes, kBytes)
        allBytes = append(allBytes, v.GetLittleEndian())
    }

    return rlp.Encode(w, allBytes)
}

// DecodeRLP implements rlp.Encoder
func (m *NodeIDToDKGID) DecodeRLP(s *rlp.Stream) error {
    *m = make(NodeIDToDKGID)
    var dec [][]byte
    if err := s.Decode(&dec); err != nil {
        return err
    }

    for i := 0; i < len(dec); i += 2 {
        key := types.NodeID{}
        err := key.UnmarshalText(dec[i])
        if err != nil {
            return err
        }

        value := dkg.ID{}
        err = value.SetLittleEndian(dec[i+1])
        if err != nil {
            return err
        }

        (*m)[key] = value
    }

    return nil
}

// LevelDBBackedDB is a leveldb backed DB implementation.
type LevelDBBackedDB struct {
    db *leveldb.DB
}

// NewLevelDBBackedDB initialize a leveldb-backed database.
func NewLevelDBBackedDB(
    path string) (lvl *LevelDBBackedDB, err error) {

    dbInst, err := leveldb.OpenFile(path, nil)
    if err != nil {
        return
    }
    lvl = &LevelDBBackedDB{db: dbInst}
    return
}

// Close implement Closer interface, which would release allocated resource.
func (lvl *LevelDBBackedDB) Close() error {
    return lvl.db.Close()
}

// HasBlock implements the Reader.Has method.
func (lvl *LevelDBBackedDB) HasBlock(hash common.Hash) bool {
    exists, err := lvl.internalHasBlock(lvl.getBlockKey(hash))
    if err != nil {
        panic(err)
    }
    return exists
}

func (lvl *LevelDBBackedDB) internalHasBlock(key []byte) (bool, error) {
    return lvl.db.Has(key, nil)
}

// GetBlock implements the Reader.GetBlock method.
func (lvl *LevelDBBackedDB) GetBlock(
    hash common.Hash) (block types.Block, err error) {
    queried, err := lvl.db.Get(lvl.getBlockKey(hash), nil)
    if err != nil {
        if err == leveldb.ErrNotFound {
            err = ErrBlockDoesNotExist
        }
        return
    }
    err = rlp.DecodeBytes(queried, &block)
    return
}

// UpdateBlock implements the Writer.UpdateBlock method.
func (lvl *LevelDBBackedDB) UpdateBlock(block types.Block) (err error) {
    // NOTE: we didn't handle changes of block hash (and it
    //       should not happen).
    marshaled, err := rlp.EncodeToBytes(&block)
    if err != nil {
        return
    }
    blockKey := lvl.getBlockKey(block.Hash)
    exists, err := lvl.internalHasBlock(blockKey)
    if err != nil {
        return
    }
    if !exists {
        err = ErrBlockDoesNotExist
        return
    }
    err = lvl.db.Put(blockKey, marshaled, nil)
    return
}

// PutBlock implements the Writer.PutBlock method.
func (lvl *LevelDBBackedDB) PutBlock(block types.Block) (err error) {
    marshaled, err := rlp.EncodeToBytes(&block)
    if err != nil {
        return
    }
    blockKey := lvl.getBlockKey(block.Hash)
    exists, err := lvl.internalHasBlock(blockKey)
    if err != nil {
        return
    }
    if exists {
        err = ErrBlockExists
        return
    }
    err = lvl.db.Put(blockKey, marshaled, nil)
    return
}

// GetAllBlocks implements Reader.GetAllBlocks method, which allows callers
// to retrieve all blocks in DB.
func (lvl *LevelDBBackedDB) GetAllBlocks() (BlockIterator, error) {
    return nil, ErrNotImplemented
}

// PutCompactionChainTipInfo saves tip of compaction chain into the database.
func (lvl *LevelDBBackedDB) PutCompactionChainTipInfo(
    blockHash common.Hash, height uint64) error {
    marshaled, err := rlp.EncodeToBytes(&compactionChainTipInfo{
        Hash:   blockHash,
        Height: height,
    })
    if err != nil {
        return err
    }
    // Check current cached tip info to make sure the one to be updated is
    // valid.
    info, err := lvl.internalGetCompactionChainTipInfo()
    if err != nil {
        return err
    }
    if info.Height+1 != height {
        return ErrInvalidCompactionChainTipHeight
    }
    return lvl.db.Put(compactionChainTipInfoKey, marshaled, nil)
}

func (lvl *LevelDBBackedDB) internalGetCompactionChainTipInfo() (
    info compactionChainTipInfo, err error) {
    queried, err := lvl.db.Get(compactionChainTipInfoKey, nil)
    if err != nil {
        if err == leveldb.ErrNotFound {
            err = nil
        }
        return
    }
    err = rlp.DecodeBytes(queried, &info)
    return
}

// GetCompactionChainTipInfo get the tip info of compaction chain into the
// database.
func (lvl *LevelDBBackedDB) GetCompactionChainTipInfo() (
    hash common.Hash, height uint64) {
    info, err := lvl.internalGetCompactionChainTipInfo()
    if err != nil {
        panic(err)
    }
    hash, height = info.Hash, info.Height
    return
}

// HasDKGPrivateKey check existence of DKG private key of one round.
func (lvl *LevelDBBackedDB) HasDKGPrivateKey(round uint64) (bool, error) {
    return lvl.db.Has(lvl.getDKGPrivateKeyKey(round), nil)
}

// GetDKGPrivateKey get DKG private key of one round.
func (lvl *LevelDBBackedDB) GetDKGPrivateKey(round uint64) (
    prv dkg.PrivateKey, err error) {
    queried, err := lvl.db.Get(lvl.getDKGPrivateKeyKey(round), nil)
    if err != nil {
        if err == leveldb.ErrNotFound {
            err = ErrDKGPrivateKeyDoesNotExist
        }
        return
    }
    err = rlp.DecodeBytes(queried, &prv)
    return
}

// PutDKGPrivateKey save DKG private key of one round.
func (lvl *LevelDBBackedDB) PutDKGPrivateKey(
    round uint64, prv dkg.PrivateKey) error {
    // Check existence.
    exists, err := lvl.HasDKGPrivateKey(round)
    if err != nil {
        return err
    }
    if exists {
        return ErrDKGPrivateKeyExists
    }
    marshaled, err := rlp.EncodeToBytes(&prv)
    if err != nil {
        return err
    }
    return lvl.db.Put(
        lvl.getDKGPrivateKeyKey(round), marshaled, nil)
}

// GetDKGProtocol get DKG protocol.
func (lvl *LevelDBBackedDB) GetDKGProtocol() (
    info DKGProtocolInfo, err error) {
    queried, err := lvl.db.Get(lvl.getDKGProtocolInfoKey(), nil)
    if err != nil {
        if err == leveldb.ErrNotFound {
            err = ErrDKGProtocolDoesNotExist
        }
        return
    }

    err = rlp.DecodeBytes(queried, &info)
    return
}

// PutOrUpdateDKGProtocol save DKG protocol.
func (lvl *LevelDBBackedDB) PutOrUpdateDKGProtocol(info DKGProtocolInfo) error {
    marshaled, err := rlp.EncodeToBytes(&info)
    if err != nil {
        return err
    }
    return lvl.db.Put(lvl.getDKGProtocolInfoKey(), marshaled, nil)
}

func (lvl *LevelDBBackedDB) getBlockKey(hash common.Hash) (ret []byte) {
    ret = make([]byte, len(blockKeyPrefix)+len(hash[:]))
    copy(ret, blockKeyPrefix)
    copy(ret[len(blockKeyPrefix):], hash[:])
    return
}

func (lvl *LevelDBBackedDB) getDKGPrivateKeyKey(
    round uint64) (ret []byte) {
    ret = make([]byte, len(dkgPrivateKeyKeyPrefix)+8)
    copy(ret, dkgPrivateKeyKeyPrefix)
    binary.LittleEndian.PutUint64(
        ret[len(dkgPrivateKeyKeyPrefix):], round)
    return
}

func (lvl *LevelDBBackedDB) getDKGProtocolInfoKey() (ret []byte) {
    ret = make([]byte, len(dkgProtocolInfoKeyPrefix)+8)
    copy(ret, dkgProtocolInfoKeyPrefix)
    return
}