Documentation ¶
Overview ¶
Copyright 2014 The go-ethereum Authors This file is part of the go-ethereum library.
The go-ethereum 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 go-ethereum 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 go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
Package vm implements the Ethereum Virtual Machine.
The vm package implements one EVM, a byte code VM. The BC (Byte Code) VM loops over a set of bytes and executes them according to the set of rules defined in the Ethereum yellow paper.
Copyright 2014 The go-ethereum Authors This file is part of the go-ethereum library.
The go-ethereum 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 go-ethereum 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 go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
Copyright 2014 The go-ethereum Authors This file is part of the go-ethereum library.
The go-ethereum 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 go-ethereum 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 go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
Index ¶
- Constants
- Variables
- func CreateContractPemimission(contractAddr, creator common.Address, nonce uint64, statedb StateDB) (bool, error)
- func RunCaCertStore(evm *EVM, contract *Contract, input []byte) (ret []byte, err error)
- func RunPermissionCtr(evm *EVM, contract *Contract, input []byte) (ret []byte, err error)
- func RunPrecompiledContract(evm *EVM, p PrecompiledContract, input []byte, contract *Contract) (ret []byte, err error)
- func SetPermConfig(sendTxFlag, crtContractFlag bool)
- func WriteLogs(writer io.Writer, logs []*types.Log)
- func WriteTrace(writer io.Writer, logs []StructLog)
- type AccountRef
- type BasisPermin
- type CACert
- type CACertList
- func (ca *CACertList) ChangeElectionCaList(blockHight *big.Int, state StateDB)
- func (i *CACertList) DecodeRLP(s *rlp.Stream) error
- func (i *CACertList) EncodeRLP(w io.Writer) error
- func (ca *CACertList) GetCACertEpochCount() int
- func (c *CACertList) GetCACertList() *CACertList
- func (ca *CACertList) GetCACertMapByEpoch(epoch uint64) *CACert
- func (ca *CACertList) GetCaCertAmount(epoch uint64) uint64
- func (ca *CACertList) GetCertList(epoch uint64) [][]byte
- func (ca *CACertList) GetRootPubk(epoch uint64, caCert []byte) []byte
- func (ca *CACertList) InitCACertList(caList [][]byte, blockHight *big.Int, pubk [][]byte, coinAddr []common.Address)
- func (ca *CACertList) IsInList(caCert []byte, epoch uint64, pubk []byte) (bool, error)
- func (ca *CACertList) LoadCACertList(state StateDB, preAddress common.Address) error
- func (l CACertList) MarshalJSON() ([]byte, error)
- func (ca *CACertList) SaveCACertList(state StateDB, preAddress common.Address) error
- func (l *CACertList) UnmarshalJSON(input []byte) error
- type CAStoreCache
- type CaCertContract
- type CallContext
- type CanTransferFunc
- type Cert
- type Config
- type Context
- type Contract
- func (c *Contract) Address() common.Address
- func (c *Contract) AsDelegate() *Contract
- func (c *Contract) Caller() common.Address
- func (c *Contract) GetByte(n uint64) byte
- func (c *Contract) GetOp(n uint64) OpCode
- func (c *Contract) SetCallCode(addr *common.Address, hash common.Hash, code []byte)
- func (c *Contract) SetCodeOptionalHash(addr *common.Address, codeAndHash *codeAndHash)
- func (c *Contract) UseGas(gas uint64) (ok bool)
- func (c *Contract) Value() *big.Int
- type ContractListTable
- type ContractRef
- type EVM
- func (evm *EVM) Call(caller ContractRef, addr common.Address, input []byte, gas uint64, ...) (ret []byte, leftOverGas uint64, err error)
- func (evm *EVM) CallCode(caller ContractRef, addr common.Address, input []byte, gas uint64, ...) (ret []byte, leftOverGas uint64, err error)
- func (evm *EVM) Cancel()
- func (evm *EVM) ChainConfig() *params.ChainConfig
- func (evm *EVM) Create(caller ContractRef, code []byte, gas uint64, value *big.Int, fee *big.Int) (ret []byte, contractAddr common.Address, leftOverGas uint64, err error)
- func (evm *EVM) Create2(caller ContractRef, code []byte, gas uint64, endowment *big.Int, salt *big.Int, ...) (ret []byte, contractAddr common.Address, leftOverGas uint64, err error)
- func (evm *EVM) DelegateCall(caller ContractRef, addr common.Address, input []byte, gas uint64) (ret []byte, leftOverGas uint64, err error)
- func (evm *EVM) Interpreter() Interpreter
- func (evm *EVM) StaticCall(caller ContractRef, addr common.Address, input []byte, gas uint64) (ret []byte, leftOverGas uint64, err error)
- type EVMInterpreter
- type GetHashFunc
- type GropListTable
- type Interpreter
- type JSONLogger
- func (l *JSONLogger) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) error
- func (l *JSONLogger) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, ...) error
- func (l *JSONLogger) CaptureStart(from common.Address, to common.Address, create bool, input []byte, gas uint64, ...) error
- func (l *JSONLogger) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, ...) error
- type LogConfig
- type MemberInfo
- type MemberListTable
- type MemberTable
- type Memory
- func (m *Memory) Data() []byte
- func (m *Memory) Get(offset, size int64) (cpy []byte)
- func (m *Memory) GetPtr(offset, size int64) []byte
- func (m *Memory) Len() int
- func (m *Memory) Print()
- func (m *Memory) Resize(size uint64)
- func (m *Memory) Set(offset, size uint64, value []byte)
- func (m *Memory) Set32(offset uint64, val *big.Int)
- type ModifyPerminType
- type OpCode
- type PerminTable
- func (pt *PerminTable) ChangeRootTOImage(from common.Address) common.Address
- func (pt *PerminTable) CheckActionPerm(from, gropAddr, contractAddr common.Address, mPermType ModifyPerminType) bool
- func (pt *PerminTable) CreateContractPem(contractAddr, creator common.Address, nonce uint64, isAdd bool) (bool, error)
- func (pt *PerminTable) CreatePermiRootKey() common.Address
- func (p *PerminTable) DecodeRLP(s *rlp.Stream) error
- func (i *PerminTable) EncodeRLP(w io.Writer) error
- func (pt *PerminTable) GetCreator(from common.Address) common.Address
- func (pt *PerminTable) GetLastGroupAddr(from common.Address) common.Address
- func (pt *PerminTable) GrantPermission(creator, from, member, gropAddr common.Address, mPermType ModifyPerminType, ...) (bool, error)
- func (pt *PerminTable) InitPBFTRootGrop(rootAddr []common.Address)
- func (pt *PerminTable) Load(state StateDB) error
- func (l PerminTable) MarshalJSON() ([]byte, error)
- func (pt *PerminTable) Save(state StateDB) error
- func (pt *PerminTable) SetGropMemberRoot(gropAddr, creator common.Address) bool
- func (l *PerminTable) UnmarshalJSON(input []byte) error
- func (pt *PerminTable) UpdataRootInElection(rootAddr, curRootAddr []common.Address)
- type PerminssionCache
- type PermissionContract
- type PrecompiledContract
- type ProposalState
- type Stack
- type StateDB
- type Storage
- type StructLog
- type StructLogger
- func (l *StructLogger) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) error
- func (l *StructLogger) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, ...) error
- func (l *StructLogger) CaptureStart(from common.Address, to common.Address, create bool, input []byte, gas uint64, ...) error
- func (l *StructLogger) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, ...) error
- func (l *StructLogger) Error() error
- func (l *StructLogger) Output() []byte
- func (l *StructLogger) StructLogs() []StructLog
- type Tracer
- type TransferFunc
Constants ¶
const ( GasQuickStep uint64 = 2 GasFastestStep uint64 = 3 GasFastStep uint64 = 5 GasMidStep uint64 = 8 GasSlowStep uint64 = 10 GasExtStep uint64 = 20 )
Gas costs
const CACertStoreABIJSON = `` /* 497-byte string literal not displayed */
const PermissionABIJSON = `` /* 1884-byte string literal not displayed */
Variables ¶
var ( ErrOutOfGas = errors.New("out of gas") ErrCodeStoreOutOfGas = errors.New("contract creation code storage out of gas") ErrDepth = errors.New("max call depth exceeded") ErrTraceLimitReached = errors.New("the number of logs reached the specified limit") ErrInsufficientBalance = errors.New("insufficient balance for transfer") ErrInsufficientBalanceForAll = errors.New("insufficient balance for transfer and fee ") ErrContractAddressCollision = errors.New("contract address collision") ErrNoCompatibleInterpreter = errors.New("no compatible .CreateAddress2interpreter") ErrCACertStoreInvalidInput = errors.New("invalid input for CA Cert Store") ErrPermissionInvalidInput = errors.New("invalid input for Permission") ErrPermissionInvalidFrom = errors.New("invalid from ") )
List execution errors
var ( NotRootSendTxError = errors.New("not root sendtx error") FristGreateGropError = errors.New("the frist create grop err create not equl from") MemberAreadInGropError = errors.New("member alread in grop") MemberNotInGropError = errors.New("member not in grop") MemberNotSendTxPermError = errors.New("member not send tx permission") ErrorMemberAlreadIn = errors.New("Mamber alread have this perminssion") GropNameAlreadyUseError = errors.New("Grop Name alread use") GropNotExitError = errors.New("Grop not exit") CheckPermissionError = errors.New("check permission failed") ContractAlreadyCreatePremError = errors.New("Contract already create prem") ContractNotCreatePremError = errors.New("Contract not create prem") ContractPremFlagError = errors.New("Contract premission flage error") MemberInBlackListError = errors.New("member is in black list") MemberNotSentTXPerm = errors.New("member not in sentTx permission") MemberNotCreateContractPermError = errors.New("member not create contract permission") )
var CaCertStoreGas = map[string]uint64{
"getCaAmount": 360000,
"addCaCert": 450000,
"delCaCert": 30000,
"isApproveCaCert": 2400000,
"multiProposal": 2400000,
}
StakingGas defines all method gas
var PermissionABI abi.ABI
Permission contract ABI
var PermissionGas = map[string]uint64{
"grantPermission": 360000,
"revokePermission": 360000,
"createGroupPermission": 360000,
"delGroupPermission": 360000,
}
StakingGas defines all method gas
var PrecompiledContractsByzantium = map[common.Address]PrecompiledContract{ common.BytesToAddress([]byte{1}): &ecrecover{}, common.BytesToAddress([]byte{2}): &sha256hash{}, common.BytesToAddress([]byte{3}): &ripemd160hash{}, common.BytesToAddress([]byte{4}): &dataCopy{}, common.BytesToAddress([]byte{5}): &bigModExp{}, common.BytesToAddress([]byte{6}): &bn256Add{}, common.BytesToAddress([]byte{7}): &bn256ScalarMul{}, common.BytesToAddress([]byte{8}): &bn256Pairing{}, }
PrecompiledContractsByzantium contains the default set of pre-compiled Ethereum contracts used in the Byzantium release.
var PrecompiledContractsCA = map[common.Address]PrecompiledContract{ common.BytesToAddress([]byte{1}): &ecrecover{}, common.BytesToAddress([]byte{2}): &sha256hash{}, common.BytesToAddress([]byte{3}): &ripemd160hash{}, common.BytesToAddress([]byte{4}): &dataCopy{}, common.BytesToAddress([]byte{5}): &bigModExp{}, common.BytesToAddress([]byte{6}): &bn256Add{}, common.BytesToAddress([]byte{7}): &bn256ScalarMul{}, common.BytesToAddress([]byte{8}): &bn256Pairing{}, types.CACertListAddress: &caCertContract{}, types.PermiTableAddress: &permContract{}, }
PrecompiledContractsPoS contains the default set of pre-compiled Ethereum contracts used in the dpos release.
var PrecompiledContractsHomestead = map[common.Address]PrecompiledContract{ common.BytesToAddress([]byte{1}): &ecrecover{}, common.BytesToAddress([]byte{2}): &sha256hash{}, common.BytesToAddress([]byte{3}): &ripemd160hash{}, common.BytesToAddress([]byte{4}): &dataCopy{}, }
PrecompiledContractsHomestead contains the default set of pre-compiled Ethereum contracts used in the Frontier and Homestead releases.
Functions ¶
func RunCaCertStore ¶
RunStaking execute taiyuechain staking contract
func RunPermissionCtr ¶
RunPermissionCtr execute taiyuechain permission contract
func RunPrecompiledContract ¶
func RunPrecompiledContract(evm *EVM, p PrecompiledContract, input []byte, contract *Contract) (ret []byte, err error)
RunPrecompiledContract runs and evaluates the output of a precompiled contract.
func SetPermConfig ¶
func SetPermConfig(sendTxFlag, crtContractFlag bool)
func WriteTrace ¶
WriteTrace writes a formatted trace to the given writer
Types ¶
type AccountRef ¶
AccountRef implements ContractRef.
Account references are used during EVM initialisation and it's primary use is to fetch addresses. Removing this object proves difficult because of the cached jump destinations which are fetched from the parent contract (i.e. the caller), which is a ContractRef.
func (AccountRef) Address ¶
func (ar AccountRef) Address() common.Address
Address casts AccountRef to a Address
type BasisPermin ¶
type CACert ¶
type CACert struct { CACert []Cert `json:"cacert"` Pubky map[common.Hash][]byte `json:"pubkey"` // cacert hash=> publick key CoinAddress []common.Address `json:"coinaddress"` IsStore []bool `json:"isstore"` }
func (*CACert) GetIsStore ¶
type CACertList ¶
type CACertList struct {
// contains filtered or unexported fields
}
func CloneCaCache ¶
func CloneCaCache(cachaList *CACertList) *CACertList
func (*CACertList) ChangeElectionCaList ¶
func (ca *CACertList) ChangeElectionCaList(blockHight *big.Int, state StateDB)
func (*CACertList) EncodeRLP ¶
func (i *CACertList) EncodeRLP(w io.Writer) error
EncodeRLP serializes b into the truechain RLP ImpawnImpl format.
func (*CACertList) GetCACertEpochCount ¶
func (ca *CACertList) GetCACertEpochCount() int
func (*CACertList) GetCACertList ¶
func (c *CACertList) GetCACertList() *CACertList
func (*CACertList) GetCACertMapByEpoch ¶
func (ca *CACertList) GetCACertMapByEpoch(epoch uint64) *CACert
func (*CACertList) GetCaCertAmount ¶
func (ca *CACertList) GetCaCertAmount(epoch uint64) uint64
func (*CACertList) GetCertList ¶
func (ca *CACertList) GetCertList(epoch uint64) [][]byte
func (*CACertList) GetRootPubk ¶
func (ca *CACertList) GetRootPubk(epoch uint64, caCert []byte) []byte
func (*CACertList) InitCACertList ¶
func (*CACertList) LoadCACertList ¶
func (ca *CACertList) LoadCACertList(state StateDB, preAddress common.Address) error
func (CACertList) MarshalJSON ¶
func (l CACertList) MarshalJSON() ([]byte, error)
MarshalJSON marshals as JSON.
func (*CACertList) SaveCACertList ¶
func (ca *CACertList) SaveCACertList(state StateDB, preAddress common.Address) error
func (*CACertList) UnmarshalJSON ¶
func (l *CACertList) UnmarshalJSON(input []byte) error
UnmarshalJSON unmarshals from JSON.
type CAStoreCache ¶
type CAStoreCache struct { Cache *lru.Cache // contains filtered or unexported fields }
var CASC *CAStoreCache //CA store cache
type CallContext ¶
type CallContext interface { // Call another contract Call(env *EVM, me ContractRef, addr common.Address, data []byte, gas, value *big.Int) ([]byte, error) // Take another's contract code and execute within our own context CallCode(env *EVM, me ContractRef, addr common.Address, data []byte, gas, value *big.Int) ([]byte, error) // Same as CallCode except sender and value is propagated from parent to child scope DelegateCall(env *EVM, me ContractRef, addr common.Address, data []byte, gas *big.Int) ([]byte, error) // Create a new contract Create(env *EVM, me ContractRef, data []byte, gas, value *big.Int) ([]byte, common.Address, error) }
CallContext provides a basic interface for the EVM calling conventions. The EVM depends on this context being implemented for doing subcalls and initialising new EVM contracts.
type CanTransferFunc ¶
CanTransferFunc is the signature of a transfer guard function
type Cert ¶
type Cert []byte
func (Cert) MarshalText ¶
MarshalText returns the hex representation of h.
func (Cert) TerminalString ¶
TerminalString implements log.TerminalStringer, formatting a string for console output during logging.
func (*Cert) UnmarshalJSON ¶
UnmarshalJSON parses a hash in hex syntax.
func (*Cert) UnmarshalText ¶
UnmarshalText parses a hash in hex syntax.
type Config ¶
type Config struct { // Debug enabled debugging Interpreter options Debug bool // Tracer is the op code logger Tracer Tracer // NoRecursion disabled Interpreter call, callcode, // delegate call and create. NoRecursion bool // Enable recording of SHA3/keccak preimages EnablePreimageRecording bool // JumpTable contains the EVM instruction table. This // may be left uninitialised and will be set to the default // table. JumpTable [256]operation }
Config are the configuration options for the Interpreter
type Context ¶
type Context struct { // CanTransfer returns whether the account contains // sufficient ether to transfer the value CanTransfer CanTransferFunc // Transfer transfers ether from one account to the other Transfer TransferFunc // GetHash returns the hash corresponding to n GetHash GetHashFunc // Message information Origin common.Address // Provides information for ORIGIN GasPrice *big.Int // Provides information for GASPRICE // Block information Coinbase common.Address // Provides information for COINBASE GasLimit uint64 // Provides information for GASLIMIT BlockNumber *big.Int // Provides information for NUMBER Time *big.Int // Provides information for TIME Difficulty *big.Int // Provides information for DIFFICULTY }
Context provides the EVM with auxiliary information. Once provided it shouldn't be modified.
type Contract ¶
type Contract struct { // CallerAddress is the result of the caller which initialised this // contract. However when the "call method" is delegated this value // needs to be initialised to that of the caller's caller. CallerAddress common.Address Code []byte CodeHash common.Hash CodeAddr *common.Address Input []byte Gas uint64 // contains filtered or unexported fields }
Contract represents an ethereum contract in the state database. It contains the contract code, calling arguments. Contract implements ContractRef
func NewContract ¶
func NewContract(caller ContractRef, object ContractRef, value *big.Int, gas uint64) *Contract
NewContract returns a new contract environment for the execution of EVM.
func (*Contract) AsDelegate ¶
AsDelegate sets the contract to be a delegate call and returns the current contract (for chaining calls)
func (*Contract) Caller ¶
Caller returns the caller of the contract.
Caller will recursively call caller when the contract is a delegate call, including that of caller's caller.
func (*Contract) SetCallCode ¶
SetCallCode sets the code of the contract and address of the backing data object
func (*Contract) SetCodeOptionalHash ¶
SetCodeOptionalHash can be used to provide code, but it's optional to provide hash. In case hash is not provided, the jumpdest analysis will not be saved to the parent context
type ContractListTable ¶
type ContractListTable struct { GroupKey common.Address `json:"group"` Creator common.Address `json:"creator"` CreateFlag uint8 `json:"creator_flag"` //create is 1, create contractpem is 2, only 2 we can set create flag IsWhitListWork bool `json:"is_white_work"` WhiteMembers *MemberTable `json:"white_members"` BlackMembers *MemberTable `json:"black_members"` }
type ContractRef ¶
ContractRef is a reference to the contract's backing object
type EVM ¶
type EVM struct { // Context provides auxiliary blockchain related information Context // StateDB gives access to the underlying state StateDB StateDB // contains filtered or unexported fields }
EVM is the Ethereum Virtual Machine base object and provides the necessary tools to run a contract on the given state with the provided context. It should be noted that any error generated through any of the calls should be considered a revert-state-and-consume-all-gas operation, no checks on specific errors should ever be performed. The interpreter makes sure that any errors generated are to be considered faulty code.
The EVM should never be reused and is not thread safe.
func NewEVM ¶
NewEVM returns a new EVM. The returned EVM is not thread safe and should only ever be used *once*.
func (*EVM) Call ¶
func (evm *EVM) Call(caller ContractRef, addr common.Address, input []byte, gas uint64, value *big.Int, fee *big.Int) (ret []byte, leftOverGas uint64, err error)
Call executes the contract associated with the addr with the given input as parameters. It also handles any necessary value transfer required and takes the necessary steps to create accounts and reverses the state in case of an execution error or failed value transfer.
func (*EVM) CallCode ¶
func (evm *EVM) CallCode(caller ContractRef, addr common.Address, input []byte, gas uint64, value *big.Int) (ret []byte, leftOverGas uint64, err error)
CallCode executes the contract associated with the addr with the given input as parameters. It also handles any necessary value transfer required and takes the necessary steps to create accounts and reverses the state in case of an execution error or failed value transfer.
CallCode differs from Call in the sense that it executes the given address' code with the caller as context.
func (*EVM) Cancel ¶
func (evm *EVM) Cancel()
Cancel cancels any running EVM operation. This may be called concurrently and it's safe to be called multiple times.
func (*EVM) ChainConfig ¶
func (evm *EVM) ChainConfig() *params.ChainConfig
ChainConfig returns the environment's chain configuration
func (*EVM) Create ¶
func (evm *EVM) Create(caller ContractRef, code []byte, gas uint64, value *big.Int, fee *big.Int) (ret []byte, contractAddr common.Address, leftOverGas uint64, err error)
Create creates a new contract using code as deployment code.
func (*EVM) Create2 ¶
func (evm *EVM) Create2(caller ContractRef, code []byte, gas uint64, endowment *big.Int, salt *big.Int, fee *big.Int) (ret []byte, contractAddr common.Address, leftOverGas uint64, err error)
Create2 creates a new contract using code as deployment code.
The different between Create2 with Create is Create2 uses sha3(0xff ++ msg.sender ++ salt ++ sha3(init_code))[12:] instead of the usual sender-and-nonce-hash as the address where the contract is initialized at.
func (*EVM) DelegateCall ¶
func (evm *EVM) DelegateCall(caller ContractRef, addr common.Address, input []byte, gas uint64) (ret []byte, leftOverGas uint64, err error)
DelegateCall executes the contract associated with the addr with the given input as parameters. It reverses the state in case of an execution error.
DelegateCall differs from CallCode in the sense that it executes the given address' code with the caller as context and the caller is set to the caller of the caller.
func (*EVM) Interpreter ¶
func (evm *EVM) Interpreter() Interpreter
Interpreter returns the current interpreter
func (*EVM) StaticCall ¶
func (evm *EVM) StaticCall(caller ContractRef, addr common.Address, input []byte, gas uint64) (ret []byte, leftOverGas uint64, err error)
StaticCall executes the contract associated with the addr with the given input as parameters while disallowing any modifications to the state during the call. Opcodes that attempt to perform such modifications will result in exceptions instead of performing the modifications.
type EVMInterpreter ¶
type EVMInterpreter struct {
// contains filtered or unexported fields
}
EVMInterpreter represents an EVM interpreter
func NewEVMInterpreter ¶
func NewEVMInterpreter(evm *EVM, cfg Config) *EVMInterpreter
NewEVMInterpreter returns a new instance of the Interpreter.
func (*EVMInterpreter) CanRun ¶
func (in *EVMInterpreter) CanRun(code []byte) bool
CanRun tells if the contract, passed as an argument, can be run by the current interpreter.
func (*EVMInterpreter) Run ¶
func (in *EVMInterpreter) Run(contract *Contract, input []byte, readOnly bool) (ret []byte, err error)
Run loops and evaluates the contract's code with the given input data and returns the return byte-slice and an error if one occurred.
It's important to note that any errors returned by the interpreter should be considered a revert-and-consume-all-gas operation except for errExecutionReverted which means revert-and-keep-gas-left.
type GetHashFunc ¶
GetHashFunc returns the nth block hash in the blockchain and is used by the BLOCKHASH EVM op code.
type GropListTable ¶
type GropListTable struct { GroupKey common.Address `json:"group"` Id uint64 `json:"id"` Creator common.Address `json:"creator"` Name string `json:"name"` WhiteMembers *MemberTable `json:"white_members"` BlackMembers *MemberTable `json:"black_members"` }
type Interpreter ¶
type Interpreter interface { // Run loops and evaluates the contract's code with the given input data and returns // the return byte-slice and an error if one occurred. Run(contract *Contract, input []byte, static bool) ([]byte, error) // CanRun tells if the contract, passed as an argument, can be // run by the current interpreter. This is meant so that the // caller can do something like: // // “`golang // for _, interpreter := range interpreters { // if interpreter.CanRun(contract.code) { // interpreter.Run(contract.code, input) // } // } // “` CanRun([]byte) bool }
Interpreter is used to run Ethereum based contracts and will utilise the passed environment to query external sources for state information. The Interpreter will run the byte code VM based on the passed configuration.
type JSONLogger ¶
type JSONLogger struct {
// contains filtered or unexported fields
}
func NewJSONLogger ¶
func NewJSONLogger(cfg *LogConfig, writer io.Writer) *JSONLogger
NewJSONLogger creates a new EVM tracer that prints execution steps as JSON objects into the provided stream.
func (*JSONLogger) CaptureEnd ¶
CaptureEnd is triggered at end of execution.
func (*JSONLogger) CaptureFault ¶
func (l *JSONLogger) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, contract *Contract, depth int, err error) error
CaptureFault outputs state information on the logger.
func (*JSONLogger) CaptureStart ¶
type LogConfig ¶
type LogConfig struct { DisableMemory bool // disable memory capture DisableStack bool // disable stack capture DisableStorage bool // disable storage capture Debug bool // print output during capture end Limit int // maximum length of output, but zero means unlimited }
LogConfig are the configuration options for structured logger the EVM
type MemberInfo ¶
type MemberListTable ¶
type MemberListTable struct { GroupKey common.Address `json:"group"` Id uint64 `json:"id"` Creator common.Address `json:"creator"` IsWhitListWork bool `json:"is_white_work"` WhiteMembers *MemberTable `json:"white_members"` BlackMembers *MemberTable `json:"black_members"` }
type MemberTable ¶
type MemberTable struct { Manager []*MemberInfo `json:"manager"` Member []*MemberInfo `json:"member"` }
func (*MemberTable) String ¶
func (h *MemberTable) String() string
type Memory ¶
type Memory struct {
// contains filtered or unexported fields
}
Memory implements a simple memory model for the ethereum virtual machine.
type ModifyPerminType ¶
type ModifyPerminType int
const ( ModifyPerminType_Nil ModifyPerminType = iota ModifyPerminType_AddSendTxPerm //add send tx permission ModifyPerminType_DelSendTxPerm //del send tx permission ModifyPerminType_AddSendTxManagerPerm ModifyPerminType_DelSendTxManagerPerm ModifyPerminType_AddCrtContractPerm ModifyPerminType_DelCrtContractPerm ModifyPerminType_AddCrtContractManagerPerm ModifyPerminType_DelCrtContractManagerPerm ModifyPerminType_AddGropManagerPerm ModifyPerminType_DelGropManagerPerm ModifyPerminType_AddGropMemberPerm ModifyPerminType_DelGropMemberPerm ModifyPerminType_CrtContractPerm //create permission for contract ModifyPerminType_AddContractMemberPerm ModifyPerminType_DelContractMemberPerm ModifyPerminType_AddContractManagerPerm ModifyPerminType_DelContractManagerPerm ModifyPerminType_AddWhitListPerm ModifyPerminType_DelWhitListPerm ModifyPerminType_AddBlockListPerm ModifyPerminType_DelBlockListPerm PerminType_SendTx PerminType_CreateContract // this is memeber owner create contract perminssion ModifyPerminType_DelGrop ModifyPerminType_CrtGrop PerminType_AccessContract )
type OpCode ¶
type OpCode byte
OpCode is an EVM opcode
0x0 range - arithmetic ops.
0x10 range - comparison ops.
const ( ADDRESS OpCode = 0x30 + iota BALANCE ORIGIN CALLER CALLVALUE CALLDATALOAD CALLDATASIZE CALLDATACOPY CODESIZE CODECOPY GASPRICE EXTCODESIZE EXTCODECOPY RETURNDATASIZE RETURNDATACOPY EXTCODEHASH )
0x30 range - closure state.
0x40 range - block operations.
const ( POP OpCode = 0x50 + iota MLOAD MSTORE MSTORE8 SLOAD SSTORE JUMP JUMPI PC MSIZE GAS JUMPDEST )
0x50 range - 'storage' and execution.
const ( PUSH1 OpCode = 0x60 + iota PUSH2 PUSH3 PUSH4 PUSH5 PUSH6 PUSH7 PUSH8 PUSH9 PUSH10 PUSH11 PUSH12 PUSH13 PUSH14 PUSH15 PUSH16 PUSH17 PUSH18 PUSH19 PUSH20 PUSH21 PUSH22 PUSH23 PUSH24 PUSH25 PUSH26 PUSH27 PUSH28 PUSH29 PUSH30 PUSH31 PUSH32 DUP1 DUP2 DUP3 DUP4 DUP5 DUP6 DUP7 DUP8 DUP9 DUP10 DUP11 DUP12 DUP13 DUP14 DUP15 DUP16 SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 SWAP6 SWAP7 SWAP8 SWAP9 SWAP10 SWAP11 SWAP12 SWAP13 SWAP14 SWAP15 SWAP16 )
0x60 range.
const ( CREATE OpCode = 0xf0 + iota CALL CALLCODE RETURN DELEGATECALL CREATE2 STATICCALL = 0xfa REVERT = 0xfd SELFDESTRUCT = 0xff )
0xf0 range - closures.
func StringToOp ¶
StringToOp finds the opcode whose name is stored in `str`.
func (OpCode) IsStaticJump ¶
IsStaticJump specifies if an opcode is JUMP.
type PerminTable ¶
type PerminTable struct { LastRootID uint64 WhiteList []common.Address BlackList []common.Address RootList []common.Address PBFT2Root map[common.Address]common.Address ContractPermi map[common.Address]*ContractListTable //contract Addr=> Memberlist GropPermi map[common.Address]*GropListTable //group addr => GropListTable SendTranPermi map[common.Address]*MemberListTable //Group Addr=> MemberList CrtContracetPermi map[common.Address]*MemberListTable //Group Addr => MemberList UserBasisPermi map[common.Address]*BasisPermin // persion addr => basisperim }
func ClonePerminCaCache ¶
func ClonePerminCaCache(pt *PerminTable) *PerminTable
func NewPerminTable ¶
func NewPerminTable() *PerminTable
func (*PerminTable) ChangeRootTOImage ¶
func (pt *PerminTable) ChangeRootTOImage(from common.Address) common.Address
func (*PerminTable) CheckActionPerm ¶
func (pt *PerminTable) CheckActionPerm(from, gropAddr, contractAddr common.Address, mPermType ModifyPerminType) bool
func (*PerminTable) CreateContractPem ¶
func (*PerminTable) CreatePermiRootKey ¶
func (pt *PerminTable) CreatePermiRootKey() common.Address
func (*PerminTable) EncodeRLP ¶
func (i *PerminTable) EncodeRLP(w io.Writer) error
EncodeRLP serializes b into the truechain RLP ImpawnImpl format.
func (*PerminTable) GetCreator ¶
func (pt *PerminTable) GetCreator(from common.Address) common.Address
func (*PerminTable) GetLastGroupAddr ¶
func (pt *PerminTable) GetLastGroupAddr(from common.Address) common.Address
func (*PerminTable) GrantPermission ¶
func (pt *PerminTable) GrantPermission(creator, from, member, gropAddr common.Address, mPermType ModifyPerminType, gropName string, whitelistisWork bool) (bool, error)
Grant Perminission
func (*PerminTable) InitPBFTRootGrop ¶
func (pt *PerminTable) InitPBFTRootGrop(rootAddr []common.Address)
func (*PerminTable) Load ¶
func (pt *PerminTable) Load(state StateDB) error
func (PerminTable) MarshalJSON ¶
func (l PerminTable) MarshalJSON() ([]byte, error)
func (*PerminTable) Save ¶
func (pt *PerminTable) Save(state StateDB) error
func (*PerminTable) SetGropMemberRoot ¶
func (pt *PerminTable) SetGropMemberRoot(gropAddr, creator common.Address) bool
func (*PerminTable) UnmarshalJSON ¶
func (l *PerminTable) UnmarshalJSON(input []byte) error
UnmarshalJSON unmarshals from JSON.
func (*PerminTable) UpdataRootInElection ¶
func (pt *PerminTable) UpdataRootInElection(rootAddr, curRootAddr []common.Address)
type PerminssionCache ¶
type PerminssionCache struct { Cache *lru.Cache // contains filtered or unexported fields }
var PerminCache *PerminssionCache
type PrecompiledContract ¶
type PrecompiledContract interface { RequiredGas(input []byte) uint64 // RequiredPrice calculates the contract gas use Run(evm *EVM, contract *Contract, input []byte) ([]byte, error) // Run runs the precompiled contract }
PrecompiledContract is the basic interface for native Go contracts. The implementation requires a deterministic gas count based on the input size of the Run method of the contract.
type ProposalState ¶
type ProposalState struct { PHash common.Hash CACert []byte Pubk []byte CoinAddr common.Address StartHeight *big.Int EndHeight *big.Int PState uint8 NeedPconfirmNumber uint64 // muti need confir len PNeedDo uint8 // only supprot add and del SignList []common.Hash SignMap map[common.Hash]bool }
func (*ProposalState) EncodeRLP ¶
func (i *ProposalState) EncodeRLP(w io.Writer) error
EncodeRLP serializes b into the truechain RLP ImpawnImpl format.
func (ProposalState) MarshalJSON ¶
func (l ProposalState) MarshalJSON() ([]byte, error)
MarshalJSON marshals as JSON.
func (*ProposalState) UnmarshalJSON ¶
func (l *ProposalState) UnmarshalJSON(input []byte) error
UnmarshalJSON unmarshals from JSON.
type Stack ¶
type Stack struct {
// contains filtered or unexported fields
}
Stack is an object for basic stack operations. Items popped to the stack are expected to be changed and modified. stack does not take care of adding newly initialised objects.
type StateDB ¶
type StateDB interface { CreateAccount(common.Address) SubBalance(common.Address, *big.Int) AddBalance(common.Address, *big.Int) GetBalance(common.Address) *big.Int GetNonce(common.Address) uint64 SetNonce(common.Address, uint64) GetCodeHash(common.Address) common.Hash GetCode(common.Address) []byte SetCode(common.Address, []byte) GetCodeSize(common.Address) int AddRefund(uint64) SubRefund(uint64) GetRefund() uint64 GetCommittedState(common.Address, common.Hash) common.Hash GetState(common.Address, common.Hash) common.Hash SetState(common.Address, common.Hash, common.Hash) GetCAState(common.Address, common.Hash) []byte SetCAState(common.Address, common.Hash, []byte) Suicide(common.Address) bool HasSuicided(common.Address) bool // Exist reports whether the given account exists in state. // Notably this should also return true for suicided accounts. Exist(common.Address) bool // Empty returns whether the given account is empty. Empty // is defined according to EIP161 (balance = nonce = code = 0). Empty(common.Address) bool RevertToSnapshot(int) Snapshot() int AddLog(*types.Log) AddPreimage(common.Hash, []byte) ForEachStorage(common.Address, func(common.Hash, common.Hash) bool) }
StateDB is an EVM database for full state querying.
type StructLog ¶
type StructLog struct { Pc uint64 `json:"pc"` Op OpCode `json:"op"` Gas uint64 `json:"gas"` GasCost uint64 `json:"gasCost"` Memory []byte `json:"memory"` MemorySize int `json:"memSize"` Stack []*big.Int `json:"stack"` Storage map[common.Hash]common.Hash `json:"-"` Depth int `json:"depth"` RefundCounter uint64 `json:"refund"` Err error `json:"-"` }
StructLog is emitted to the EVM each cycle and lists information about the current internal state prior to the execution of the statement.
func (*StructLog) ErrorString ¶
ErrorString formats the log's error as a string.
func (StructLog) MarshalJSON ¶
MarshalJSON marshals as JSON.
func (*StructLog) UnmarshalJSON ¶
UnmarshalJSON unmarshals from JSON.
type StructLogger ¶
type StructLogger struct {
// contains filtered or unexported fields
}
StructLogger is an EVM state logger and implements Tracer.
StructLogger can capture state based on the given Log configuration and also keeps a track record of modified storage which is used in reporting snapshots of the contract their storage.
func NewStructLogger ¶
func NewStructLogger(cfg *LogConfig) *StructLogger
NewStructLogger returns a new logger
func (*StructLogger) CaptureEnd ¶
CaptureEnd is called after the call finishes to finalize the tracing.
func (*StructLogger) CaptureFault ¶
func (l *StructLogger) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, contract *Contract, depth int, err error) error
CaptureFault implements the Tracer interface to trace an execution fault while running an opcode.
func (*StructLogger) CaptureStart ¶
func (l *StructLogger) CaptureStart(from common.Address, to common.Address, create bool, input []byte, gas uint64, value *big.Int) error
CaptureStart implements the Tracer interface to initialize the tracing operation.
func (*StructLogger) CaptureState ¶
func (l *StructLogger) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, contract *Contract, depth int, err error) error
CaptureState logs a new structured log message and pushes it out to the environment
CaptureState also tracks SSTORE ops to track dirty values.
func (*StructLogger) Error ¶
func (l *StructLogger) Error() error
Error returns the VM error captured by the trace.
func (*StructLogger) Output ¶
func (l *StructLogger) Output() []byte
Output returns the VM return value captured by the trace.
func (*StructLogger) StructLogs ¶
func (l *StructLogger) StructLogs() []StructLog
StructLogs returns the captured log entries.
type Tracer ¶
type Tracer interface { CaptureStart(from common.Address, to common.Address, call bool, input []byte, gas uint64, value *big.Int) error CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, contract *Contract, depth int, err error) error CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, contract *Contract, depth int, err error) error CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) error }
Tracer is used to collect execution traces from an EVM transaction execution. CaptureState is called for each step of the VM with the current VM state. Note that reference types are actual VM data structures; make copies if you need to retain them beyond the current call.
Source Files ¶
- analysis.go
- ca_store.go
- ca_store_db.go
- common.go
- contract.go
- contracts.go
- doc.go
- errors.go
- evm.go
- gas.go
- gas_table.go
- gen_structlog.go
- instructions.go
- int_pool_verifier_empty.go
- interface.go
- interpreter.go
- intpool.go
- jump_table.go
- logger.go
- logger_json.go
- memory.go
- memory_table.go
- opcodes.go
- permission.go
- permission_table.go
- permission_table_ext.go
- stack.go
- stack_table.go