cosmos-sdk/x/slashing/keeper.go

90 lines
3.1 KiB
Go
Raw Normal View History

2018-05-23 13:25:56 -07:00
package slashing
import (
"fmt"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/wire"
"github.com/cosmos/cosmos-sdk/x/stake"
crypto "github.com/tendermint/go-crypto"
)
// Keeper of the slashing store
type Keeper struct {
storeKey sdk.StoreKey
cdc *wire.Codec
stakeKeeper stake.Keeper
// codespace
codespace sdk.CodespaceType
}
// NewKeeper creates a slashing keeper
func NewKeeper(cdc *wire.Codec, key sdk.StoreKey, sk stake.Keeper, codespace sdk.CodespaceType) Keeper {
keeper := Keeper{
storeKey: key,
cdc: cdc,
stakeKeeper: sk,
codespace: codespace,
}
return keeper
}
// handle a validator signing two blocks at the same height
func (k Keeper) handleDoubleSign(ctx sdk.Context, height int64, timestamp int64, pubkey crypto.PubKey) {
logger := ctx.Logger().With("module", "x/slashing")
age := ctx.BlockHeader().Time - timestamp
2018-05-28 15:10:52 -07:00
// Double sign too old
2018-05-23 13:25:56 -07:00
if age > MaxEvidenceAge {
2018-05-25 15:13:29 -07:00
logger.Info(fmt.Sprintf("Ignored double sign from %s at height %d, age of %d past max age of %d", pubkey.Address(), height, age, MaxEvidenceAge))
2018-05-23 13:25:56 -07:00
return
}
2018-05-28 15:10:52 -07:00
// Double sign confirmed
2018-05-25 15:13:29 -07:00
logger.Info(fmt.Sprintf("Confirmed double sign from %s at height %d, age of %d less than max age of %d", pubkey.Address(), height, age, MaxEvidenceAge))
k.stakeKeeper.Slash(ctx, pubkey, height, SlashFractionDoubleSign)
2018-05-23 13:25:56 -07:00
}
// handle a validator signature, must be called once per validator per block
func (k Keeper) handleValidatorSignature(ctx sdk.Context, pubkey crypto.PubKey, signed bool) {
logger := ctx.Logger().With("module", "x/slashing")
height := ctx.BlockHeight()
if !signed {
2018-05-25 15:13:29 -07:00
logger.Info(fmt.Sprintf("Absent validator %s at height %d", pubkey.Address(), height))
2018-05-23 13:25:56 -07:00
}
address := pubkey.Address()
2018-05-28 15:10:52 -07:00
// Local index, so counts blocks validator *should* have signed
2018-05-28 17:35:42 -07:00
// Will use the 0-value default signing info if not present
2018-05-23 13:52:56 -07:00
signInfo, _ := k.getValidatorSigningInfo(ctx, address)
2018-05-25 17:05:46 -07:00
index := signInfo.IndexOffset % SignedBlocksWindow
signInfo.IndexOffset++
2018-05-28 15:10:52 -07:00
// Update signed block bit array & counter
2018-05-23 13:25:56 -07:00
previous := k.getValidatorSigningBitArray(ctx, address, index)
2018-05-28 17:48:29 -07:00
if previous == signed {
// No need to update counter
} else if previous && !signed {
// Signed => unsigned, decrement counter
2018-05-23 13:25:56 -07:00
k.setValidatorSigningBitArray(ctx, address, index, false)
signInfo.SignedBlocksCounter--
} else if !previous && signed {
2018-05-28 17:48:29 -07:00
// Unsigned => signed, increment counter
2018-05-23 13:25:56 -07:00
k.setValidatorSigningBitArray(ctx, address, index, true)
signInfo.SignedBlocksCounter++
}
2018-05-28 15:10:52 -07:00
2018-05-23 13:25:56 -07:00
minHeight := signInfo.StartHeight + SignedBlocksWindow
if height > minHeight && signInfo.SignedBlocksCounter < MinSignedPerWindow {
2018-05-28 15:10:52 -07:00
// Downtime confirmed, slash, revoke, and jail the validator
2018-05-25 15:13:29 -07:00
logger.Info(fmt.Sprintf("Validator %s past min height of %d and below signed blocks threshold of %d", pubkey.Address(), minHeight, MinSignedPerWindow))
k.stakeKeeper.Slash(ctx, pubkey, height, SlashFractionDowntime)
2018-05-28 13:08:13 -07:00
k.stakeKeeper.Revoke(ctx, pubkey)
signInfo.JailedUntil = ctx.BlockHeader().Time + DowntimeUnbondDuration
2018-05-23 13:25:56 -07:00
}
2018-05-28 17:35:42 -07:00
// Set the updated signing info
k.setValidatorSigningInfo(ctx, address, signInfo)
2018-05-23 13:25:56 -07:00
}