aboutsummaryrefslogblamecommitdiff
path: root/plugin/evm/block.go
blob: a2ffb696c55b080b3feb216e9cd1de3754d56217 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                     
                                               

















                                                          
                                

                                                          
                  


                                                
                                

                                                          
                  
























                                                                                   




                                                
                          
                              



                                                   




                                                                          

                                       
                                             
                                          
                            
                                                 
                                                                            

                                                                


                                                




                                                    



                                                













                                                                                    
// (c) 2019-2020, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.

package evm

import (
	"fmt"

	"github.com/ava-labs/coreth/core/types"
	"github.com/ava-labs/go-ethereum/rlp"

	"github.com/ava-labs/gecko/ids"
	"github.com/ava-labs/gecko/snow/choices"
	"github.com/ava-labs/gecko/snow/consensus/snowman"
)

// Block implements the snowman.Block interface
type Block struct {
	id       ids.ID
	ethBlock *types.Block
	vm       *VM
}

// ID implements the snowman.Block interface
func (b *Block) ID() ids.ID { return b.id }

// Accept implements the snowman.Block interface
func (b *Block) Accept() error {
	b.vm.ctx.Log.Verbo("Block %s is accepted", b.ID())
	b.vm.updateStatus(b.ID(), choices.Accepted)
	return nil
}

// Reject implements the snowman.Block interface
func (b *Block) Reject() error {
	b.vm.ctx.Log.Verbo("Block %s is rejected", b.ID())
	b.vm.updateStatus(b.ID(), choices.Rejected)
	return nil
}

// Status implements the snowman.Block interface
func (b *Block) Status() choices.Status {
	status := b.vm.getCachedStatus(b.ID())
	if status == choices.Unknown && b.ethBlock != nil {
		return choices.Processing
	}
	return status
}

// Parent implements the snowman.Block interface
func (b *Block) Parent() snowman.Block {
	parentID := ids.NewID(b.ethBlock.ParentHash())
	block := &Block{
		id:       parentID,
		ethBlock: b.vm.getCachedBlock(parentID),
		vm:       b.vm,
	}
	b.vm.ctx.Log.Verbo("Parent(%s) has status: %s", block.ID(), block.Status())
	return block
}

// Verify implements the snowman.Block interface
func (b *Block) Verify() error {
	vm := b.vm
	if b.ethBlock.Hash() == vm.genesisHash {
		return nil
	}
	p := b.Parent()
	path := []*Block{}
	inputs := new(ids.Set)
	for {
		if p.Status() == choices.Accepted {
			break
		}
		if ret, hit := vm.blockAtomicInputCache.Get(p.ID()); hit {
			inputs = ret.(*ids.Set)
			break
		}
		path = append(path, p.(*Block))
		p = p.Parent().(*Block)
	}
	for i := len(path) - 1; i >= 0; i-- {
		inputsCopy := new(ids.Set)
		p := path[i]
		atx := vm.getAtomicTx(p.ethBlock)
		inputs.Union(atx.UnsignedTx.(UnsignedAtomicTx).InputUTXOs())
		inputsCopy.Union(*inputs)
		vm.blockAtomicInputCache.Put(p.ID(), inputsCopy)
	}
	tx := b.vm.getAtomicTx(b.ethBlock)
	atx := tx.UnsignedTx.(*UnsignedImportTx)
	for _, in := range atx.InputUTXOs().List() {
		if inputs.Contains(in) {
			return errInvalidBlock
		}
	}
	if atx.SemanticVerify(b.vm, tx) != nil {
		return errInvalidBlock
	}

	_, err := b.vm.chain.InsertChain([]*types.Block{b.ethBlock})
	return err
}

// Bytes implements the snowman.Block interface
func (b *Block) Bytes() []byte {
	res, err := rlp.EncodeToBytes(b.ethBlock)
	if err != nil {
		panic(err)
	}
	return res
}

func (b *Block) String() string { return fmt.Sprintf("EVM block, ID = %s", b.ID()) }