github.com/ylsGit/go-ethereum@v1.6.5/consensus/ethash/consensus.go (about) 1 // Copyright 2017 The go-ethereum Authors 2 // This file is part of the go-ethereum library. 3 // 4 // The go-ethereum library is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU Lesser General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // The go-ethereum library is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU Lesser General Public License for more details. 13 // 14 // You should have received a copy of the GNU Lesser General Public License 15 // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. 16 17 package ethash 18 19 import ( 20 "bytes" 21 "errors" 22 "fmt" 23 "math/big" 24 "runtime" 25 "time" 26 27 "github.com/ethereum/go-ethereum/common" 28 "github.com/ethereum/go-ethereum/common/math" 29 "github.com/ethereum/go-ethereum/consensus" 30 "github.com/ethereum/go-ethereum/consensus/misc" 31 "github.com/ethereum/go-ethereum/core/state" 32 "github.com/ethereum/go-ethereum/core/types" 33 "github.com/ethereum/go-ethereum/params" 34 set "gopkg.in/fatih/set.v0" 35 ) 36 37 // Ethash proof-of-work protocol constants. 38 var ( 39 blockReward *big.Int = big.NewInt(5e+18) // Block reward in wei for successfully mining a block 40 maxUncles = 2 // Maximum number of uncles allowed in a single block 41 ) 42 43 // Various error messages to mark blocks invalid. These should be private to 44 // prevent engine specific errors from being referenced in the remainder of the 45 // codebase, inherently breaking if the engine is swapped out. Please put common 46 // error types into the consensus package. 47 var ( 48 errLargeBlockTime = errors.New("timestamp too big") 49 errZeroBlockTime = errors.New("timestamp equals parent's") 50 errTooManyUncles = errors.New("too many uncles") 51 errDuplicateUncle = errors.New("duplicate uncle") 52 errUncleIsAncestor = errors.New("uncle is ancestor") 53 errDanglingUncle = errors.New("uncle's parent is not ancestor") 54 errNonceOutOfRange = errors.New("nonce out of range") 55 errInvalidDifficulty = errors.New("non-positive difficulty") 56 errInvalidMixDigest = errors.New("invalid mix digest") 57 errInvalidPoW = errors.New("invalid proof-of-work") 58 ) 59 60 // Author implements consensus.Engine, returning the header's coinbase as the 61 // proof-of-work verified author of the block. 62 func (ethash *Ethash) Author(header *types.Header) (common.Address, error) { 63 return header.Coinbase, nil 64 } 65 66 // VerifyHeader checks whether a header conforms to the consensus rules of the 67 // stock Ethereum ethash engine. 68 func (ethash *Ethash) VerifyHeader(chain consensus.ChainReader, header *types.Header, seal bool) error { 69 // If we're running a full engine faking, accept any input as valid 70 if ethash.fakeFull { 71 return nil 72 } 73 // Short circuit if the header is known, or it's parent not 74 number := header.Number.Uint64() 75 if chain.GetHeader(header.Hash(), number) != nil { 76 return nil 77 } 78 parent := chain.GetHeader(header.ParentHash, number-1) 79 if parent == nil { 80 return consensus.ErrUnknownAncestor 81 } 82 // Sanity checks passed, do a proper verification 83 return ethash.verifyHeader(chain, header, parent, false, seal) 84 } 85 86 // VerifyHeaders is similar to VerifyHeader, but verifies a batch of headers 87 // concurrently. The method returns a quit channel to abort the operations and 88 // a results channel to retrieve the async verifications. 89 func (ethash *Ethash) VerifyHeaders(chain consensus.ChainReader, headers []*types.Header, seals []bool) (chan<- struct{}, <-chan error) { 90 // If we're running a full engine faking, accept any input as valid 91 if ethash.fakeFull || len(headers) == 0 { 92 abort, results := make(chan struct{}), make(chan error, len(headers)) 93 for i := 0; i < len(headers); i++ { 94 results <- nil 95 } 96 return abort, results 97 } 98 99 // Spawn as many workers as allowed threads 100 workers := runtime.GOMAXPROCS(0) 101 if len(headers) < workers { 102 workers = len(headers) 103 } 104 105 // Create a task channel and spawn the verifiers 106 var ( 107 inputs = make(chan int) 108 done = make(chan int, workers) 109 errors = make([]error, len(headers)) 110 abort = make(chan struct{}) 111 ) 112 for i := 0; i < workers; i++ { 113 go func() { 114 for index := range inputs { 115 errors[index] = ethash.verifyHeaderWorker(chain, headers, seals, index) 116 done <- index 117 } 118 }() 119 } 120 121 errorsOut := make(chan error, len(headers)) 122 go func() { 123 defer close(inputs) 124 var ( 125 in, out = 0, 0 126 checked = make([]bool, len(headers)) 127 inputs = inputs 128 ) 129 for { 130 select { 131 case inputs <- in: 132 if in++; in == len(headers) { 133 // Reached end of headers. Stop sending to workers. 134 inputs = nil 135 } 136 case index := <-done: 137 for checked[index] = true; checked[out]; out++ { 138 errorsOut <- errors[out] 139 if out == len(headers)-1 { 140 return 141 } 142 } 143 case <-abort: 144 return 145 } 146 } 147 }() 148 return abort, errorsOut 149 } 150 151 func (ethash *Ethash) verifyHeaderWorker(chain consensus.ChainReader, headers []*types.Header, seals []bool, index int) error { 152 var parent *types.Header 153 if index == 0 { 154 parent = chain.GetHeader(headers[0].ParentHash, headers[0].Number.Uint64()-1) 155 } else if headers[index-1].Hash() == headers[index].ParentHash { 156 parent = headers[index-1] 157 } 158 if parent == nil { 159 return consensus.ErrUnknownAncestor 160 } 161 if chain.GetHeader(headers[index].Hash(), headers[index].Number.Uint64()) != nil { 162 return nil // known block 163 } 164 return ethash.verifyHeader(chain, headers[index], parent, false, seals[index]) 165 } 166 167 // VerifyUncles verifies that the given block's uncles conform to the consensus 168 // rules of the stock Ethereum ethash engine. 169 func (ethash *Ethash) VerifyUncles(chain consensus.ChainReader, block *types.Block) error { 170 // If we're running a full engine faking, accept any input as valid 171 if ethash.fakeFull { 172 return nil 173 } 174 // Verify that there are at most 2 uncles included in this block 175 if len(block.Uncles()) > maxUncles { 176 return errTooManyUncles 177 } 178 // Gather the set of past uncles and ancestors 179 uncles, ancestors := set.New(), make(map[common.Hash]*types.Header) 180 181 number, parent := block.NumberU64()-1, block.ParentHash() 182 for i := 0; i < 7; i++ { 183 ancestor := chain.GetBlock(parent, number) 184 if ancestor == nil { 185 break 186 } 187 ancestors[ancestor.Hash()] = ancestor.Header() 188 for _, uncle := range ancestor.Uncles() { 189 uncles.Add(uncle.Hash()) 190 } 191 parent, number = ancestor.ParentHash(), number-1 192 } 193 ancestors[block.Hash()] = block.Header() 194 uncles.Add(block.Hash()) 195 196 // Verify each of the uncles that it's recent, but not an ancestor 197 for _, uncle := range block.Uncles() { 198 // Make sure every uncle is rewarded only once 199 hash := uncle.Hash() 200 if uncles.Has(hash) { 201 return errDuplicateUncle 202 } 203 uncles.Add(hash) 204 205 // Make sure the uncle has a valid ancestry 206 if ancestors[hash] != nil { 207 return errUncleIsAncestor 208 } 209 if ancestors[uncle.ParentHash] == nil || uncle.ParentHash == block.ParentHash() { 210 return errDanglingUncle 211 } 212 if err := ethash.verifyHeader(chain, uncle, ancestors[uncle.ParentHash], true, true); err != nil { 213 return err 214 } 215 } 216 return nil 217 } 218 219 // verifyHeader checks whether a header conforms to the consensus rules of the 220 // stock Ethereum ethash engine. 221 // 222 // See YP section 4.3.4. "Block Header Validity" 223 func (ethash *Ethash) verifyHeader(chain consensus.ChainReader, header, parent *types.Header, uncle bool, seal bool) error { 224 // Ensure that the header's extra-data section is of a reasonable size 225 if uint64(len(header.Extra)) > params.MaximumExtraDataSize { 226 return fmt.Errorf("extra-data too long: %d > %d", len(header.Extra), params.MaximumExtraDataSize) 227 } 228 // Verify the header's timestamp 229 if uncle { 230 if header.Time.Cmp(math.MaxBig256) > 0 { 231 return errLargeBlockTime 232 } 233 } else { 234 if header.Time.Cmp(big.NewInt(time.Now().Unix())) > 0 { 235 return consensus.ErrFutureBlock 236 } 237 } 238 if header.Time.Cmp(parent.Time) <= 0 { 239 return errZeroBlockTime 240 } 241 // Verify the block's difficulty based in it's timestamp and parent's difficulty 242 expected := CalcDifficulty(chain.Config(), header.Time.Uint64(), parent) 243 if expected.Cmp(header.Difficulty) != 0 { 244 return fmt.Errorf("invalid difficulty: have %v, want %v", header.Difficulty, expected) 245 } 246 // Verify that the gas limit is <= 2^63-1 247 if header.GasLimit.Cmp(math.MaxBig63) > 0 { 248 return fmt.Errorf("invalid gasLimit: have %v, max %v", header.GasLimit, math.MaxBig63) 249 } 250 // Verify that the gasUsed is <= gasLimit 251 if header.GasUsed.Cmp(header.GasLimit) > 0 { 252 return fmt.Errorf("invalid gasUsed: have %v, gasLimit %v", header.GasUsed, header.GasLimit) 253 } 254 255 // Verify that the gas limit remains within allowed bounds 256 diff := new(big.Int).Set(parent.GasLimit) 257 diff = diff.Sub(diff, header.GasLimit) 258 diff.Abs(diff) 259 260 limit := new(big.Int).Set(parent.GasLimit) 261 limit = limit.Div(limit, params.GasLimitBoundDivisor) 262 263 if diff.Cmp(limit) >= 0 || header.GasLimit.Cmp(params.MinGasLimit) < 0 { 264 return fmt.Errorf("invalid gas limit: have %v, want %v += %v", header.GasLimit, parent.GasLimit, limit) 265 } 266 // Verify that the block number is parent's +1 267 if diff := new(big.Int).Sub(header.Number, parent.Number); diff.Cmp(big.NewInt(1)) != 0 { 268 return consensus.ErrInvalidNumber 269 } 270 // Verify the engine specific seal securing the block 271 if seal { 272 if err := ethash.VerifySeal(chain, header); err != nil { 273 return err 274 } 275 } 276 // If all checks passed, validate any special fields for hard forks 277 if err := misc.VerifyDAOHeaderExtraData(chain.Config(), header); err != nil { 278 return err 279 } 280 if err := misc.VerifyForkHashes(chain.Config(), header, uncle); err != nil { 281 return err 282 } 283 return nil 284 } 285 286 // CalcDifficulty is the difficulty adjustment algorithm. It returns 287 // the difficulty that a new block should have when created at time 288 // given the parent block's time and difficulty. 289 // 290 // TODO (karalabe): Move the chain maker into this package and make this private! 291 func CalcDifficulty(config *params.ChainConfig, time uint64, parent *types.Header) *big.Int { 292 next := new(big.Int).Add(parent.Number, common.Big1) 293 switch { 294 case config.IsHomestead(next): 295 return calcDifficultyHomestead(time, parent) 296 default: 297 return calcDifficultyFrontier(time, parent) 298 } 299 } 300 301 // Some weird constants to avoid constant memory allocs for them. 302 var ( 303 expDiffPeriod = big.NewInt(100000) 304 big10 = big.NewInt(10) 305 bigMinus99 = big.NewInt(-99) 306 ) 307 308 // calcDifficultyHomestead is the difficulty adjustment algorithm. It returns 309 // the difficulty that a new block should have when created at time given the 310 // parent block's time and difficulty. The calculation uses the Homestead rules. 311 func calcDifficultyHomestead(time uint64, parent *types.Header) *big.Int { 312 // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2.mediawiki 313 // algorithm: 314 // diff = (parent_diff + 315 // (parent_diff / 2048 * max(1 - (block_timestamp - parent_timestamp) // 10, -99)) 316 // ) + 2^(periodCount - 2) 317 318 bigTime := new(big.Int).SetUint64(time) 319 bigParentTime := new(big.Int).Set(parent.Time) 320 321 // holds intermediate values to make the algo easier to read & audit 322 x := new(big.Int) 323 y := new(big.Int) 324 325 // 1 - (block_timestamp -parent_timestamp) // 10 326 x.Sub(bigTime, bigParentTime) 327 x.Div(x, big10) 328 x.Sub(common.Big1, x) 329 330 // max(1 - (block_timestamp - parent_timestamp) // 10, -99))) 331 if x.Cmp(bigMinus99) < 0 { 332 x.Set(bigMinus99) 333 } 334 // (parent_diff + parent_diff // 2048 * max(1 - (block_timestamp - parent_timestamp) // 10, -99)) 335 y.Div(parent.Difficulty, params.DifficultyBoundDivisor) 336 x.Mul(y, x) 337 x.Add(parent.Difficulty, x) 338 339 // minimum difficulty can ever be (before exponential factor) 340 if x.Cmp(params.MinimumDifficulty) < 0 { 341 x.Set(params.MinimumDifficulty) 342 } 343 // for the exponential factor 344 periodCount := new(big.Int).Add(parent.Number, common.Big1) 345 periodCount.Div(periodCount, expDiffPeriod) 346 347 // the exponential factor, commonly referred to as "the bomb" 348 // diff = diff + 2^(periodCount - 2) 349 if periodCount.Cmp(common.Big1) > 0 { 350 y.Sub(periodCount, common.Big2) 351 y.Exp(common.Big2, y, nil) 352 x.Add(x, y) 353 } 354 return x 355 } 356 357 // calcDifficultyFrontier is the difficulty adjustment algorithm. It returns the 358 // difficulty that a new block should have when created at time given the parent 359 // block's time and difficulty. The calculation uses the Frontier rules. 360 func calcDifficultyFrontier(time uint64, parent *types.Header) *big.Int { 361 diff := new(big.Int) 362 adjust := new(big.Int).Div(parent.Difficulty, params.DifficultyBoundDivisor) 363 bigTime := new(big.Int) 364 bigParentTime := new(big.Int) 365 366 bigTime.SetUint64(time) 367 bigParentTime.Set(parent.Time) 368 369 if bigTime.Sub(bigTime, bigParentTime).Cmp(params.DurationLimit) < 0 { 370 diff.Add(parent.Difficulty, adjust) 371 } else { 372 diff.Sub(parent.Difficulty, adjust) 373 } 374 if diff.Cmp(params.MinimumDifficulty) < 0 { 375 diff.Set(params.MinimumDifficulty) 376 } 377 378 periodCount := new(big.Int).Add(parent.Number, common.Big1) 379 periodCount.Div(periodCount, expDiffPeriod) 380 if periodCount.Cmp(common.Big1) > 0 { 381 // diff = diff + 2^(periodCount - 2) 382 expDiff := periodCount.Sub(periodCount, common.Big2) 383 expDiff.Exp(common.Big2, expDiff, nil) 384 diff.Add(diff, expDiff) 385 diff = math.BigMax(diff, params.MinimumDifficulty) 386 } 387 return diff 388 } 389 390 // VerifySeal implements consensus.Engine, checking whether the given block satisfies 391 // the PoW difficulty requirements. 392 func (ethash *Ethash) VerifySeal(chain consensus.ChainReader, header *types.Header) error { 393 // If we're running a fake PoW, accept any seal as valid 394 if ethash.fakeMode { 395 time.Sleep(ethash.fakeDelay) 396 if ethash.fakeFail == header.Number.Uint64() { 397 return errInvalidPoW 398 } 399 return nil 400 } 401 // If we're running a shared PoW, delegate verification to it 402 if ethash.shared != nil { 403 return ethash.shared.VerifySeal(chain, header) 404 } 405 // Sanity check that the block number is below the lookup table size (60M blocks) 406 number := header.Number.Uint64() 407 if number/epochLength >= uint64(len(cacheSizes)) { 408 // Go < 1.7 cannot calculate new cache/dataset sizes (no fast prime check) 409 return errNonceOutOfRange 410 } 411 // Ensure that we have a valid difficulty for the block 412 if header.Difficulty.Sign() <= 0 { 413 return errInvalidDifficulty 414 } 415 // Recompute the digest and PoW value and verify against the header 416 cache := ethash.cache(number) 417 418 size := datasetSize(number) 419 if ethash.tester { 420 size = 32 * 1024 421 } 422 digest, result := hashimotoLight(size, cache, header.HashNoNonce().Bytes(), header.Nonce.Uint64()) 423 if !bytes.Equal(header.MixDigest[:], digest) { 424 return errInvalidMixDigest 425 } 426 target := new(big.Int).Div(maxUint256, header.Difficulty) 427 if new(big.Int).SetBytes(result).Cmp(target) > 0 { 428 return errInvalidPoW 429 } 430 return nil 431 } 432 433 // Prepare implements consensus.Engine, initializing the difficulty field of a 434 // header to conform to the ethash protocol. The changes are done inline. 435 func (ethash *Ethash) Prepare(chain consensus.ChainReader, header *types.Header) error { 436 parent := chain.GetHeader(header.ParentHash, header.Number.Uint64()-1) 437 if parent == nil { 438 return consensus.ErrUnknownAncestor 439 } 440 header.Difficulty = CalcDifficulty(chain.Config(), header.Time.Uint64(), parent) 441 442 return nil 443 } 444 445 // Finalize implements consensus.Engine, accumulating the block and uncle rewards, 446 // setting the final state and assembling the block. 447 func (ethash *Ethash) Finalize(chain consensus.ChainReader, header *types.Header, state *state.StateDB, txs []*types.Transaction, uncles []*types.Header, receipts []*types.Receipt) (*types.Block, error) { 448 // Accumulate any block and uncle rewards and commit the final state root 449 AccumulateRewards(state, header, uncles) 450 header.Root = state.IntermediateRoot(chain.Config().IsEIP158(header.Number)) 451 452 // Header seems complete, assemble into a block and return 453 return types.NewBlock(header, txs, uncles, receipts), nil 454 } 455 456 // Some weird constants to avoid constant memory allocs for them. 457 var ( 458 big8 = big.NewInt(8) 459 big32 = big.NewInt(32) 460 ) 461 462 // AccumulateRewards credits the coinbase of the given block with the mining 463 // reward. The total reward consists of the static block reward and rewards for 464 // included uncles. The coinbase of each uncle block is also rewarded. 465 // 466 // TODO (karalabe): Move the chain maker into this package and make this private! 467 func AccumulateRewards(state *state.StateDB, header *types.Header, uncles []*types.Header) { 468 reward := new(big.Int).Set(blockReward) 469 r := new(big.Int) 470 for _, uncle := range uncles { 471 r.Add(uncle.Number, big8) 472 r.Sub(r, header.Number) 473 r.Mul(r, blockReward) 474 r.Div(r, big8) 475 state.AddBalance(uncle.Coinbase, r) 476 477 r.Div(blockReward, big32) 478 reward.Add(reward, r) 479 } 480 state.AddBalance(header.Coinbase, reward) 481 }