aboutsummaryrefslogtreecommitdiffstats
path: root/core/compaction-chain.go
blob: f5c5548170dda4a393b7336fa8e579deca1f06bf (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
// Copyright 2018 The dexon-consensus-core Authors
// This file is part of the dexon-consensus-core library.
//
// The dexon-consensus-core 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-core 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-core library. If not, see
// <http://www.gnu.org/licenses/>.

// TODO(jimmy-dexon): remove those comments before open source.

package core

import (
    "fmt"
    "sync"
    "time"

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

// Errors for compaction chain.
var (
    ErrNoWitnessToAck = fmt.Errorf(
        "no witness to ack")
    ErrIncorrectWitnessHash = fmt.Errorf(
        "hash of witness ack is incorrect")
    ErrIncorrectWitnessSignature = fmt.Errorf(
        "signature of witness ack is incorrect")
)

type pendingAck struct {
    receivedTime time.Time
    witnessAck   *types.WitnessAck
}

type compactionChain struct {
    db                blockdb.Reader
    pendingAckLock    sync.RWMutex
    pendingAck        map[common.Hash]*pendingAck
    prevBlockLock     sync.RWMutex
    prevBlock         *types.Block
    witnessAcksLock   sync.RWMutex
    latestWitnessAcks map[types.NodeID]*types.WitnessAck
    sigToPub          SigToPubFn
}

func newCompactionChain(
    db blockdb.Reader,
    sigToPub SigToPubFn,
) *compactionChain {
    return &compactionChain{
        db:                db,
        pendingAck:        make(map[common.Hash]*pendingAck),
        latestWitnessAcks: make(map[types.NodeID]*types.WitnessAck),
        sigToPub:          sigToPub,
    }
}

func (cc *compactionChain) sanityCheck(
    witnessAck *types.WitnessAck, witnessBlock *types.Block) error {
    if witnessBlock != nil {
        hash, err := hashWitness(witnessBlock)
        if err != nil {
            return err
        }
        if hash != witnessAck.Hash {
            return ErrIncorrectWitnessHash
        }
    }
    pubKey, err := cc.sigToPub(witnessAck.Hash, witnessAck.Signature)
    if err != nil {
        return err
    }
    if witnessAck.ProposerID != types.NewNodeID(pubKey) {
        return ErrIncorrectWitnessSignature
    }
    return nil
}

// TODO(jimmy-dexon): processBlock and prepareWitnessAck can be extraced to
// another struct.
func (cc *compactionChain) processBlock(block *types.Block) error {
    prevBlock := cc.lastBlock()
    if prevBlock != nil {
        hash, err := hashWitness(prevBlock)
        if err != nil {
            return err
        }
        block.Witness.Height = prevBlock.Witness.Height + 1
        block.Witness.ParentHash = hash
    }
    cc.prevBlockLock.Lock()
    defer cc.prevBlockLock.Unlock()
    cc.prevBlock = block
    return nil
}

func (cc *compactionChain) processWitnessResult(
    block *types.Block, result types.WitnessResult) error {
    block.Witness.Data = result.Data

    // block is a genesis block, no need to update witness parent hash.
    if block.IsGenesis() {
        return nil
    }

    prevBlock, err := cc.db.Get(block.ParentHash)
    if err != nil {
        return err
    }

    hash, err := hashWitness(&prevBlock)
    if err != nil {
        return err
    }

    block.Witness.ParentHash = hash
    return nil
}

func (cc *compactionChain) prepareWitnessAck(
    block *types.Block, prvKey crypto.PrivateKey) (
    witnessAck *types.WitnessAck, err error) {

    hash, err := hashWitness(block)
    if err != nil {
        return
    }
    sig, err := prvKey.Sign(hash)
    if err != nil {
        return
    }
    witnessAck = &types.WitnessAck{
        ProposerID:       types.NewNodeID(prvKey.PublicKey()),
        WitnessBlockHash: block.Hash,
        Signature:        sig,
        Hash:             hash,
    }
    return
}

func (cc *compactionChain) processWitnessAck(witnessAck *types.WitnessAck) (
    err error) {
    // Before getting the Block from witnessAck.WitnessBlockHash, we can still
    // do some sanityCheck to prevent invalid ack appending to pendingAck.
    if err = cc.sanityCheck(witnessAck, nil); err != nil {
        return
    }
    pendingFinished := make(chan struct{})
    go func() {
        cc.processPendingWitnessAcks()
        pendingFinished <- struct{}{}
    }()
    defer func() {
        <-pendingFinished
    }()
    witnessBlock, err := cc.db.Get(witnessAck.WitnessBlockHash)
    if err != nil {
        if err == blockdb.ErrBlockDoesNotExist {
            cc.pendingAckLock.Lock()
            defer cc.pendingAckLock.Unlock()
            cc.pendingAck[witnessAck.Hash] = &pendingAck{
                receivedTime: time.Now().UTC(),
                witnessAck:   witnessAck,
            }
            err = nil
        }
        return
    }
    return cc.processOneWitnessAck(witnessAck, &witnessBlock)
}

func (cc *compactionChain) processOneWitnessAck(
    witnessAck *types.WitnessAck, witnessBlock *types.Block) (
    err error) {
    if err = cc.sanityCheck(witnessAck, witnessBlock); err != nil {
        return
    }
    lastWitnessAck, exist := func() (ack *types.WitnessAck, exist bool) {
        cc.witnessAcksLock.RLock()
        defer cc.witnessAcksLock.RUnlock()
        ack, exist = cc.latestWitnessAcks[witnessAck.ProposerID]
        return
    }()
    if exist {
        lastWitnessBlock, err2 := cc.db.Get(lastWitnessAck.WitnessBlockHash)
        err = err2
        if err != nil {
            return
        }
        if lastWitnessBlock.Witness.Height > witnessBlock.Witness.Height {
            return
        }
    }
    cc.witnessAcksLock.Lock()
    defer cc.witnessAcksLock.Unlock()
    cc.latestWitnessAcks[witnessAck.ProposerID] = witnessAck
    return
}

func (cc *compactionChain) processPendingWitnessAcks() {
    pendingAck := func() map[common.Hash]*pendingAck {
        pendingAck := make(map[common.Hash]*pendingAck)
        cc.pendingAckLock.RLock()
        defer cc.pendingAckLock.RUnlock()
        for k, v := range cc.pendingAck {
            pendingAck[k] = v
        }
        return pendingAck
    }()

    for hash, ack := range pendingAck {
        // TODO(jimmy-dexon): customizable timeout.
        if ack.receivedTime.Add(30 * time.Second).Before(time.Now().UTC()) {
            delete(pendingAck, hash)
            continue
        }
    }
    for hash, ack := range pendingAck {
        witnessBlock, err := cc.db.Get(ack.witnessAck.WitnessBlockHash)
        if err != nil {
            if err == blockdb.ErrBlockDoesNotExist {
                continue
            }
            // TODO(jimmy-dexon): this error needs to be handled properly.
            fmt.Println(err)
            delete(pendingAck, hash)
        }
        delete(pendingAck, hash)
        cc.processOneWitnessAck(ack.witnessAck, &witnessBlock)
    }

    cc.pendingAckLock.Lock()
    defer cc.pendingAckLock.Unlock()
    for k, v := range cc.pendingAck {
        pendingAck[k] = v
    }
    cc.pendingAck = pendingAck
}

func (cc *compactionChain) witnessAcks() map[types.NodeID]*types.WitnessAck {
    cc.witnessAcksLock.RLock()
    defer cc.witnessAcksLock.RUnlock()
    acks := make(map[types.NodeID]*types.WitnessAck)
    for k, v := range cc.latestWitnessAcks {
        acks[k] = v.Clone()
    }
    return acks
}

func (cc *compactionChain) lastBlock() *types.Block {
    cc.prevBlockLock.RLock()
    defer cc.prevBlockLock.RUnlock()
    return cc.prevBlock
}