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"
|
2020-09-23 14:49:20 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/x/auth/keeper"
|
2019-07-04 19:46:54 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/x/auth/types"
|
2018-11-28 22:19:22 +00:00
|
|
|
|
2020-10-06 18:57:55 +00:00
|
|
|
"github.com/cosmos/ethermint/crypto/ethsecp256k1"
|
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() {
|
2020-10-06 18:57:55 +00:00
|
|
|
ethsecp256k1.RegisterCodec(types.ModuleCdc)
|
2020-08-23 21:41:54 +00:00
|
|
|
}
|
|
|
|
|
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-09-02 19:41:05 +00:00
|
|
|
func NewAnteHandler(ak auth.AccountKeeper, evmKeeper EVMKeeper, 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
|
2020-09-17 22:04:36 +00:00
|
|
|
NewAccountSetupDecorator(ak),
|
2020-04-16 15:47:39 +00:00
|
|
|
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
|
2020-09-02 19:41:05 +00:00
|
|
|
NewEthMempoolFeeDecorator(evmKeeper),
|
2020-09-23 14:49:20 +00:00
|
|
|
authante.NewValidateBasicDecorator(),
|
2020-04-17 22:32:01 +00:00
|
|
|
NewEthSigVerificationDecorator(),
|
2020-09-02 19:41:05 +00:00
|
|
|
NewAccountVerificationDecorator(ak, evmKeeper),
|
2020-04-17 22:32:01 +00:00
|
|
|
NewNonceVerificationDecorator(ak),
|
2020-09-02 19:41:05 +00:00
|
|
|
NewEthGasConsumeDecorator(ak, sk, evmKeeper),
|
2020-04-17 22:32:01 +00:00
|
|
|
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(
|
2020-09-23 14:49:20 +00:00
|
|
|
meter sdk.GasMeter, _ []byte, pubkey tmcrypto.PubKey, _ types.Params,
|
2019-11-04 20:45:02 +00:00
|
|
|
) error {
|
2018-12-18 16:10:04 +00:00
|
|
|
switch pubkey.(type) {
|
2020-10-06 18:57:55 +00:00
|
|
|
case ethsecp256k1.PubKey:
|
2018-12-18 16:10:04 +00:00
|
|
|
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
|
|
|
|
2020-09-23 14:49:20 +00:00
|
|
|
// AccountSetupDecorator sets an account to state if it's not stored already. This only applies for MsgEthermint.
|
2020-09-17 22:04:36 +00:00
|
|
|
type AccountSetupDecorator struct {
|
|
|
|
ak auth.AccountKeeper
|
|
|
|
}
|
|
|
|
|
2020-09-23 14:49:20 +00:00
|
|
|
// NewAccountSetupDecorator creates a new AccountSetupDecorator instance
|
2020-09-17 22:04:36 +00:00
|
|
|
func NewAccountSetupDecorator(ak auth.AccountKeeper) AccountSetupDecorator {
|
|
|
|
return AccountSetupDecorator{
|
|
|
|
ak: ak,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-23 14:49:20 +00:00
|
|
|
// AnteHandle sets an account for MsgEthermint (evm) if the sender is registered.
|
|
|
|
// NOTE: Since the account is set without any funds, the message execution will
|
|
|
|
// fail if the validator requires a minimum fee > 0.
|
2020-09-17 22:04:36 +00:00
|
|
|
func (asd AccountSetupDecorator) AnteHandle(ctx sdk.Context, tx sdk.Tx, simulate bool, next sdk.AnteHandler) (sdk.Context, error) {
|
|
|
|
msgs := tx.GetMsgs()
|
|
|
|
if len(msgs) == 0 {
|
|
|
|
return ctx, sdkerrors.Wrap(sdkerrors.ErrUnknownRequest, "no messages included in transaction")
|
|
|
|
}
|
|
|
|
|
2020-09-23 14:49:20 +00:00
|
|
|
for _, msg := range msgs {
|
|
|
|
if msgEthermint, ok := msg.(evmtypes.MsgEthermint); ok {
|
|
|
|
setupAccount(asd.ak, ctx, msgEthermint.From)
|
|
|
|
}
|
2020-09-17 22:04:36 +00:00
|
|
|
}
|
|
|
|
|
2020-09-23 14:49:20 +00:00
|
|
|
return next(ctx, tx, simulate)
|
|
|
|
}
|
|
|
|
|
|
|
|
func setupAccount(ak keeper.AccountKeeper, ctx sdk.Context, addr sdk.AccAddress) {
|
|
|
|
acc := ak.GetAccount(ctx, addr)
|
|
|
|
if acc != nil {
|
|
|
|
return
|
2020-09-17 22:04:36 +00:00
|
|
|
}
|
|
|
|
|
2020-09-23 14:49:20 +00:00
|
|
|
acc = ak.NewAccountWithAddress(ctx, addr)
|
|
|
|
ak.SetAccount(ctx, acc)
|
2020-09-17 22:04:36 +00:00
|
|
|
}
|