mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
3375484f79
* Use cosmossdk.io/errors for deprecated error methods * Update error registration with cosmossdk.io/errors * Use cosmossdk.io/math for deprecated sdk.Int alias * Fix modified proto file * Update sdk.Int usage in swap hooks * Update e2e test deprecated method usage
87 lines
2.6 KiB
Go
87 lines
2.6 KiB
Go
package ante
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
errorsmod "cosmossdk.io/errors"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
|
"github.com/cosmos/cosmos-sdk/x/authz"
|
|
)
|
|
|
|
var _ sdk.AnteDecorator = AuthzLimiterDecorator{}
|
|
|
|
// AuthzLimiterDecorator blocks certain msg types from being granted or executed within authz.
|
|
type AuthzLimiterDecorator struct {
|
|
// disabledMsgTypes is the type urls of the msgs to block.
|
|
disabledMsgTypes []string
|
|
}
|
|
|
|
// NewAuthzLimiterDecorator creates a decorator to block certain msg types from being granted or executed within authz.
|
|
func NewAuthzLimiterDecorator(disabledMsgTypes ...string) AuthzLimiterDecorator {
|
|
return AuthzLimiterDecorator{
|
|
disabledMsgTypes: disabledMsgTypes,
|
|
}
|
|
}
|
|
|
|
func (ald AuthzLimiterDecorator) AnteHandle(ctx sdk.Context, tx sdk.Tx, simulate bool, next sdk.AnteHandler) (newCtx sdk.Context, err error) {
|
|
err = ald.checkForDisabledMsg(tx.GetMsgs(), true)
|
|
if err != nil {
|
|
return ctx, errorsmod.Wrapf(sdkerrors.ErrUnauthorized, "%v", err)
|
|
}
|
|
return next(ctx, tx, simulate)
|
|
}
|
|
|
|
// checkForDisabledMsg iterates through the msgs and returns an error if it finds any unauthorized msgs.
|
|
//
|
|
// When searchOnlyInAuthzMsgs is enabled, only authz MsgGrant and MsgExec are blocked, if they contain unauthorized msg types.
|
|
// Otherwise any msg matching the disabled types are blocked, regardless of being in an authz msg or not.
|
|
//
|
|
// This method is recursive as MsgExec's can wrap other MsgExecs.
|
|
func (ald AuthzLimiterDecorator) checkForDisabledMsg(msgs []sdk.Msg, searchOnlyInAuthzMsgs bool) error {
|
|
for _, msg := range msgs {
|
|
typeURL := sdk.MsgTypeURL(msg)
|
|
switch {
|
|
case !searchOnlyInAuthzMsgs && ald.isDisabled(typeURL):
|
|
return fmt.Errorf("found disabled msg type: %s", typeURL)
|
|
|
|
case typeURL == sdk.MsgTypeURL(&authz.MsgGrant{}):
|
|
m, ok := msg.(*authz.MsgGrant)
|
|
if !ok {
|
|
panic("unexpected msg type")
|
|
}
|
|
authorization, err := m.GetAuthorization()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if ald.isDisabled(authorization.MsgTypeURL()) {
|
|
return fmt.Errorf("found disabled msg type in MsgGrant: %s", authorization.MsgTypeURL())
|
|
}
|
|
|
|
case typeURL == sdk.MsgTypeURL(&authz.MsgExec{}):
|
|
m, ok := msg.(*authz.MsgExec)
|
|
if !ok {
|
|
panic("unexpected msg type")
|
|
}
|
|
innerMsgs, err := m.GetMessages()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if err := ald.checkForDisabledMsg(innerMsgs, false); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (ald AuthzLimiterDecorator) isDisabled(msgTypeURL string) bool {
|
|
for _, disabledType := range ald.disabledMsgTypes {
|
|
if msgTypeURL == disabledType {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|