293 lines
11 KiB
Go
293 lines
11 KiB
Go
package keeper
|
|
|
|
import (
|
|
"fmt"
|
|
"reflect"
|
|
"strings"
|
|
|
|
"github.com/tendermint/tendermint/libs/log"
|
|
"github.com/tendermint/tendermint/light"
|
|
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
|
"github.com/cosmos/cosmos-sdk/store/prefix"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
|
"github.com/cosmos/cosmos-sdk/x/ibc/02-client/types"
|
|
ibctmtypes "github.com/cosmos/cosmos-sdk/x/ibc/07-tendermint/types"
|
|
commitmenttypes "github.com/cosmos/cosmos-sdk/x/ibc/23-commitment/types"
|
|
host "github.com/cosmos/cosmos-sdk/x/ibc/24-host"
|
|
"github.com/cosmos/cosmos-sdk/x/ibc/exported"
|
|
)
|
|
|
|
// Keeper represents a type that grants read and write permissions to any client
|
|
// state information
|
|
type Keeper struct {
|
|
storeKey sdk.StoreKey
|
|
cdc codec.BinaryMarshaler
|
|
stakingKeeper types.StakingKeeper
|
|
}
|
|
|
|
// NewKeeper creates a new NewKeeper instance
|
|
func NewKeeper(cdc codec.BinaryMarshaler, key sdk.StoreKey, sk types.StakingKeeper) Keeper {
|
|
return Keeper{
|
|
storeKey: key,
|
|
cdc: cdc,
|
|
stakingKeeper: sk,
|
|
}
|
|
}
|
|
|
|
// Logger returns a module-specific logger.
|
|
func (k Keeper) Logger(ctx sdk.Context) log.Logger {
|
|
return ctx.Logger().With("module", fmt.Sprintf("x/%s/%s", host.ModuleName, types.SubModuleName))
|
|
}
|
|
|
|
// GetClientState gets a particular client from the store
|
|
func (k Keeper) GetClientState(ctx sdk.Context, clientID string) (exported.ClientState, bool) {
|
|
store := k.ClientStore(ctx, clientID)
|
|
bz := store.Get(host.KeyClientState())
|
|
if bz == nil {
|
|
return nil, false
|
|
}
|
|
|
|
clientState := k.MustUnmarshalClientState(bz)
|
|
return clientState, true
|
|
}
|
|
|
|
// SetClientState sets a particular Client to the store
|
|
func (k Keeper) SetClientState(ctx sdk.Context, clientID string, clientState exported.ClientState) {
|
|
store := k.ClientStore(ctx, clientID)
|
|
store.Set(host.KeyClientState(), k.MustMarshalClientState(clientState))
|
|
}
|
|
|
|
// GetClientType gets the consensus type for a specific client
|
|
func (k Keeper) GetClientType(ctx sdk.Context, clientID string) (exported.ClientType, bool) {
|
|
store := k.ClientStore(ctx, clientID)
|
|
bz := store.Get(host.KeyClientType())
|
|
if bz == nil {
|
|
return 0, false
|
|
}
|
|
|
|
return exported.ClientType(bz[0]), true
|
|
}
|
|
|
|
// SetClientType sets the specific client consensus type to the provable store
|
|
func (k Keeper) SetClientType(ctx sdk.Context, clientID string, clientType exported.ClientType) {
|
|
store := k.ClientStore(ctx, clientID)
|
|
store.Set(host.KeyClientType(), []byte{byte(clientType)})
|
|
}
|
|
|
|
// GetClientConsensusState gets the stored consensus state from a client at a given height.
|
|
func (k Keeper) GetClientConsensusState(ctx sdk.Context, clientID string, height uint64) (exported.ConsensusState, bool) {
|
|
store := k.ClientStore(ctx, clientID)
|
|
bz := store.Get(host.KeyConsensusState(height))
|
|
if bz == nil {
|
|
return nil, false
|
|
}
|
|
|
|
consensusState := k.MustUnmarshalConsensusState(bz)
|
|
return consensusState, true
|
|
}
|
|
|
|
// SetClientConsensusState sets a ConsensusState to a particular client at the given
|
|
// height
|
|
func (k Keeper) SetClientConsensusState(ctx sdk.Context, clientID string, height uint64, consensusState exported.ConsensusState) {
|
|
store := k.ClientStore(ctx, clientID)
|
|
store.Set(host.KeyConsensusState(height), k.MustMarshalConsensusState(consensusState))
|
|
}
|
|
|
|
// IterateConsensusStates provides an iterator over all stored consensus states.
|
|
// objects. For each State object, cb will be called. If the cb returns true,
|
|
// the iterator will close and stop.
|
|
func (k Keeper) IterateConsensusStates(ctx sdk.Context, cb func(clientID string, cs exported.ConsensusState) bool) {
|
|
store := ctx.KVStore(k.storeKey)
|
|
iterator := sdk.KVStorePrefixIterator(store, host.KeyClientStorePrefix)
|
|
|
|
defer iterator.Close()
|
|
for ; iterator.Valid(); iterator.Next() {
|
|
keySplit := strings.Split(string(iterator.Key()), "/")
|
|
// consensus key is in the format "clients/<clientID>/consensusState/<height>"
|
|
if len(keySplit) != 4 || keySplit[2] != "consensusState" {
|
|
continue
|
|
}
|
|
clientID := keySplit[1]
|
|
consensusState := k.MustUnmarshalConsensusState(iterator.Value())
|
|
|
|
if cb(clientID, consensusState) {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
// GetAllGenesisClients returns all the clients in state with their client ids returned as IdentifiedClientState
|
|
func (k Keeper) GetAllGenesisClients(ctx sdk.Context) (genClients []types.IdentifiedClientState) {
|
|
k.IterateClients(ctx, func(clientID string, cs exported.ClientState) bool {
|
|
genClients = append(genClients, types.NewIdentifiedClientState(clientID, cs))
|
|
return false
|
|
})
|
|
return
|
|
}
|
|
|
|
// GetAllConsensusStates returns all stored client consensus states.
|
|
func (k Keeper) GetAllConsensusStates(ctx sdk.Context) types.ClientsConsensusStates {
|
|
clientConsStates := make(types.ClientsConsensusStates, 0)
|
|
mapClientIDToConsStateIdx := make(map[string]int)
|
|
|
|
k.IterateConsensusStates(ctx, func(clientID string, cs exported.ConsensusState) bool {
|
|
anyConsensusState := types.MustPackConsensusState(cs)
|
|
|
|
idx, ok := mapClientIDToConsStateIdx[clientID]
|
|
if ok {
|
|
clientConsStates[idx].ConsensusStates = append(clientConsStates[idx].ConsensusStates, anyConsensusState)
|
|
return false
|
|
}
|
|
|
|
clientConsState := types.ClientConsensusStates{
|
|
ClientId: clientID,
|
|
ConsensusStates: []*codectypes.Any{anyConsensusState},
|
|
}
|
|
|
|
clientConsStates = append(clientConsStates, clientConsState)
|
|
mapClientIDToConsStateIdx[clientID] = len(clientConsStates) - 1
|
|
return false
|
|
})
|
|
|
|
return clientConsStates.Sort()
|
|
}
|
|
|
|
// HasClientConsensusState returns if keeper has a ConsensusState for a particular
|
|
// client at the given height
|
|
func (k Keeper) HasClientConsensusState(ctx sdk.Context, clientID string, height uint64) bool {
|
|
store := k.ClientStore(ctx, clientID)
|
|
return store.Has(host.KeyConsensusState(height))
|
|
}
|
|
|
|
// GetLatestClientConsensusState gets the latest ConsensusState stored for a given client
|
|
func (k Keeper) GetLatestClientConsensusState(ctx sdk.Context, clientID string) (exported.ConsensusState, bool) {
|
|
clientState, ok := k.GetClientState(ctx, clientID)
|
|
if !ok {
|
|
return nil, false
|
|
}
|
|
return k.GetClientConsensusState(ctx, clientID, clientState.GetLatestHeight())
|
|
}
|
|
|
|
// GetClientConsensusStateLTE will get the latest ConsensusState of a particular client at the latest height
|
|
// less than or equal to the given height
|
|
func (k Keeper) GetClientConsensusStateLTE(ctx sdk.Context, clientID string, maxHeight uint64) (exported.ConsensusState, bool) {
|
|
for i := maxHeight; i > 0; i-- {
|
|
found := k.HasClientConsensusState(ctx, clientID, i)
|
|
if found {
|
|
return k.GetClientConsensusState(ctx, clientID, i)
|
|
}
|
|
}
|
|
return nil, false
|
|
}
|
|
|
|
// GetSelfConsensusState introspects the (self) past historical info at a given height
|
|
// and returns the expected consensus state at that height.
|
|
// TODO: Replace height with *clienttypes.Height once interfaces change
|
|
func (k Keeper) GetSelfConsensusState(ctx sdk.Context, height uint64) (exported.ConsensusState, bool) {
|
|
histInfo, found := k.stakingKeeper.GetHistoricalInfo(ctx, int64(height))
|
|
if !found {
|
|
return nil, false
|
|
}
|
|
|
|
consensusState := &ibctmtypes.ConsensusState{
|
|
Height: types.NewHeight(0, height),
|
|
Timestamp: histInfo.Header.Time,
|
|
Root: commitmenttypes.NewMerkleRoot(histInfo.Header.GetAppHash()),
|
|
NextValidatorsHash: histInfo.Header.NextValidatorsHash,
|
|
}
|
|
return consensusState, true
|
|
}
|
|
|
|
// ValidateSelfClient validates the client parameters for a client of the running chain
|
|
// This function is only used to validate the client state the counterparty stores for this chain
|
|
func (k Keeper) ValidateSelfClient(ctx sdk.Context, clientState exported.ClientState) error {
|
|
tmClient, ok := clientState.(*ibctmtypes.ClientState)
|
|
if !ok {
|
|
return sdkerrors.Wrapf(types.ErrInvalidClient, "client must be a Tendermint client, expected: %T, got: %T",
|
|
&ibctmtypes.ClientState{}, tmClient)
|
|
}
|
|
|
|
if clientState.IsFrozen() {
|
|
return types.ErrClientFrozen
|
|
}
|
|
|
|
if ctx.ChainID() != tmClient.ChainId {
|
|
return sdkerrors.Wrapf(types.ErrInvalidClient, "invalid chain-id. expected: %s, got: %s",
|
|
ctx.ChainID(), tmClient.ChainId)
|
|
}
|
|
|
|
// For now, assume epoch number is zero
|
|
// TODO: Retrieve epoch number from chain-id
|
|
selfHeight := types.NewHeight(0, uint64(ctx.BlockHeight()))
|
|
if tmClient.LatestHeight.GT(selfHeight) {
|
|
return sdkerrors.Wrapf(types.ErrInvalidClient, "client has LatestHeight %d greater than chain height %d",
|
|
tmClient.LatestHeight, ctx.BlockHeight())
|
|
}
|
|
|
|
expectedProofSpecs := commitmenttypes.GetSDKSpecs()
|
|
if !reflect.DeepEqual(expectedProofSpecs, tmClient.ProofSpecs) {
|
|
return sdkerrors.Wrapf(types.ErrInvalidClient, "client has invalid proof specs. expected: %v got: %v",
|
|
expectedProofSpecs, tmClient.ProofSpecs)
|
|
}
|
|
|
|
if err := light.ValidateTrustLevel(tmClient.TrustLevel.ToTendermint()); err != nil {
|
|
return sdkerrors.Wrapf(types.ErrInvalidClient, "trust-level invalid: %v", err)
|
|
}
|
|
|
|
expectedUbdPeriod := k.stakingKeeper.UnbondingTime(ctx)
|
|
if expectedUbdPeriod != tmClient.UnbondingPeriod {
|
|
return sdkerrors.Wrapf(types.ErrInvalidClient, "invalid unbonding period. expected: %s, got: %s",
|
|
expectedUbdPeriod, tmClient.UnbondingPeriod)
|
|
}
|
|
|
|
if tmClient.UnbondingPeriod < tmClient.TrustingPeriod {
|
|
return sdkerrors.Wrapf(types.ErrInvalidClient, "unbonding period must be greater than trusting period. unbonding period (%d) < trusting period (%d)",
|
|
tmClient.UnbondingPeriod, tmClient.TrustingPeriod)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// IterateClients provides an iterator over all stored light client State
|
|
// objects. For each State object, cb will be called. If the cb returns true,
|
|
// the iterator will close and stop.
|
|
func (k Keeper) IterateClients(ctx sdk.Context, cb func(clientID string, cs exported.ClientState) bool) {
|
|
store := ctx.KVStore(k.storeKey)
|
|
iterator := sdk.KVStorePrefixIterator(store, host.KeyClientStorePrefix)
|
|
|
|
defer iterator.Close()
|
|
for ; iterator.Valid(); iterator.Next() {
|
|
keySplit := strings.Split(string(iterator.Key()), "/")
|
|
if keySplit[len(keySplit)-1] != "clientState" {
|
|
continue
|
|
}
|
|
clientState := k.MustUnmarshalClientState(iterator.Value())
|
|
|
|
// key is ibc/{clientid}/clientState
|
|
// Thus, keySplit[1] is clientID
|
|
if cb(keySplit[1], clientState) {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
// GetAllClients returns all stored light client State objects.
|
|
func (k Keeper) GetAllClients(ctx sdk.Context) (states []exported.ClientState) {
|
|
k.IterateClients(ctx, func(_ string, state exported.ClientState) bool {
|
|
states = append(states, state)
|
|
return false
|
|
})
|
|
return states
|
|
}
|
|
|
|
// ClientStore returns isolated prefix store for each client so they can read/write in separate
|
|
// namespace without being able to read/write other client's data
|
|
func (k Keeper) ClientStore(ctx sdk.Context, clientID string) sdk.KVStore {
|
|
// append here is safe, appends within a function won't cause
|
|
// weird side effects when its singlethreaded
|
|
clientPrefix := append([]byte("clients/"+clientID), '/')
|
|
return prefix.NewStore(ctx.KVStore(k.storeKey), clientPrefix)
|
|
}
|