Some checks failed
CodeQL / Analyze (push) Waiting to run
golangci-lint / lint (push) Waiting to run
Tests / Code Coverage / build (amd64) (push) Waiting to run
Tests / Code Coverage / build (arm64) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[additional-args:-tags="test_e2e" name:e2e path:./e2e]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:08-wasm path:./modules/light-clients/08-wasm]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:ibc-go path:.]) (push) Waiting to run
Docker Build & Push Simapp (main) / docker-build (push) Has been cancelled
208 lines
7.3 KiB
Go
208 lines
7.3 KiB
Go
package ante
|
|
|
|
import (
|
|
errorsmod "cosmossdk.io/errors"
|
|
|
|
sdk "git.cw.tr/mukan-network/mukan-sdk/types"
|
|
|
|
clienttypes "git.cw.tr/mukan-network/mukan-ibc/modules/core/02-client/types"
|
|
channeltypes "git.cw.tr/mukan-network/mukan-ibc/modules/core/04-channel/types"
|
|
channeltypesv2 "git.cw.tr/mukan-network/mukan-ibc/modules/core/04-channel/v2/types"
|
|
"git.cw.tr/mukan-network/mukan-ibc/modules/core/exported"
|
|
"git.cw.tr/mukan-network/mukan-ibc/modules/core/keeper"
|
|
)
|
|
|
|
type RedundantRelayDecorator struct {
|
|
k *keeper.Keeper
|
|
}
|
|
|
|
func NewRedundantRelayDecorator(k *keeper.Keeper) RedundantRelayDecorator {
|
|
return RedundantRelayDecorator{k: k}
|
|
}
|
|
|
|
// AnteHandle returns an error if a multiMsg tx only contains packet messages (Recv, Ack, Timeout) and additional update messages
|
|
// and all packet messages are redundant. If the transaction is just a single UpdateClient message, or the multimsg transaction
|
|
// contains some other message type, then the antedecorator returns no error and continues processing to ensure these transactions
|
|
// are included. This will ensure that relayers do not waste fees on multiMsg transactions when another relayer has already submitted
|
|
// all packets, by rejecting the tx at the mempool layer.
|
|
func (rrd RedundantRelayDecorator) AnteHandle(ctx sdk.Context, tx sdk.Tx, simulate bool, next sdk.AnteHandler) (sdk.Context, error) {
|
|
// do not run redundancy check on DeliverTx or simulate
|
|
if (ctx.IsCheckTx() || ctx.IsReCheckTx()) && !simulate {
|
|
// keep track of total packet messages and number of redundancies across `RecvPacket`, `AcknowledgePacket`, and `TimeoutPacket/OnClose`
|
|
redundancies := 0
|
|
packetMsgs := 0
|
|
for _, m := range tx.GetMsgs() {
|
|
switch msg := m.(type) {
|
|
case *channeltypes.MsgRecvPacket:
|
|
var (
|
|
response *channeltypes.MsgRecvPacketResponse
|
|
err error
|
|
)
|
|
// when we are in ReCheckTx mode, ctx.IsCheckTx() will also return true
|
|
// therefore we must start the if statement on ctx.IsReCheckTx() to correctly
|
|
// determine which mode we are in
|
|
if ctx.IsReCheckTx() {
|
|
response, err = rrd.recvPacketReCheckTx(ctx, msg)
|
|
} else {
|
|
response, err = rrd.recvPacketCheckTx(ctx, msg)
|
|
}
|
|
if err != nil {
|
|
return ctx, err
|
|
}
|
|
|
|
if response.Result == channeltypes.NOOP {
|
|
redundancies++
|
|
}
|
|
packetMsgs++
|
|
|
|
case *channeltypes.MsgAcknowledgement:
|
|
response, err := rrd.k.Acknowledgement(ctx, msg)
|
|
if err != nil {
|
|
return ctx, err
|
|
}
|
|
if response.Result == channeltypes.NOOP {
|
|
redundancies++
|
|
}
|
|
packetMsgs++
|
|
|
|
case *channeltypes.MsgTimeout:
|
|
response, err := rrd.k.Timeout(ctx, msg)
|
|
if err != nil {
|
|
return ctx, err
|
|
}
|
|
if response.Result == channeltypes.NOOP {
|
|
redundancies++
|
|
}
|
|
packetMsgs++
|
|
|
|
case *channeltypes.MsgTimeoutOnClose:
|
|
response, err := rrd.k.TimeoutOnClose(ctx, msg)
|
|
if err != nil {
|
|
return ctx, err
|
|
}
|
|
if response.Result == channeltypes.NOOP {
|
|
redundancies++
|
|
}
|
|
packetMsgs++
|
|
|
|
case *clienttypes.MsgUpdateClient:
|
|
if err := rrd.updateClientCheckTx(ctx, msg); err != nil {
|
|
return ctx, err
|
|
}
|
|
|
|
case *channeltypesv2.MsgTimeout:
|
|
response, err := rrd.k.ChannelKeeperV2.Timeout(ctx, msg)
|
|
if err != nil {
|
|
return ctx, err
|
|
}
|
|
|
|
if response.Result == channeltypesv2.NOOP {
|
|
redundancies++
|
|
}
|
|
packetMsgs++
|
|
case *channeltypesv2.MsgAcknowledgement:
|
|
response, err := rrd.k.ChannelKeeperV2.Acknowledgement(ctx, msg)
|
|
if err != nil {
|
|
return ctx, err
|
|
}
|
|
|
|
if response.Result == channeltypesv2.NOOP {
|
|
redundancies++
|
|
}
|
|
packetMsgs++
|
|
case *channeltypesv2.MsgRecvPacket:
|
|
response, err := rrd.k.ChannelKeeperV2.RecvPacket(ctx, msg)
|
|
if err != nil {
|
|
return ctx, err
|
|
}
|
|
|
|
if response.Result == channeltypesv2.NOOP {
|
|
redundancies++
|
|
}
|
|
packetMsgs++
|
|
default:
|
|
// if the multiMsg tx has a msg that is not a packet msg or update msg, then we will not return error
|
|
// regardless of if all packet messages are redundant. This ensures that non-packet messages get processed
|
|
// even if they get batched with redundant packet messages.
|
|
return next(ctx, tx, simulate)
|
|
}
|
|
}
|
|
|
|
// only return error if all packet messages are redundant
|
|
if redundancies == packetMsgs && packetMsgs > 0 {
|
|
return ctx, channeltypes.ErrRedundantTx
|
|
}
|
|
}
|
|
return next(ctx, tx, simulate)
|
|
}
|
|
|
|
// recvPacketCheckTx runs a subset of ibc recv packet logic to be used specifically within the RedundantRelayDecorator AnteHandler.
|
|
// It only performs core IBC receiving logic and skips any application logic.
|
|
func (rrd RedundantRelayDecorator) recvPacketCheckTx(ctx sdk.Context, msg *channeltypes.MsgRecvPacket) (*channeltypes.MsgRecvPacketResponse, error) {
|
|
// If the packet was already received, perform a no-op
|
|
// Use a cached context to prevent accidental state changes
|
|
cacheCtx, writeFn := ctx.CacheContext()
|
|
_, err := rrd.k.ChannelKeeper.RecvPacket(cacheCtx, msg.Packet, msg.ProofCommitment, msg.ProofHeight)
|
|
|
|
switch err {
|
|
case nil:
|
|
writeFn()
|
|
case channeltypes.ErrNoOpMsg:
|
|
return &channeltypes.MsgRecvPacketResponse{Result: channeltypes.NOOP}, nil
|
|
default:
|
|
return nil, errorsmod.Wrap(err, "receive packet verification failed")
|
|
}
|
|
|
|
return &channeltypes.MsgRecvPacketResponse{Result: channeltypes.SUCCESS}, nil
|
|
}
|
|
|
|
// recvPacketReCheckTx runs a subset of ibc recv packet logic to be used specifically within the RedundantRelayDecorator AnteHandler.
|
|
// It only performs core IBC receiving logic and skips any application logic.
|
|
func (rrd RedundantRelayDecorator) recvPacketReCheckTx(ctx sdk.Context, msg *channeltypes.MsgRecvPacket) (*channeltypes.MsgRecvPacketResponse, error) {
|
|
// If the packet was already received, perform a no-op
|
|
// Use a cached context to prevent accidental state changes
|
|
cacheCtx, writeFn := ctx.CacheContext()
|
|
err := rrd.k.ChannelKeeper.RecvPacketReCheckTx(cacheCtx, msg.Packet)
|
|
|
|
switch err {
|
|
case nil:
|
|
writeFn()
|
|
case channeltypes.ErrNoOpMsg:
|
|
return &channeltypes.MsgRecvPacketResponse{Result: channeltypes.NOOP}, nil
|
|
default:
|
|
return nil, errorsmod.Wrap(err, "receive packet verification failed")
|
|
}
|
|
|
|
return &channeltypes.MsgRecvPacketResponse{Result: channeltypes.SUCCESS}, nil
|
|
}
|
|
|
|
// updateClientCheckTx runs a subset of ibc client update logic to be used specifically within the RedundantRelayDecorator AnteHandler.
|
|
// The following function performs ibc client message verification for CheckTx only and state updates in both CheckTx and ReCheckTx.
|
|
// Note that misbehaviour checks are omitted.
|
|
func (rrd RedundantRelayDecorator) updateClientCheckTx(ctx sdk.Context, msg *clienttypes.MsgUpdateClient) error {
|
|
clientMsg, err := clienttypes.UnpackClientMessage(msg.ClientMessage)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if status := rrd.k.ClientKeeper.GetClientStatus(ctx, msg.ClientId); status != exported.Active {
|
|
return errorsmod.Wrapf(clienttypes.ErrClientNotActive, "cannot update client (%s) with status %s", msg.ClientId, status)
|
|
}
|
|
|
|
clientModule, err := rrd.k.ClientKeeper.Route(ctx, msg.ClientId)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if !ctx.IsReCheckTx() {
|
|
if err := clientModule.VerifyClientMessage(ctx, msg.ClientId, clientMsg); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
heights := clientModule.UpdateState(ctx, msg.ClientId, clientMsg)
|
|
|
|
ctx.Logger().With("module", "x/"+exported.ModuleName).Debug("ante ibc client update", "consensusHeights", heights)
|
|
|
|
return nil
|
|
}
|