-
Notifications
You must be signed in to change notification settings - Fork 129
/
proposal.go
650 lines (560 loc) · 24.6 KB
/
proposal.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
package keeper
import (
"fmt"
"strconv"
"time"
clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types"
channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types"
commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types"
ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint"
errorsmod "cosmossdk.io/errors"
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
abci "github.com/cometbft/cometbft/abci/types"
tmtypes "github.com/cometbft/cometbft/types"
"github.com/cosmos/interchain-security/v4/x/ccv/provider/types"
ccv "github.com/cosmos/interchain-security/v4/x/ccv/types"
)
// HandleConsumerAdditionProposal will receive the consumer chain's client state from the proposal.
// If the client can be successfully created in a cached context, it stores the proposal as a pending proposal.
//
// Note: This method implements SpawnConsumerChainProposalHandler in spec.
// See: https://github.com/cosmos/ibc/blob/main/spec/app/ics-028-cross-chain-validation/methods.md#ccv-pcf-hcaprop1
// Spec tag: [CCV-PCF-HCAPROP.1]
func (k Keeper) HandleConsumerAdditionProposal(ctx sdk.Context, p *types.ConsumerAdditionProposal) error {
// verify the consumer addition proposal execution
// in cached context and discard the cached writes
if _, _, err := k.CreateConsumerClientInCachedCtx(ctx, *p); err != nil {
return err
}
k.SetPendingConsumerAdditionProp(ctx, p)
k.Logger(ctx).Info("consumer addition proposal enqueued",
"chainID", p.ChainId,
"title", p.Title,
"spawn time", p.SpawnTime.UTC(),
)
return nil
}
// CreateConsumerClient will create the CCV client for the given consumer chain. The CCV channel must be built
// on top of the CCV client to ensure connection with the right consumer chain.
//
// See: https://github.com/cosmos/ibc/blob/main/spec/app/ics-028-cross-chain-validation/methods.md#ccv-pcf-crclient1
// Spec tag: [CCV-PCF-CRCLIENT.1]
func (k Keeper) CreateConsumerClient(ctx sdk.Context, prop *types.ConsumerAdditionProposal) error {
chainID := prop.ChainId
// check that a client for this chain does not exist
if _, found := k.GetConsumerClientId(ctx, chainID); found {
return errorsmod.Wrap(types.ErrDuplicateConsumerChain,
fmt.Sprintf("cannot create client for existent consumer chain: %s", chainID))
}
// Consumers start out with the unbonding period from the consumer addition prop
consumerUnbondingPeriod := prop.UnbondingPeriod
// Create client state by getting template client from parameters and filling in zeroed fields from proposal.
clientState := k.GetTemplateClient(ctx)
clientState.ChainId = chainID
clientState.LatestHeight = prop.InitialHeight
trustPeriod, err := ccv.CalculateTrustPeriod(consumerUnbondingPeriod, k.GetTrustingPeriodFraction(ctx))
if err != nil {
return err
}
clientState.TrustingPeriod = trustPeriod
clientState.UnbondingPeriod = consumerUnbondingPeriod
consumerGen, validatorSetHash, err := k.MakeConsumerGenesis(ctx, prop)
if err != nil {
return err
}
err = k.SetConsumerGenesis(ctx, chainID, consumerGen)
if err != nil {
return err
}
// Create consensus state
consensusState := ibctmtypes.NewConsensusState(
ctx.BlockTime(),
commitmenttypes.NewMerkleRoot([]byte(ibctmtypes.SentinelRoot)),
validatorSetHash, // use the hash of the updated initial valset
)
clientID, err := k.clientKeeper.CreateClient(ctx, clientState, consensusState)
if err != nil {
return err
}
k.SetConsumerClientId(ctx, chainID, clientID)
// add the init timeout timestamp for this consumer chain
ts := ctx.BlockTime().Add(k.GetParams(ctx).InitTimeoutPeriod)
k.SetInitTimeoutTimestamp(ctx, chainID, uint64(ts.UnixNano()))
k.Logger(ctx).Info("consumer chain registered (client created)",
"chainID", chainID,
"clientID", clientID,
)
ctx.EventManager().EmitEvent(
sdk.NewEvent(
types.EventTypeConsumerClientCreated,
sdk.NewAttribute(sdk.AttributeKeyModule, types.ModuleName),
sdk.NewAttribute(ccv.AttributeChainID, chainID),
sdk.NewAttribute(clienttypes.AttributeKeyClientID, clientID),
sdk.NewAttribute(types.AttributeInitialHeight, prop.InitialHeight.String()),
sdk.NewAttribute(types.AttributeInitializationTimeout, strconv.Itoa(int(ts.UnixNano()))),
sdk.NewAttribute(types.AttributeTrustingPeriod, clientState.TrustingPeriod.String()),
sdk.NewAttribute(types.AttributeUnbondingPeriod, clientState.UnbondingPeriod.String()),
),
)
return nil
}
// HandleConsumerRemovalProposal stops a consumer chain and released the outstanding unbonding operations.
// If the consumer can be successfully stopped in a cached context, it stores the proposal as a pending proposal.
//
// This method implements StopConsumerChainProposalHandler from spec.
// See: https://github.com/cosmos/ibc/blob/main/spec/app/ics-028-cross-chain-validation/methods.md#ccv-pcf-hcrprop1
// Spec tag: [CCV-PCF-HCRPROP.1]
func (k Keeper) HandleConsumerRemovalProposal(ctx sdk.Context, p *types.ConsumerRemovalProposal) error {
// verify the consumer removal proposal execution
// in cached context and discard the cached writes
if _, _, err := k.StopConsumerChainInCachedCtx(ctx, *p); err != nil {
return err
}
k.SetPendingConsumerRemovalProp(ctx, p)
k.Logger(ctx).Info("consumer removal proposal enqueued",
"chainID", p.ChainId,
"title", p.Title,
"stop time", p.StopTime.UTC(),
)
return nil
}
// StopConsumerChain cleans up the states for the given consumer chain ID and
// completes the outstanding unbonding operations on the consumer chain.
//
// This method implements StopConsumerChain from spec.
// See: https://github.com/cosmos/ibc/blob/main/spec/app/ics-028-cross-chain-validation/methods.md#ccv-pcf-stcc1
// Spec tag: [CCV-PCF-STCC.1]
func (k Keeper) StopConsumerChain(ctx sdk.Context, chainID string, closeChan bool) (err error) {
// check that a client for chainID exists
if _, found := k.GetConsumerClientId(ctx, chainID); !found {
return errorsmod.Wrap(types.ErrConsumerChainNotFound,
fmt.Sprintf("cannot stop non-existent consumer chain: %s", chainID))
}
// clean up states
k.DeleteConsumerClientId(ctx, chainID)
k.DeleteConsumerGenesis(ctx, chainID)
k.DeleteInitTimeoutTimestamp(ctx, chainID)
// Note: this call panics if the key assignment state is invalid
k.DeleteKeyAssignments(ctx, chainID)
// close channel and delete the mappings between chain ID and channel ID
if channelID, found := k.GetChainToChannel(ctx, chainID); found {
if closeChan {
// Close the channel for the given channel ID on the condition
// that the channel exists and isn't already in the CLOSED state
channel, found := k.channelKeeper.GetChannel(ctx, ccv.ProviderPortID, channelID)
if found && channel.State != channeltypes.CLOSED {
err := k.chanCloseInit(ctx, channelID)
if err != nil {
k.Logger(ctx).Error("channel to consumer chain could not be closed",
"chainID", chainID,
"channelID", channelID,
"error", err.Error(),
)
}
}
}
k.DeleteChainToChannel(ctx, chainID)
k.DeleteChannelToChain(ctx, channelID)
// delete VSC send timestamps
k.DeleteVscSendTimestampsForConsumer(ctx, chainID)
}
// delete consumer commission rate
provAddrs := k.GetAllCommissionRateValidators(ctx, chainID)
for _, addr := range provAddrs {
k.DeleteConsumerCommissionRate(ctx, chainID, addr)
}
k.DeleteInitChainHeight(ctx, chainID)
k.DeleteSlashAcks(ctx, chainID)
k.DeletePendingVSCPackets(ctx, chainID)
// release unbonding operations
for _, unbondingOpsIndex := range k.GetAllUnbondingOpIndexes(ctx, chainID) {
// iterate over the unbonding operations for the current VSC ID
var maturedIds []uint64
for _, id := range unbondingOpsIndex.UnbondingOpIds {
// Remove consumer chain ID from unbonding op record.
// Note that RemoveConsumerFromUnbondingOp cannot panic here
// as it is expected that for all UnbondingOpIds in every
// VscUnbondingOps returned by GetAllUnbondingOpIndexes
// there is an unbonding op in store that can be retrieved
// via via GetUnbondingOp.
if k.RemoveConsumerFromUnbondingOp(ctx, id, chainID) {
// Store id of matured unbonding op for later completion of unbonding in staking module
maturedIds = append(maturedIds, id)
}
}
k.AppendMaturedUnbondingOps(ctx, maturedIds)
k.DeleteUnbondingOpIndex(ctx, chainID, unbondingOpsIndex.VscId)
}
k.DeleteTopN(ctx, chainID)
k.Logger(ctx).Info("consumer chain removed from provider", "chainID", chainID)
return nil
}
// MakeConsumerGenesis constructs the consumer CCV module part of the genesis state.
func (k Keeper) MakeConsumerGenesis(
ctx sdk.Context,
prop *types.ConsumerAdditionProposal,
) (gen ccv.ConsumerGenesisState, nextValidatorsHash []byte, err error) {
chainID := prop.ChainId
providerUnbondingPeriod := k.stakingKeeper.UnbondingTime(ctx)
height := clienttypes.GetSelfHeight(ctx)
clientState := k.GetTemplateClient(ctx)
// this is the counter party chain ID for the consumer
clientState.ChainId = ctx.ChainID()
// this is the latest height the client was updated at, i.e.,
// the height of the latest consensus state (see below)
clientState.LatestHeight = height
trustPeriod, err := ccv.CalculateTrustPeriod(providerUnbondingPeriod, k.GetTrustingPeriodFraction(ctx))
if err != nil {
return gen, nil, errorsmod.Wrapf(sdkerrors.ErrInvalidHeight, "error %s calculating trusting_period for: %s", err, height)
}
clientState.TrustingPeriod = trustPeriod
clientState.UnbondingPeriod = providerUnbondingPeriod
consState, err := k.clientKeeper.GetSelfConsensusState(ctx, height)
if err != nil {
return gen, nil, errorsmod.Wrapf(clienttypes.ErrConsensusStateNotFound, "error %s getting self consensus state for: %s", err, height)
}
var lastPowers []stakingtypes.LastValidatorPower
k.stakingKeeper.IterateLastValidatorPowers(ctx, func(addr sdk.ValAddress, power int64) (stop bool) {
lastPowers = append(lastPowers, stakingtypes.LastValidatorPower{Address: addr.String(), Power: power})
return false
})
var bondedValidators []stakingtypes.Validator
initialUpdates := []abci.ValidatorUpdate{}
for _, p := range lastPowers {
addr, err := sdk.ValAddressFromBech32(p.Address)
if err != nil {
return gen, nil, err
}
val, found := k.stakingKeeper.GetValidator(ctx, addr)
if !found {
return gen, nil, errorsmod.Wrapf(stakingtypes.ErrNoValidatorFound, "error getting validator from LastValidatorPowers: %s", err)
}
tmProtoPk, err := val.TmConsPublicKey()
if err != nil {
return gen, nil, err
}
initialUpdates = append(initialUpdates, abci.ValidatorUpdate{
PubKey: tmProtoPk,
Power: p.Power,
})
// gather all the bonded validators in order to construct the consumer validator set for consumer chain `chainID`
bondedValidators = append(bondedValidators, val)
}
if prop.Top_N > 0 {
// in a Top-N chain, we automatically opt in all validators that belong to the top N
minPower := k.ComputeMinPowerToOptIn(ctx, bondedValidators, prop.Top_N)
k.OptInTopNValidators(ctx, chainID, bondedValidators, minPower)
}
nextValidators := k.ComputeNextEpochConsumerValSet(ctx, chainID, bondedValidators,
func(validator stakingtypes.Validator) bool {
return k.ShouldConsiderOnlyOptIn(ctx, chainID, validator)
})
k.SetConsumerValSet(ctx, chainID, nextValidators)
// get the initial updates with the latest set consumer public keys
initialUpdatesWithConsumerKeys := DiffValidators([]types.ConsumerValidator{}, nextValidators)
// Get a hash of the consumer validator set from the update with applied consumer assigned keys
updatesAsValSet, err := tmtypes.PB2TM.ValidatorUpdates(initialUpdatesWithConsumerKeys)
if err != nil {
return gen, nil, fmt.Errorf("unable to create validator set from updates computed from key assignment in MakeConsumerGenesis: %s", err)
}
hash := tmtypes.NewValidatorSet(updatesAsValSet).Hash()
consumerGenesisParams := ccv.NewParams(
true,
prop.BlocksPerDistributionTransmission,
prop.DistributionTransmissionChannel,
"", // providerFeePoolAddrStr,
prop.CcvTimeoutPeriod,
prop.TransferTimeoutPeriod,
prop.ConsumerRedistributionFraction,
prop.HistoricalEntries,
prop.UnbondingPeriod,
"0.05",
[]string{},
[]string{},
ccv.DefaultRetryDelayPeriod,
)
gen = *ccv.NewInitialConsumerGenesisState(
clientState,
consState.(*ibctmtypes.ConsensusState),
initialUpdatesWithConsumerKeys,
consumerGenesisParams,
)
return gen, hash, nil
}
// SetPendingConsumerAdditionProp stores a pending consumer addition proposal.
//
// Note that the pending consumer addition proposals are stored under keys with
// the following format: PendingCAPBytePrefix | spawnTime | chainID
// Thus, if multiple consumer addition proposal for the same chain will pass at
// the same time, then only the last one will be stored.
func (k Keeper) SetPendingConsumerAdditionProp(ctx sdk.Context, prop *types.ConsumerAdditionProposal) {
store := ctx.KVStore(k.storeKey)
bz, err := prop.Marshal()
if err != nil {
// An error here would indicate something is very wrong
panic(fmt.Errorf("failed to marshal consumer addition proposal: %w", err))
}
store.Set(types.PendingCAPKey(prop.SpawnTime, prop.ChainId), bz)
}
// GetPendingConsumerAdditionProp retrieves a pending consumer addition proposal
// by spawn time and chain id.
//
// Note: this method is only used in testing
func (k Keeper) GetPendingConsumerAdditionProp(ctx sdk.Context, spawnTime time.Time,
chainID string,
) (prop types.ConsumerAdditionProposal, found bool) {
store := ctx.KVStore(k.storeKey)
bz := store.Get(types.PendingCAPKey(spawnTime, chainID))
if bz == nil {
return prop, false
}
err := prop.Unmarshal(bz)
if err != nil {
// An error here would indicate something is very wrong,
// the ConsumerAdditionProp is assumed to be correctly serialized in SetPendingConsumerAdditionProp.
panic(fmt.Errorf("failed to unmarshal consumer addition proposal: %w", err))
}
return prop, true
}
// BeginBlockInit iterates over the pending consumer addition proposals in order, and creates
// clients for props in which the spawn time has passed. Executed proposals are deleted.
//
// See: https://github.com/cosmos/ibc/blob/main/spec/app/ics-028-cross-chain-validation/methods.md#ccv-pcf-bblock-init1
// Spec tag:[CCV-PCF-BBLOCK-INIT.1]
func (k Keeper) BeginBlockInit(ctx sdk.Context) {
propsToExecute := k.GetConsumerAdditionPropsToExecute(ctx)
for _, prop := range propsToExecute {
// create consumer client in a cached context to handle errors
cachedCtx, writeFn, err := k.CreateConsumerClientInCachedCtx(ctx, prop)
if err != nil {
// drop the proposal
ctx.Logger().Info("consumer client could not be created: %w", err)
continue
}
// Only set Top N at the moment a chain starts. If we were to do this earlier (e.g., during the proposal),
// then someone could create a bogus ConsumerAdditionProposal to override the Top N for a specific chain.
k.SetTopN(ctx, prop.ChainId, prop.Top_N)
// The cached context is created with a new EventManager so we merge the event
// into the original context
ctx.EventManager().EmitEvents(cachedCtx.EventManager().Events())
// write cache
writeFn()
k.Logger(ctx).Info("executed consumer addition proposal",
"chainID", prop.ChainId,
"title", prop.Title,
"spawn time", prop.SpawnTime.UTC(),
)
}
// delete the executed proposals
k.DeletePendingConsumerAdditionProps(ctx, propsToExecute...)
}
// GetConsumerAdditionPropsToExecute returns the pending consumer addition proposals
// that are ready to be executed, i.e., consumer clients to be created.
// A prop is included in the returned list if its proposed spawn time has passed.
//
// Note: this method is split out from BeginBlockInit to be easily unit tested.
func (k Keeper) GetConsumerAdditionPropsToExecute(ctx sdk.Context) (propsToExecute []types.ConsumerAdditionProposal) {
store := ctx.KVStore(k.storeKey)
iterator := sdk.KVStorePrefixIterator(store, []byte{types.PendingCAPBytePrefix})
defer iterator.Close()
for ; iterator.Valid(); iterator.Next() {
var prop types.ConsumerAdditionProposal
err := prop.Unmarshal(iterator.Value())
if err != nil {
// An error here would indicate something is very wrong,
// the ConsumerAdditionProp is assumed to be correctly serialized in SetPendingConsumerAdditionProp.
panic(fmt.Errorf("failed to unmarshal consumer addition proposal: %w", err))
}
if !ctx.BlockTime().Before(prop.SpawnTime) {
propsToExecute = append(propsToExecute, prop)
} else {
break
}
}
return propsToExecute
}
// GetAllPendingConsumerAdditionProps gets all pending consumer addition proposals.
//
// Note that the pending consumer addition proposals are stored under keys with the following format:
// PendingCAPBytePrefix | spawnTime.UnixNano() | chainID
// Thus, the returned array is in spawnTime order. If two proposals have the same spawnTime,
// then they are ordered by chainID.
func (k Keeper) GetAllPendingConsumerAdditionProps(ctx sdk.Context) (props []types.ConsumerAdditionProposal) {
store := ctx.KVStore(k.storeKey)
iterator := sdk.KVStorePrefixIterator(store, []byte{types.PendingCAPBytePrefix})
defer iterator.Close()
for ; iterator.Valid(); iterator.Next() {
var prop types.ConsumerAdditionProposal
err := prop.Unmarshal(iterator.Value())
if err != nil {
// An error here would indicate something is very wrong,
// the ConsumerAdditionProp is assumed to be correctly serialized in SetPendingConsumerAdditionProp.
panic(fmt.Errorf("failed to unmarshal consumer addition proposal: %w", err))
}
props = append(props, prop)
}
return props
}
// DeletePendingConsumerAdditionProps deletes the given consumer addition proposals
func (k Keeper) DeletePendingConsumerAdditionProps(ctx sdk.Context, proposals ...types.ConsumerAdditionProposal) {
store := ctx.KVStore(k.storeKey)
for _, p := range proposals {
store.Delete(types.PendingCAPKey(p.SpawnTime, p.ChainId))
}
}
// SetPendingConsumerRemovalProp stores a pending consumer removal proposal.
//
// Note that the pending removal addition proposals are stored under keys with
// the following format: PendingCRPBytePrefix | stopTime | chainID
// Thus, if multiple removal addition proposal for the same chain will pass at
// the same time, then only the last one will be stored.
func (k Keeper) SetPendingConsumerRemovalProp(ctx sdk.Context, prop *types.ConsumerRemovalProposal) {
store := ctx.KVStore(k.storeKey)
bz, err := prop.Marshal()
if err != nil {
// An error here would indicate something is very wrong
panic(fmt.Errorf("failed to marshal consumer removal proposal: %w", err))
}
store.Set(types.PendingCRPKey(prop.StopTime, prop.ChainId), bz)
}
// PendingConsumerRemovalPropExists checks whether a pending consumer removal proposal
// exists for the given consumer chain ID and stopTime
//
// Note: this method is only used in testing
func (k Keeper) PendingConsumerRemovalPropExists(ctx sdk.Context, chainID string, timestamp time.Time) bool {
store := ctx.KVStore(k.storeKey)
bz := store.Get(types.PendingCRPKey(timestamp, chainID))
return bz != nil
}
// DeletePendingConsumerRemovalProps deletes the given pending consumer removal proposals.
// This method should be called once the proposal has been acted upon.
func (k Keeper) DeletePendingConsumerRemovalProps(ctx sdk.Context, proposals ...types.ConsumerRemovalProposal) {
store := ctx.KVStore(k.storeKey)
for _, p := range proposals {
store.Delete(types.PendingCRPKey(p.StopTime, p.ChainId))
}
}
// BeginBlockCCR iterates over the pending consumer removal proposals
// in order and stop/removes the chain if the stop time has passed,
// otherwise it will break out of loop and return. Executed proposals are deleted.
//
// See: https://github.com/cosmos/ibc/blob/main/spec/app/ics-028-cross-chain-validation/methods.md#ccv-pcf-bblock-ccr1
// Spec tag: [CCV-PCF-BBLOCK-CCR.1]
func (k Keeper) BeginBlockCCR(ctx sdk.Context) {
propsToExecute := k.GetConsumerRemovalPropsToExecute(ctx)
for _, prop := range propsToExecute {
// stop consumer chain in a cached context to handle errors
cachedCtx, writeFn, err := k.StopConsumerChainInCachedCtx(ctx, prop)
if err != nil {
// drop the proposal
ctx.Logger().Info("consumer chain could not be stopped: %w", err)
continue
}
// The cached context is created with a new EventManager so we merge the event
// into the original context
ctx.EventManager().EmitEvents(cachedCtx.EventManager().Events())
// write cache
writeFn()
k.Logger(ctx).Info("executed consumer removal proposal",
"chainID", prop.ChainId,
"title", prop.Title,
"stop time", prop.StopTime.UTC(),
)
}
// delete the executed proposals
k.DeletePendingConsumerRemovalProps(ctx, propsToExecute...)
}
// GetConsumerRemovalPropsToExecute iterates over the pending consumer removal proposals
// and returns an ordered list of consumer removal proposals to be executed,
// ie. consumer chains to be stopped and removed from the provider chain.
// A prop is included in the returned list if its proposed stop time has passed.
//
// Note: this method is split out from BeginBlockCCR to be easily unit tested.
func (k Keeper) GetConsumerRemovalPropsToExecute(ctx sdk.Context) []types.ConsumerRemovalProposal {
// store the (to be) executed consumer removal proposals in order
propsToExecute := []types.ConsumerRemovalProposal{}
store := ctx.KVStore(k.storeKey)
iterator := sdk.KVStorePrefixIterator(store, []byte{types.PendingCRPBytePrefix})
defer iterator.Close()
for ; iterator.Valid(); iterator.Next() {
var prop types.ConsumerRemovalProposal
err := prop.Unmarshal(iterator.Value())
if err != nil {
// An error here would indicate something is very wrong,
// the ConsumerRemovalProposal is assumed to be correctly serialized in SetPendingConsumerRemovalProp.
panic(fmt.Errorf("failed to unmarshal consumer removal proposal: %w", err))
}
// If current block time is equal to or after stop time, proposal is ready to be executed
if !ctx.BlockTime().Before(prop.StopTime) {
propsToExecute = append(propsToExecute, prop)
} else {
// No more proposals to check, since they're stored/ordered by timestamp.
break
}
}
return propsToExecute
}
// GetAllPendingConsumerRemovalProps iterates through the pending consumer removal proposals.
//
// Note that the pending consumer removal proposals are stored under keys with the following format:
// PendingCRPBytePrefix | stopTime.UnixNano() | chainID
// Thus, the returned array is in stopTime order.
func (k Keeper) GetAllPendingConsumerRemovalProps(ctx sdk.Context) (props []types.ConsumerRemovalProposal) {
store := ctx.KVStore(k.storeKey)
iterator := sdk.KVStorePrefixIterator(store, []byte{types.PendingCRPBytePrefix})
defer iterator.Close()
for ; iterator.Valid(); iterator.Next() {
var prop types.ConsumerRemovalProposal
err := prop.Unmarshal(iterator.Value())
if err != nil {
// An error here would indicate something is very wrong,
// the ConsumerRemovalProposal is assumed to be correctly serialized in SetPendingConsumerRemovalProp.
panic(fmt.Errorf("failed to unmarshal consumer removal proposal: %w", err))
}
props = append(props, prop)
}
return props
}
// CreateConsumerClientInCachedCtx creates a consumer client
// from a given consumer addition proposal in a cached context
func (k Keeper) CreateConsumerClientInCachedCtx(ctx sdk.Context, p types.ConsumerAdditionProposal) (cc sdk.Context, writeCache func(), err error) {
cc, writeCache = ctx.CacheContext()
err = k.CreateConsumerClient(cc, &p)
return
}
// StopConsumerChainInCachedCtx stop a consumer chain
// from a given consumer removal proposal in a cached context
func (k Keeper) StopConsumerChainInCachedCtx(ctx sdk.Context, p types.ConsumerRemovalProposal) (cc sdk.Context, writeCache func(), err error) {
cc, writeCache = ctx.CacheContext()
err = k.StopConsumerChain(cc, p.ChainId, true)
return
}
func (k Keeper) HandleConsumerRewardDenomProposal(ctx sdk.Context, p *types.ChangeRewardDenomsProposal) error {
for _, denomToAdd := range p.DenomsToAdd {
// Log error and move on if one of the denoms is already registered
if k.ConsumerRewardDenomExists(ctx, denomToAdd) {
ctx.Logger().Error("denom %s already registered", denomToAdd)
continue
}
k.SetConsumerRewardDenom(ctx, denomToAdd)
ctx.EventManager().EmitEvent(sdk.NewEvent(
types.EventTypeAddConsumerRewardDenom,
sdk.NewAttribute(types.AttributeConsumerRewardDenom, denomToAdd),
))
}
for _, denomToRemove := range p.DenomsToRemove {
// Log error and move on if one of the denoms is not registered
if !k.ConsumerRewardDenomExists(ctx, denomToRemove) {
ctx.Logger().Error("denom %s not registered", denomToRemove)
continue
}
k.DeleteConsumerRewardDenom(ctx, denomToRemove)
ctx.EventManager().EmitEvent(sdk.NewEvent(
types.EventTypeRemoveConsumerRewardDenom,
sdk.NewAttribute(types.AttributeConsumerRewardDenom, denomToRemove),
))
}
return nil
}