aboutsummaryrefslogtreecommitdiffstats
path: root/block_manager.go
blob: 1a73a45f204625f86921a168be54f8ee8e92e2db (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
package main

import (
    "fmt"
    "github.com/ethereum/ethutil-go"
    "errors"
    "log"
    "math/big"
)

type BlockChain struct {
    LastBlock *ethutil.Block

    genesisBlock *ethutil.Block

    TD *big.Int
}

func NewBlockChain() *BlockChain {
    bc := &BlockChain{}
    bc.genesisBlock = ethutil.NewBlock(ethutil.Encode(ethutil.Genesis))

    // Set the last know difficulty (might be 0x0 as initial value, Genesis)
    bc.TD = new(big.Int)
    bc.TD.SetBytes(ethutil.Config.Db.LastKnownTD())

    return bc
}

func (bc *BlockChain) HasBlock(hash string) bool {
    return bc.LastBlock.State().Get(hash) != ""
}

type BlockManager struct {
    // Ethereum virtual machine for processing contracts
    vm *Vm
    // The block chain :)
    bc *BlockChain
}

func NewBlockManager() *BlockManager {
    bm := &BlockManager{
        vm: NewVm(),
        bc: NewBlockChain(),
    }

    return bm
}

// Process a block.
func (bm *BlockManager) ProcessBlock(block *ethutil.Block) error {
    // Block validation
    if err := bm.ValidateBlock(block); err != nil {
        return err
    }

    // I'm not sure, but I don't know if there should be thrown
    // any errors at this time.
    if err := bm.AccumelateRewards(block); err != nil {
        return err
    }

    // Get the tx count. Used to create enough channels to 'join' the go routines
    txCount := len(block.Transactions())
    // Locking channel. When it has been fully buffered this method will return
    lockChan := make(chan bool, txCount)

    // Process each transaction/contract
    for _, tx := range block.Transactions() {
        // If there's no recipient, it's a contract
        if tx.IsContract() {
            go bm.ProcessContract(tx, block, lockChan)
        } else {
            // "finish" tx which isn't a contract
            lockChan <- true
        }
    }

    // Wait for all Tx to finish processing
    for i := 0; i < txCount; i++ {
        <-lockChan
    }

    if bm.CalculateTD(block) {
        ethutil.Config.Db.Put(block.Hash(), block.MarshalRlp())
        bm.bc.LastBlock = block
    }

    return nil
}

func (bm *BlockManager) CalculateTD(block *ethutil.Block) bool {
    uncleDiff := new(big.Int)
    for _, uncle := range block.Uncles {
        uncleDiff = uncleDiff.Add(uncleDiff, uncle.Difficulty)
    }

    // TD(genesis_block) = 0 and TD(B) = TD(B.parent) + sum(u.difficulty for u in B.uncles) + B.difficulty
    td := new(big.Int)
    td = td.Add(bm.bc.TD, uncleDiff)
    td = td.Add(td, block.Difficulty)

    // The new TD will only be accepted if the new difficulty is
    // is greater than the previous.
    if td.Cmp(bm.bc.TD) > 0 {
        bm.bc.LastBlock = block
        // Set the new total difficulty back to the block chain
        bm.bc.TD = td

        return true
    }

    return false
}

// Validates the current block. Returns an error if the block was invalid,
// an uncle or anything that isn't on the current block chain.
// Validation validates easy over difficult (dagger takes longer time = difficult)
func (bm *BlockManager) ValidateBlock(block *ethutil.Block) error {
    // TODO
    // 2. Check if the difficulty is correct

    // Check if we have the parent hash, if it isn't known we discard it
    // Reasons might be catching up or simply an invalid block
    if !bm.bc.HasBlock(block.PrevHash) {
        return errors.New("Block's parent unknown")
    }

    // Check each uncle's previous hash. In order for it to be valid
    // is if it has the same block hash as the current
    for _, uncle := range block.Uncles {
        if uncle.PrevHash != block.PrevHash {
            if Debug {
                log.Printf("Uncle prvhash mismatch %x %x\n", block.PrevHash, uncle.PrevHash)
            }

            return errors.New("Mismatching Prvhash from uncle")
        }
    }

    // Verify the nonce of the block. Return an error if it's not valid
    if !DaggerVerify(ethutil.BigD(block.Hash()), block.Difficulty, block.Nonce) {
        return errors.New("Block's nonce is invalid")
    }

    return nil
}

func (bm *BlockManager) AccumelateRewards(block *ethutil.Block) error {
    // Get the coinbase rlp data
    d := block.State().Get(block.Coinbase)

    ether := ethutil.NewEtherFromData([]byte(d))

    // Reward amount of ether to the coinbase address
    ether.AddFee(ethutil.CalculateBlockReward(block, len(block.Uncles)))
    block.State().Update(block.Coinbase, string(ether.MarshalRlp()))

    // TODO Reward each uncle


    return nil
}

func (bm *BlockManager) ProcessContract(tx *ethutil.Transaction, block *ethutil.Block, lockChan chan bool) {
    // Recovering function in case the VM had any errors
    defer func() {
        if r := recover(); r != nil {
            fmt.Println("Recovered from VM execution with err =", r)
            // Let the channel know where done even though it failed (so the execution may resume normally)
            lockChan <- true
        }
    }()

    // Process contract
    bm.vm.ProcContract(tx, block, func(opType OpType) bool {
        // TODO turn on once big ints are in place
        //if !block.PayFee(tx.Hash(), StepFee.Uint64()) {
        //  return false
        //}

        return true // Continue
    })

    // Broadcast we're done
    lockChan <- true
}