-
Notifications
You must be signed in to change notification settings - Fork 0
/
blockchain.go
364 lines (284 loc) · 7.84 KB
/
blockchain.go
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
// blockchain.go
package main
import (
"bytes"
"crypto/ecdsa"
"encoding/hex"
"errors"
"fmt"
"log"
"os"
"github.com/boltdb/bolt"
)
const (
dbFile = "blockchain.db"
blocksBucket = "blocks"
genesisCoinbaseData = "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks"
)
type Blockchain struct {
tip []byte // latest block hash
db *bolt.DB
}
// NewBlockchain creates a new Blockchain with genesis Block
func NewBlockchain(nodeID string) *Blockchain {
dbFile := fmt.Sprintf(dbFile, nodeID)
if dbExists() == false {
fmt.Println("No existing blockchain found. Create one first.")
os.Exit(1)
}
var tip []byte
db, err := bolt.Open(dbFile, 0600, nil)
if err != nil {
log.Panic(err)
}
err = db.Update(func(tx *bolt.Tx) error {
b := tx.Bucket([]byte(blocksBucket))
tip = b.Get([]byte("l"))
return nil
})
if err != nil {
log.Panic(err)
}
bc := Blockchain{tip, db}
return &bc
}
// finds a block by its hash and returns it
func (bc *Blockchain) GetBlock(blockHash []byte) (Block, error) {
var block Block
err := bc.db.View(func(tx *bolt.Tx) error {
b := tx.Bucket([]byte(blocksBucket))
blockData := b.Get(blockHash)
if blockData == nil {
return errors.New("Block is not found.")
}
block = *DeserializeBlock(blockData)
return nil
})
logErr(err)
return block, nil
}
// GetBestHeight returns the height of the latest block
func (bc *Blockchain) GetBestHeight() int {
var lastBlock Block
err := bc.db.View(func(tx *bolt.Tx) error {
b := tx.Bucket([]byte(blocksBucket))
lastHash := b.Get([]byte("l"))
blockData := b.Get(lastHash)
lastBlock = *DeserializeBlock(blockData)
return nil
})
if err != nil {
log.Panic(err)
}
return lastBlock.Height
}
// return a list of hashes of all the blocks in the chain
func (bc *Blockchain) GetBlockHashes() [][]byte {
var blocksHashes [][]byte
bci := bc.Iterator()
for {
block := bci.Next()
blocksHashes = append(blocksHashes, block.Hash)
if len(block.PrevBlockHash) == 0 {
break
}
}
return blocksHashes
}
// AddBlock saves the block into the blockchain
func (bc *Blockchain) AddBlock(block *Block) {
err := bc.db.Update(func(tx *bolt.Tx) error {
b := tx.Bucket([]byte(blocksBucket))
blockInDb := b.Get(block.Hash)
if blockInDb != nil {
return nil
}
blockData := block.Serialize()
err := b.Put(block.Hash, blockData)
if err != nil {
log.Panic(err)
}
lastHash := b.Get([]byte("l"))
lastBlockData := b.Get(lastHash)
lastBlock := DeserializeBlock(lastBlockData)
if block.Height > lastBlock.Height {
err = b.Put([]byte("l"), block.Hash)
if err != nil {
log.Panic(err)
}
bc.tip = block.Hash
}
return nil
})
if err != nil {
log.Panic(err)
}
}
// mine a new block which contains `transactions`
func (bc *Blockchain) MineBlock(transactions []*Transaction) *Block {
var lastHash []byte
var lastHeight int
for _, tx := range transactions {
if bc.VerifyTransaction(tx) != true {
log.Println("ERROR: Invalid transaction when mining")
return nil
}
}
err := bc.db.View(func(tx *bolt.Tx) error { // get latest block from database. This is a read-only transaction.
b := tx.Bucket([]byte(blocksBucket))
lastHash = b.Get([]byte("l"))
blockData := b.Get(lastHash)
block := DeserializeBlock(blockData)
lastHeight = block.Height
return nil
})
logErr(err)
newBlock := NewBlock(transactions, lastHash, lastHeight+1)
err = bc.db.Update(func(tx *bolt.Tx) error { // add a new block into database
b := tx.Bucket([]byte(blocksBucket))
err = b.Put(newBlock.Hash, newBlock.Serialize())
logErr(err)
err = b.Put([]byte("l"), newBlock.Hash)
logErr(err)
bc.tip = newBlock.Hash
return nil
})
logErr(err)
return newBlock
}
// get Blockchain instance from database
func LoadBlockchain() *Blockchain {
if dbExists() == false {
fmt.Println("No existing blockchain found. Create one first.")
os.Exit(1)
}
var tip []byte
db, err := bolt.Open(dbFile, 0600, nil)
logErr(err)
err = db.Update(func(tx *bolt.Tx) error {
b := tx.Bucket([]byte(blocksBucket))
tip = b.Get([]byte("l"))
return nil
})
logErr(err)
bc := Blockchain{tip, db}
return &bc
}
// Create a new blockchain and send genesis block reward to `addr`
func CreateBlockchain(addr string) *Blockchain {
if dbExists() {
fmt.Println("Blockchain already exists.")
os.Exit(1)
}
var tip []byte // latest block hash
cbtx := NewCoinbaseTX(addr, genesisCoinbaseData)
genesis := NewGenesisBlock(cbtx)
db, err := bolt.Open(dbFile, 0600, nil) // open BoltDB database file
logErr(err)
err = db.Update(func(tx *bolt.Tx) error { // BobtDB has two kinds of transaction(事务): read-only and read-write. Here we open a read-write transaction.
b, err := tx.CreateBucket([]byte(blocksBucket))
logErr(err)
err = b.Put(genesis.Hash, genesis.Serialize())
logErr(err)
err = b.Put([]byte("l"), genesis.Hash)
logErr(err)
tip = genesis.Hash
return nil
})
logErr(err)
bc := Blockchain{tip, db}
return &bc
}
// find transaction by tx.ID
func (bc *Blockchain) FindTransaction(ID []byte) (Transaction, error) {
bci := bc.Iterator()
for {
block := bci.Next()
for _, tx := range block.Transactions {
if bytes.Compare(tx.ID, ID) == 0 {
return *tx, nil
}
}
if len(block.PrevBlockHash) == 0 {
break
}
}
return Transaction{}, errors.New("Transaction is not found")
}
// find all unspent transaction outputs and returns transactions with only unspent outputs
func (bc *Blockchain) FindUTXO() map[string]TXOutputs {
UTXO := make(map[string]TXOutputs) //TxID->[output1, output2,...]
spentTXOs := make(map[string][]int) //TxID->[no1, no2, ...]
bci := bc.Iterator()
for {
block := bci.Next() // process order: latest -> older
for _, tx := range block.Transactions {
txID := hex.EncodeToString(tx.ID) // ID of transaction 'tx'
Outputs:
for outIdx, out := range tx.Vout { // `outIdx` is index of output `out` in transaction `tx`
// Was the output spent?
if spentTXOs[txID] != nil {
for _, spentOutIdx := range spentTXOs[txID] {
if spentOutIdx == outIdx {
// `spendOutIdx`==`outIdx` means that output `out` which
// index is `outIdx` in transaction `tx` has been
// spent.
continue Outputs // We check the next output in transaction `tx`
}
}
}
// If it comes to here, then output `out` in transaction `tx` is
// unspent, and it should be added into UTXO set.
outs := UTXO[txID]
outs.Outputs = append(outs.Outputs, out) // add `out` to `UXTO[txID]`
UTXO[txID] = outs
}
if tx.IsCoinbase() == false {
// if `tx` is not coinbase, we should record those outputs
// referenced in `tx.Vin` as spent
for _, in := range tx.Vin {
inTxID := hex.EncodeToString(in.Txid)
spentTXOs[inTxID] = append(spentTXOs[inTxID], in.Vout)
}
}
}
if len(block.PrevBlockHash) == 0 {
break
}
}
return UTXO
}
// return an iterator for reading block
func (bc *Blockchain) Iterator() *BlockchainIterator {
bci := &BlockchainIterator{bc.tip, bc.db}
return bci
} // sign `tx` by `privKey`
func (bc *Blockchain) SignTransaction(tx *Transaction, privKey ecdsa.PrivateKey) {
prevTXs := make(map[string]Transaction)
for _, vin := range tx.Vin {
prevTX, err := bc.FindTransaction(vin.Txid)
logErr(err)
prevTXs[hex.EncodeToString(prevTX.ID)] = prevTX
}
tx.Sign(privKey, prevTXs)
}
// Check if `tx` could be verified by old transactions in blockchain
func (bc *Blockchain) VerifyTransaction(tx *Transaction) bool {
if tx.IsCoinbase() {
return true
}
prevTXs := make(map[string]Transaction)
for _, vin := range tx.Vin {
prevTX, err := bc.FindTransaction(vin.Txid)
logErr(err)
prevTXs[hex.EncodeToString(prevTX.ID)] = prevTX
}
return tx.Verify(prevTXs)
}
// return true if db file exisit, otherwise false
func dbExists() bool {
if _, err := os.Stat(dbFile); os.IsNotExist(err) {
return false
}
return true
}