mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-17 18:30:45 +00:00
This commit is contained in:
parent
afdb029356
commit
dce7b371a0
3 changed files with 236 additions and 98 deletions
194
eth/gasestimator/gasestimator.go
Normal file
194
eth/gasestimator/gasestimator.go
Normal file
|
|
@ -0,0 +1,194 @@
|
||||||
|
// Copyright 2023 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 gasestimator
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"math"
|
||||||
|
"math/big"
|
||||||
|
|
||||||
|
"github.com/XinFinOrg/XDPoSChain/common"
|
||||||
|
"github.com/XinFinOrg/XDPoSChain/core"
|
||||||
|
"github.com/XinFinOrg/XDPoSChain/core/state"
|
||||||
|
"github.com/XinFinOrg/XDPoSChain/core/types"
|
||||||
|
"github.com/XinFinOrg/XDPoSChain/core/vm"
|
||||||
|
"github.com/XinFinOrg/XDPoSChain/log"
|
||||||
|
"github.com/XinFinOrg/XDPoSChain/params"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Options are the contextual parameters to execute the requested call.
|
||||||
|
//
|
||||||
|
// Whilst it would be possible to pass a blockchain object that aggregates all
|
||||||
|
// these together, it would be excessively hard to test. Splitting the parts out
|
||||||
|
// allows testing without needing a proper live chain.
|
||||||
|
type Options struct {
|
||||||
|
Config *params.ChainConfig // Chain configuration for hard fork selection
|
||||||
|
Chain core.ChainContext // Chain context to access past block hashes
|
||||||
|
Header *types.Header // Header defining the block context to execute in
|
||||||
|
State *state.StateDB // Pre-state on top of which to estimate the gas
|
||||||
|
}
|
||||||
|
|
||||||
|
// Estimate returns the lowest possible gas limit that allows the transaction to
|
||||||
|
// run successfully with the provided context optons. It returns an error if the
|
||||||
|
// transaction would always revert, or if there are unexpected failures.
|
||||||
|
func Estimate(ctx context.Context, call *core.Message, opts *Options, gasCap uint64) (uint64, []byte, error) {
|
||||||
|
// Binary search the gas limit, as it may need to be higher than the amount used
|
||||||
|
var (
|
||||||
|
lo uint64 // lowest-known gas limit where tx execution fails
|
||||||
|
hi uint64 // lowest-known gas limit where tx execution succeeds
|
||||||
|
)
|
||||||
|
// Determine the highest gas limit can be used during the estimation.
|
||||||
|
hi = opts.Header.GasLimit
|
||||||
|
if call.GasLimit >= params.TxGas {
|
||||||
|
hi = call.GasLimit
|
||||||
|
}
|
||||||
|
// Normalize the max fee per gas the call is willing to spend.
|
||||||
|
var feeCap *big.Int
|
||||||
|
if call.GasFeeCap != nil {
|
||||||
|
feeCap = call.GasFeeCap
|
||||||
|
} else if call.GasPrice != nil {
|
||||||
|
feeCap = call.GasPrice
|
||||||
|
} else {
|
||||||
|
feeCap = common.Big0
|
||||||
|
}
|
||||||
|
// Recap the highest gas limit with account's available balance.
|
||||||
|
if feeCap.BitLen() != 0 {
|
||||||
|
balance := opts.State.GetBalance(call.From)
|
||||||
|
|
||||||
|
available := new(big.Int).Set(balance)
|
||||||
|
if call.Value != nil {
|
||||||
|
if call.Value.Cmp(available) >= 0 {
|
||||||
|
return 0, nil, core.ErrInsufficientFundsForTransfer
|
||||||
|
}
|
||||||
|
available.Sub(available, call.Value)
|
||||||
|
}
|
||||||
|
allowance := new(big.Int).Div(available, feeCap)
|
||||||
|
|
||||||
|
// If the allowance is larger than maximum uint64, skip checking
|
||||||
|
if allowance.IsUint64() && hi > allowance.Uint64() {
|
||||||
|
transfer := call.Value
|
||||||
|
if transfer == nil {
|
||||||
|
transfer = new(big.Int)
|
||||||
|
}
|
||||||
|
log.Warn("Gas estimation capped by limited funds", "original", hi, "balance", balance,
|
||||||
|
"sent", transfer, "maxFeePerGas", feeCap, "fundable", allowance)
|
||||||
|
hi = allowance.Uint64()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Recap the highest gas allowance with specified gascap.
|
||||||
|
if gasCap != 0 && hi > gasCap {
|
||||||
|
log.Warn("Caller gas above allowance, capping", "requested", hi, "cap", gasCap)
|
||||||
|
hi = gasCap
|
||||||
|
}
|
||||||
|
// We first execute the transaction at the highest allowable gas limit, since if this fails we
|
||||||
|
// can return error immediately.
|
||||||
|
failed, result, err := execute(ctx, call, opts, hi)
|
||||||
|
if err != nil {
|
||||||
|
return 0, nil, err
|
||||||
|
}
|
||||||
|
if failed {
|
||||||
|
if result != nil && !errors.Is(result.Err, vm.ErrOutOfGas) {
|
||||||
|
return 0, result.Revert(), result.Err
|
||||||
|
}
|
||||||
|
return 0, nil, fmt.Errorf("gas required exceeds allowance (%d)", hi)
|
||||||
|
}
|
||||||
|
// For almost any transaction, the gas consumed by the unconstrained execution
|
||||||
|
// above lower-bounds the gas limit required for it to succeed. One exception
|
||||||
|
// is those that explicitly check gas remaining in order to execute within a
|
||||||
|
// given limit, but we probably don't want to return the lowest possible gas
|
||||||
|
// limit for these cases anyway.
|
||||||
|
lo = result.UsedGas - 1
|
||||||
|
|
||||||
|
// Binary search for the smallest gas limit that allows the tx to execute successfully.
|
||||||
|
for lo+1 < hi {
|
||||||
|
mid := (hi + lo) / 2
|
||||||
|
if mid > lo*2 {
|
||||||
|
// Most txs don't need much higher gas limit than their gas used, and most txs don't
|
||||||
|
// require near the full block limit of gas, so the selection of where to bisect the
|
||||||
|
// range here is skewed to favor the low side.
|
||||||
|
mid = lo * 2
|
||||||
|
}
|
||||||
|
failed, _, err = execute(ctx, call, opts, mid)
|
||||||
|
if err != nil {
|
||||||
|
// This should not happen under normal conditions since if we make it this far the
|
||||||
|
// transaction had run without error at least once before.
|
||||||
|
log.Error("Execution error in estimate gas", "err", err)
|
||||||
|
return 0, nil, err
|
||||||
|
}
|
||||||
|
if failed {
|
||||||
|
lo = mid
|
||||||
|
} else {
|
||||||
|
hi = mid
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return hi, nil, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// execute is a helper that executes the transaction under a given gas limit and
|
||||||
|
// returns true if the transaction fails for a reason that might be related to
|
||||||
|
// not enough gas. A non-nil error means execution failed due to reasons unrelated
|
||||||
|
// to the gas limit.
|
||||||
|
func execute(ctx context.Context, call *core.Message, opts *Options, gasLimit uint64) (bool, *core.ExecutionResult, error) {
|
||||||
|
// Configure the call for this specific execution (and revert the change after)
|
||||||
|
defer func(gas uint64) { call.GasLimit = gas }(call.GasLimit)
|
||||||
|
call.GasLimit = gasLimit
|
||||||
|
|
||||||
|
// Execute the call and separate execution faults caused by a lack of gas or
|
||||||
|
// other non-fixable conditions
|
||||||
|
result, err := run(ctx, call, opts)
|
||||||
|
if err != nil {
|
||||||
|
if errors.Is(err, vm.ErrOutOfGas) || errors.Is(err, core.ErrIntrinsicGas) {
|
||||||
|
return true, nil, nil // Special case, raise gas limit
|
||||||
|
}
|
||||||
|
return true, nil, err // Bail out
|
||||||
|
}
|
||||||
|
return result.Failed(), result, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// run assembles the EVM as defined by the consensus rules and runs the requested
|
||||||
|
// call invocation.
|
||||||
|
func run(ctx context.Context, call *core.Message, opts *Options) (*core.ExecutionResult, error) {
|
||||||
|
// Assemble the call and the call context
|
||||||
|
var (
|
||||||
|
msgContext = core.NewEVMTxContext(call)
|
||||||
|
evmContext = core.NewEVMBlockContext(opts.Header, opts.Chain, nil)
|
||||||
|
|
||||||
|
dirtyState = opts.State.Copy()
|
||||||
|
evm = vm.NewEVM(evmContext, msgContext, dirtyState, nil, opts.Config, vm.Config{NoBaseFee: true})
|
||||||
|
)
|
||||||
|
// Monitor the outer context and interrupt the EVM upon cancellation. To avoid
|
||||||
|
// a dangling goroutine until the outer estimation finishes, create an internal
|
||||||
|
// context for the lifetime of this method call.
|
||||||
|
ctx, cancel := context.WithCancel(ctx)
|
||||||
|
defer cancel()
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
<-ctx.Done()
|
||||||
|
evm.Cancel()
|
||||||
|
}()
|
||||||
|
// Execute the call, returning a wrapped error or the result
|
||||||
|
result, err := core.ApplyMessage(evm, call, new(core.GasPool).AddGas(math.MaxUint64), common.Address{})
|
||||||
|
if vmerr := dirtyState.Error(); vmerr != nil {
|
||||||
|
return nil, vmerr
|
||||||
|
}
|
||||||
|
if err != nil {
|
||||||
|
return result, fmt.Errorf("failed with %d gas: %w", call.GasLimit, err)
|
||||||
|
}
|
||||||
|
return result, nil
|
||||||
|
}
|
||||||
|
|
@ -47,6 +47,7 @@ import (
|
||||||
"github.com/XinFinOrg/XDPoSChain/core/types"
|
"github.com/XinFinOrg/XDPoSChain/core/types"
|
||||||
"github.com/XinFinOrg/XDPoSChain/core/vm"
|
"github.com/XinFinOrg/XDPoSChain/core/vm"
|
||||||
"github.com/XinFinOrg/XDPoSChain/crypto"
|
"github.com/XinFinOrg/XDPoSChain/crypto"
|
||||||
|
"github.com/XinFinOrg/XDPoSChain/eth/gasestimator"
|
||||||
"github.com/XinFinOrg/XDPoSChain/eth/tracers/logger"
|
"github.com/XinFinOrg/XDPoSChain/eth/tracers/logger"
|
||||||
"github.com/XinFinOrg/XDPoSChain/log"
|
"github.com/XinFinOrg/XDPoSChain/log"
|
||||||
"github.com/XinFinOrg/XDPoSChain/p2p"
|
"github.com/XinFinOrg/XDPoSChain/p2p"
|
||||||
|
|
@ -1203,15 +1204,16 @@ func doCall(ctx context.Context, b Backend, args TransactionArgs, state *state.S
|
||||||
return result, err
|
return result, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func newRevertError(result *core.ExecutionResult) *revertError {
|
func newRevertError(revert []byte) *revertError {
|
||||||
reason, errUnpack := abi.UnpackRevert(result.Revert())
|
err := vm.ErrExecutionReverted
|
||||||
err := errors.New("execution reverted")
|
|
||||||
|
reason, errUnpack := abi.UnpackRevert(revert)
|
||||||
if errUnpack == nil {
|
if errUnpack == nil {
|
||||||
err = fmt.Errorf("execution reverted: %v", reason)
|
err = fmt.Errorf("%w: %v", vm.ErrExecutionReverted, reason)
|
||||||
}
|
}
|
||||||
return &revertError{
|
return &revertError{
|
||||||
error: err,
|
error: err,
|
||||||
reason: hexutil.Encode(result.Revert()),
|
reason: hexutil.Encode(revert),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1250,116 +1252,50 @@ func (s *BlockChainAPI) Call(ctx context.Context, args TransactionArgs, blockNrO
|
||||||
}
|
}
|
||||||
// If the result contains a revert reason, try to unpack and return it.
|
// If the result contains a revert reason, try to unpack and return it.
|
||||||
if len(result.Revert()) > 0 {
|
if len(result.Revert()) > 0 {
|
||||||
return nil, newRevertError(result)
|
return nil, newRevertError(result.Revert())
|
||||||
}
|
}
|
||||||
return result.Return(), result.Err
|
return result.Return(), result.Err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// DoEstimateGas returns the lowest possible gas limit that allows the transaction to run
|
||||||
|
// successfully at block `blockNrOrHash`. It returns error if the transaction would revert, or if
|
||||||
|
// there are unexpected failures. The gas limit is capped by both `args.Gas` (if non-nil &
|
||||||
|
// non-zero) and `gasCap` (if non-zero).
|
||||||
func DoEstimateGas(ctx context.Context, b Backend, args TransactionArgs, blockNrOrHash rpc.BlockNumberOrHash, overrides *StateOverride, gasCap uint64) (hexutil.Uint64, error) {
|
func DoEstimateGas(ctx context.Context, b Backend, args TransactionArgs, blockNrOrHash rpc.BlockNumberOrHash, overrides *StateOverride, gasCap uint64) (hexutil.Uint64, error) {
|
||||||
// Retrieve the base state and mutate it with any overrides
|
// Retrieve the base state and mutate it with any overrides
|
||||||
state, _, err := b.StateAndHeaderByNumberOrHash(ctx, blockNrOrHash)
|
state, header, err := b.StateAndHeaderByNumberOrHash(ctx, blockNrOrHash)
|
||||||
if state == nil || err != nil {
|
if state == nil || err != nil {
|
||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
if err = overrides.Apply(state); err != nil {
|
if err = overrides.Apply(state); err != nil {
|
||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
// Binary search the gas requirement, as it may be higher than the amount used
|
// Construct the gas estimator option from the user input
|
||||||
var (
|
opts := &gasestimator.Options{
|
||||||
lo uint64 = params.TxGas - 1
|
Config: b.ChainConfig(),
|
||||||
hi uint64
|
Chain: NewChainContext(ctx, b),
|
||||||
cap uint64
|
Header: header,
|
||||||
)
|
State: state,
|
||||||
// Use zero address if sender unspecified.
|
|
||||||
if args.From == nil {
|
|
||||||
args.From = new(common.Address)
|
|
||||||
}
|
}
|
||||||
// Determine the highest gas limit can be used during the estimation.
|
// Set any required transaction default, but make sure the gas cap itself is not messed with
|
||||||
if args.Gas != nil && uint64(*args.Gas) >= params.TxGas {
|
// if it was not specified in the original argument list.
|
||||||
hi = uint64(*args.Gas)
|
if args.Gas == nil {
|
||||||
} else {
|
args.Gas = new(hexutil.Uint64)
|
||||||
// Retrieve the current pending block to act as the gas ceiling
|
|
||||||
block, err := b.BlockByNumberOrHash(ctx, blockNrOrHash)
|
|
||||||
if err != nil {
|
|
||||||
return 0, err
|
|
||||||
}
|
|
||||||
if block == nil {
|
|
||||||
return 0, errors.New("block not found")
|
|
||||||
}
|
|
||||||
hi = block.GasLimit()
|
|
||||||
}
|
}
|
||||||
// Recap the highest gas allowance with specified gascap.
|
if err := args.CallDefaults(gasCap, header.BaseFee, b.ChainConfig().ChainID); err != nil {
|
||||||
if gasCap != 0 && hi > gasCap {
|
return 0, err
|
||||||
log.Warn("Caller gas above allowance, capping", "requested", hi, "cap", gasCap)
|
|
||||||
hi = gasCap
|
|
||||||
}
|
}
|
||||||
cap = hi
|
call := args.ToMessage(b, header.BaseFee)
|
||||||
|
|
||||||
// Create a helper to check if a gas allowance results in an executable transaction
|
// Run the gas estimation andwrap any revertals into a custom return
|
||||||
executable := func(gas uint64) (bool, *core.ExecutionResult, error) {
|
estimate, revert, err := gasestimator.Estimate(ctx, call, opts, gasCap)
|
||||||
args.Gas = (*hexutil.Uint64)(&gas)
|
if err != nil {
|
||||||
|
if len(revert) > 0 {
|
||||||
result, err := DoCall(ctx, b, args, blockNrOrHash, nil, nil, 0, gasCap)
|
return 0, newRevertError(revert)
|
||||||
if err != nil {
|
|
||||||
if errors.Is(err, vm.ErrOutOfGas) || errors.Is(err, core.ErrIntrinsicGas) {
|
|
||||||
return true, nil, nil // Special case, raise gas limit
|
|
||||||
}
|
|
||||||
return true, nil, err // Bail out
|
|
||||||
}
|
}
|
||||||
return result.Failed(), result, nil
|
return 0, err
|
||||||
}
|
}
|
||||||
|
return hexutil.Uint64(estimate), nil
|
||||||
// If the transaction is a plain value transfer, short circuit estimation and
|
|
||||||
// directly try 21000. Returning 21000 without any execution is dangerous as
|
|
||||||
// some tx field combos might bump the price up even for plain transfers (e.g.
|
|
||||||
// unused access list items). Ever so slightly wasteful, but safer overall.
|
|
||||||
if args.Data == nil || len(*args.Data) == 0 {
|
|
||||||
if args.To != nil && state.GetCodeSize(*args.To) == 0 {
|
|
||||||
ok, _, err := executable(params.TxGas)
|
|
||||||
if ok && err == nil {
|
|
||||||
return hexutil.Uint64(params.TxGas), nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Execute the binary search and hone in on an executable gas limit
|
|
||||||
for lo+1 < hi {
|
|
||||||
mid := (hi + lo) / 2
|
|
||||||
failed, _, err := executable(mid)
|
|
||||||
|
|
||||||
// If the error is not nil(consensus error), it means the provided message
|
|
||||||
// call or transaction will never be accepted no matter how much gas it is
|
|
||||||
// assigned. Return the error directly, don't struggle any more.
|
|
||||||
if err != nil {
|
|
||||||
return 0, err
|
|
||||||
}
|
|
||||||
|
|
||||||
if failed {
|
|
||||||
lo = mid
|
|
||||||
} else {
|
|
||||||
hi = mid
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Reject the transaction as invalid if it still fails at the highest allowance
|
|
||||||
if hi == cap {
|
|
||||||
failed, result, err := executable(hi)
|
|
||||||
if err != nil {
|
|
||||||
return 0, err
|
|
||||||
}
|
|
||||||
|
|
||||||
if failed {
|
|
||||||
if result != nil && !errors.Is(result.Err, vm.ErrOutOfGas) {
|
|
||||||
if len(result.Revert()) > 0 {
|
|
||||||
return 0, newRevertError(result)
|
|
||||||
}
|
|
||||||
return 0, result.Err
|
|
||||||
}
|
|
||||||
// Otherwise, the specified gas cap is too low
|
|
||||||
return 0, fmt.Errorf("gas required exceeds allowance (%d)", cap)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return hexutil.Uint64(hi), nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// EstimateGas returns an estimate of the amount of gas needed to execute the
|
// EstimateGas returns an estimate of the amount of gas needed to execute the
|
||||||
|
|
@ -1778,6 +1714,15 @@ func AccessList(ctx context.Context, b Backend, blockNrOrHash rpc.BlockNumberOrH
|
||||||
if err := args.setDefaults(ctx, b, true); err != nil {
|
if err := args.setDefaults(ctx, b, true); err != nil {
|
||||||
return nil, 0, nil, err
|
return nil, 0, nil, err
|
||||||
}
|
}
|
||||||
|
if args.Nonce == nil {
|
||||||
|
nonce := hexutil.Uint64(db.GetNonce(args.from()))
|
||||||
|
args.Nonce = &nonce
|
||||||
|
}
|
||||||
|
blockCtx := core.NewEVMBlockContext(header, NewChainContext(ctx, b), nil)
|
||||||
|
if err = args.CallDefaults(b.RPCGasCap(), blockCtx.BaseFee, b.ChainConfig().ChainID); err != nil {
|
||||||
|
return nil, 0, nil, err
|
||||||
|
}
|
||||||
|
|
||||||
var to common.Address
|
var to common.Address
|
||||||
if args.To != nil {
|
if args.To != nil {
|
||||||
to = *args.To
|
to = *args.To
|
||||||
|
|
|
||||||
|
|
@ -322,7 +322,6 @@ func (args *TransactionArgs) ToMessage(b AccountBackend, baseFee *big.Int) *core
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return &core.Message{
|
return &core.Message{
|
||||||
From: addr,
|
From: addr,
|
||||||
To: args.To,
|
To: args.To,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue