2020-04-01 18:49:21 +00:00
|
|
|
package ante
|
2018-11-28 22:19:22 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
2019-11-04 20:45:02 +00:00
|
|
|
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
2018-11-28 22:19:22 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/x/auth"
|
2020-04-16 15:47:39 +00:00
|
|
|
authante "github.com/cosmos/cosmos-sdk/x/auth/ante"
|
2019-07-04 19:46:54 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/x/auth/types"
|
2020-04-22 19:26:01 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/x/bank"
|
2018-11-28 22:19:22 +00:00
|
|
|
|
2018-12-18 16:10:04 +00:00
|
|
|
"github.com/cosmos/ethermint/crypto"
|
2018-11-28 22:19:22 +00:00
|
|
|
evmtypes "github.com/cosmos/ethermint/x/evm/types"
|
|
|
|
|
2018-12-18 16:10:04 +00:00
|
|
|
tmcrypto "github.com/tendermint/tendermint/crypto"
|
2018-11-28 22:19:22 +00:00
|
|
|
)
|
|
|
|
|
2020-08-23 21:41:54 +00:00
|
|
|
func init() {
|
|
|
|
crypto.RegisterCodec(types.ModuleCdc)
|
|
|
|
}
|
|
|
|
|
2018-12-18 16:10:04 +00:00
|
|
|
const (
|
2019-11-04 20:45:02 +00:00
|
|
|
// TODO: Use this cost per byte through parameter or overriding NewConsumeGasForTxSizeDecorator
|
|
|
|
// which currently defaults at 10, if intended
|
|
|
|
// memoCostPerByte sdk.Gas = 3
|
|
|
|
secp256k1VerifyCost uint64 = 21000
|
2018-12-18 16:10:04 +00:00
|
|
|
)
|
2018-11-28 22:19:22 +00:00
|
|
|
|
2018-12-18 16:10:04 +00:00
|
|
|
// NewAnteHandler returns an ante handler responsible for attempting to route an
|
2018-11-28 22:19:22 +00:00
|
|
|
// Ethereum or SDK transaction to an internal ante handler for performing
|
|
|
|
// transaction-level processing (e.g. fee payment, signature verification) before
|
|
|
|
// being passed onto it's respective handler.
|
2020-04-22 19:26:01 +00:00
|
|
|
func NewAnteHandler(ak auth.AccountKeeper, bk bank.Keeper, sk types.SupplyKeeper) sdk.AnteHandler {
|
2018-11-28 22:19:22 +00:00
|
|
|
return func(
|
|
|
|
ctx sdk.Context, tx sdk.Tx, sim bool,
|
2019-11-04 20:45:02 +00:00
|
|
|
) (newCtx sdk.Context, err error) {
|
2020-04-17 22:32:01 +00:00
|
|
|
var anteHandler sdk.AnteHandler
|
|
|
|
switch tx.(type) {
|
2018-12-18 16:10:04 +00:00
|
|
|
case auth.StdTx:
|
2020-04-17 22:32:01 +00:00
|
|
|
anteHandler = sdk.ChainAnteDecorators(
|
2020-04-16 15:47:39 +00:00
|
|
|
authante.NewSetUpContextDecorator(), // outermost AnteDecorator. SetUpContext must be called first
|
|
|
|
authante.NewMempoolFeeDecorator(),
|
|
|
|
authante.NewValidateBasicDecorator(),
|
|
|
|
authante.NewValidateMemoDecorator(ak),
|
|
|
|
authante.NewConsumeGasForTxSizeDecorator(ak),
|
|
|
|
authante.NewSetPubKeyDecorator(ak), // SetPubKeyDecorator must be called before all signature verification decorators
|
|
|
|
authante.NewValidateSigCountDecorator(ak),
|
|
|
|
authante.NewDeductFeeDecorator(ak, sk),
|
|
|
|
authante.NewSigGasConsumeDecorator(ak, sigGasConsumer),
|
|
|
|
authante.NewSigVerificationDecorator(ak),
|
2020-08-23 21:41:54 +00:00
|
|
|
authante.NewIncrementSequenceDecorator(ak), // innermost AnteDecorator
|
2019-11-04 20:45:02 +00:00
|
|
|
)
|
|
|
|
|
2020-04-01 18:49:21 +00:00
|
|
|
case evmtypes.MsgEthereumTx:
|
2020-04-17 22:32:01 +00:00
|
|
|
anteHandler = sdk.ChainAnteDecorators(
|
|
|
|
NewEthSetupContextDecorator(), // outermost AnteDecorator. EthSetUpContext must be called first
|
|
|
|
NewEthMempoolFeeDecorator(),
|
|
|
|
NewEthSigVerificationDecorator(),
|
2020-04-22 19:26:01 +00:00
|
|
|
NewAccountVerificationDecorator(ak, bk),
|
2020-04-17 22:32:01 +00:00
|
|
|
NewNonceVerificationDecorator(ak),
|
|
|
|
NewEthGasConsumeDecorator(ak, sk),
|
|
|
|
NewIncrementSenderSequenceDecorator(ak), // innermost AnteDecorator.
|
|
|
|
)
|
2018-12-18 16:10:04 +00:00
|
|
|
default:
|
2020-04-16 15:47:39 +00:00
|
|
|
return ctx, sdkerrors.Wrapf(sdkerrors.ErrUnknownRequest, "invalid transaction type: %T", tx)
|
2019-07-04 19:46:54 +00:00
|
|
|
}
|
2020-04-17 22:32:01 +00:00
|
|
|
|
|
|
|
return anteHandler(ctx, tx, sim)
|
2018-12-18 16:10:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-01 18:49:21 +00:00
|
|
|
// sigGasConsumer overrides the DefaultSigVerificationGasConsumer from the x/auth
|
|
|
|
// module on the SDK. It doesn't allow ed25519 nor multisig thresholds.
|
|
|
|
func sigGasConsumer(
|
2019-11-04 20:45:02 +00:00
|
|
|
meter sdk.GasMeter, sig []byte, pubkey tmcrypto.PubKey, params types.Params,
|
|
|
|
) error {
|
2018-12-18 16:10:04 +00:00
|
|
|
switch pubkey.(type) {
|
|
|
|
case crypto.PubKeySecp256k1:
|
|
|
|
meter.ConsumeGas(secp256k1VerifyCost, "ante verify: secp256k1")
|
2019-11-04 20:45:02 +00:00
|
|
|
return nil
|
2019-08-19 15:31:40 +00:00
|
|
|
case tmcrypto.PubKey:
|
|
|
|
meter.ConsumeGas(secp256k1VerifyCost, "ante verify: tendermint secp256k1")
|
2019-11-04 20:45:02 +00:00
|
|
|
return nil
|
2018-12-18 16:10:04 +00:00
|
|
|
default:
|
2019-11-04 20:45:02 +00:00
|
|
|
return sdkerrors.Wrapf(sdkerrors.ErrInvalidPubKey, "unrecognized public key type: %T", pubkey)
|
2018-11-28 22:19:22 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-15 02:08:13 +00:00
|
|
|
|
|
|
|
// IncrementSequenceDecorator handles incrementing sequences of all signers.
|
|
|
|
// Use the IncrementSequenceDecorator decorator to prevent replay attacks. Note,
|
|
|
|
// there is no need to execute IncrementSequenceDecorator on RecheckTX since
|
|
|
|
// CheckTx would already bump the sequence number.
|
|
|
|
//
|
|
|
|
// NOTE: Since CheckTx and DeliverTx state are managed separately, subsequent and
|
|
|
|
// sequential txs orginating from the same account cannot be handled correctly in
|
|
|
|
// a reliable way unless sequence numbers are managed and tracked manually by a
|
|
|
|
// client. It is recommended to instead use multiple messages in a tx.
|
|
|
|
type IncrementSequenceDecorator struct {
|
|
|
|
ak auth.AccountKeeper
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewIncrementSequenceDecorator(ak auth.AccountKeeper) IncrementSequenceDecorator {
|
|
|
|
return IncrementSequenceDecorator{
|
|
|
|
ak: ak,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (isd IncrementSequenceDecorator) AnteHandle(ctx sdk.Context, tx sdk.Tx, simulate bool, next sdk.AnteHandler) (sdk.Context, error) {
|
|
|
|
// no need to increment sequence on RecheckTx
|
|
|
|
if ctx.IsReCheckTx() && !simulate {
|
|
|
|
return next(ctx, tx, simulate)
|
|
|
|
}
|
|
|
|
|
|
|
|
sigTx, ok := tx.(authante.SigVerifiableTx)
|
|
|
|
if !ok {
|
|
|
|
return ctx, sdkerrors.Wrap(sdkerrors.ErrTxDecode, "invalid transaction type")
|
|
|
|
}
|
|
|
|
|
|
|
|
// increment sequence of all signers
|
|
|
|
for _, addr := range sigTx.GetSigners() {
|
|
|
|
acc := isd.ak.GetAccount(ctx, addr)
|
|
|
|
if err := acc.SetSequence(acc.GetSequence() + 1); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
isd.ak.SetAccount(ctx, acc)
|
|
|
|
}
|
|
|
|
|
|
|
|
return next(ctx, tx, simulate)
|
|
|
|
}
|