forked from cosmos/interchain-security
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ibc_module.go
336 lines (299 loc) · 10.4 KB
/
ibc_module.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
package provider
import (
"fmt"
"strconv"
channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types"
porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types"
host "github.com/cosmos/ibc-go/v7/modules/core/24-host"
ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported"
errorsmod "cosmossdk.io/errors"
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types"
"github.com/cosmos/interchain-security/v4/x/ccv/provider/keeper"
providertypes "github.com/cosmos/interchain-security/v4/x/ccv/provider/types"
ccv "github.com/cosmos/interchain-security/v4/x/ccv/types"
)
// OnChanOpenInit implements the IBCModule interface
//
// See: https://github.com/cosmos/ibc/blob/main/spec/app/ics-028-cross-chain-validation/methods.md#ccv-pcf-coinit1
// Spec Tag: [CCV-PCF-COINIT.1]
func (am AppModule) OnChanOpenInit(
ctx sdk.Context,
order channeltypes.Order,
connectionHops []string,
portID string,
channelID string,
channelCap *capabilitytypes.Capability,
counterparty channeltypes.Counterparty,
version string,
) (string, error) {
return version, errorsmod.Wrap(ccv.ErrInvalidChannelFlow, "channel handshake must be initiated by consumer chain")
}
// OnChanOpenTry implements the IBCModule interface
//
// See: https://github.com/cosmos/ibc/blob/main/spec/app/ics-028-cross-chain-validation/methods.md#ccv-pcf-cotry1
// Spec tag: [CCV-PCF-COTRY.1]
func (am AppModule) OnChanOpenTry(
ctx sdk.Context,
order channeltypes.Order,
connectionHops []string,
portID,
channelID string,
chanCap *capabilitytypes.Capability,
counterparty channeltypes.Counterparty,
counterpartyVersion string,
) (metadata string, err error) {
// Validate parameters
if err := validateCCVChannelParams(
ctx, am.keeper, order, portID,
); err != nil {
return "", err
}
// ensure the counterparty port ID matches the expected consumer port ID
if counterparty.PortId != ccv.ConsumerPortID {
return "", errorsmod.Wrapf(porttypes.ErrInvalidPort,
"invalid counterparty port: %s, expected %s", counterparty.PortId, ccv.ConsumerPortID)
}
// ensure the counter party version matches the expected version
if counterpartyVersion != ccv.Version {
return "", errorsmod.Wrapf(
ccv.ErrInvalidVersion, "invalid counterparty version: got: %s, expected %s",
counterpartyVersion, ccv.Version)
}
// Claim channel capability
if err := am.keeper.ClaimCapability(
ctx, chanCap, host.ChannelCapabilityPath(portID, channelID),
); err != nil {
return "", err
}
if err := am.keeper.VerifyConsumerChain(
ctx, channelID, connectionHops,
); err != nil {
return "", err
}
md := ccv.HandshakeMetadata{
// NOTE that the fee pool collector address string provided to the
// the consumer chain must be excluded from the blocked addresses
// blacklist or all all ibc-transfers from the consumer chain to the
// provider chain will fail
ProviderFeePoolAddr: am.keeper.GetConsumerRewardsPoolAddressStr(ctx),
Version: ccv.Version,
}
mdBz, err := (&md).Marshal()
if err != nil {
return "", errorsmod.Wrapf(ccv.ErrInvalidHandshakeMetadata,
"error marshalling ibc-try metadata: %v", err)
}
return string(mdBz), nil
}
// validateCCVChannelParams validates a ccv channel
func validateCCVChannelParams(
ctx sdk.Context,
keeper *keeper.Keeper,
order channeltypes.Order,
portID string,
) error {
if order != channeltypes.ORDERED {
return errorsmod.Wrapf(channeltypes.ErrInvalidChannelOrdering, "expected %s channel, got %s ", channeltypes.ORDERED, order)
}
// the port ID must match the port ID the CCV module is bounded to
boundPort := keeper.GetPort(ctx)
if boundPort != portID {
return errorsmod.Wrapf(porttypes.ErrInvalidPort, "invalid port: %s, expected %s", portID, boundPort)
}
return nil
}
// OnChanOpenAck implements the IBCModule interface
//
// See: https://github.com/cosmos/ibc/blob/main/spec/app/ics-028-cross-chain-validation/methods.md#ccv-pcf-coack1
// Spec tag: [CCV-PCF-COACK.1]
func (am AppModule) OnChanOpenAck(
ctx sdk.Context,
portID,
channelID string,
counterpartyChannelID string,
counterpartyVersion string,
) error {
return errorsmod.Wrap(ccv.ErrInvalidChannelFlow, "channel handshake must be initiated by consumer chain")
}
// OnChanOpenConfirm implements the IBCModule interface
//
// See: https://github.com/cosmos/ibc/blob/main/spec/app/ics-028-cross-chain-validation/methods.md#ccv-pcf-coconfirm1
// Spec tag: [CCV-PCF-COCONFIRM.1]
func (am AppModule) OnChanOpenConfirm(
ctx sdk.Context,
portID,
channelID string,
) error {
err := am.keeper.SetConsumerChain(ctx, channelID)
if err != nil {
return err
}
return nil
}
// OnChanCloseInit implements the IBCModule interface
func (am AppModule) OnChanCloseInit(
ctx sdk.Context,
portID,
channelID string,
) error {
// Disallow user-initiated channel closing for provider channels
return errorsmod.Wrap(sdkerrors.ErrInvalidRequest, "user cannot close channel")
}
// OnChanCloseConfirm implements the IBCModule interface
func (am AppModule) OnChanCloseConfirm(
ctx sdk.Context,
portID,
channelID string,
) error {
return nil
}
// OnRecvPacket implements the IBCModule interface. A successful acknowledgement
// is returned if the packet data is successfully decoded and the receive application
// logic returns without error.
func (am AppModule) OnRecvPacket(
ctx sdk.Context,
packet channeltypes.Packet,
_ sdk.AccAddress,
) ibcexported.Acknowledgement {
logger := am.keeper.Logger(ctx)
ack := channeltypes.NewResultAcknowledgement([]byte{byte(1)})
var ackErr error
consumerPacket, err := UnmarshalConsumerPacket(packet)
if err != nil {
ackErr = errorsmod.Wrapf(sdkerrors.ErrInvalidType, "cannot unmarshal ConsumerPacket data")
logger.Error(fmt.Sprintf("%s sequence %d", ackErr.Error(), packet.Sequence))
ack = channeltypes.NewErrorAcknowledgement(ackErr)
}
eventAttributes := []sdk.Attribute{
sdk.NewAttribute(sdk.AttributeKeyModule, providertypes.ModuleName),
}
// only attempt the application logic if the packet data
// was successfully decoded
if ack.Success() {
var err error
switch consumerPacket.Type {
case ccv.VscMaturedPacket:
// handle VSCMaturedPacket
data := *consumerPacket.GetVscMaturedPacketData()
err = am.keeper.OnRecvVSCMaturedPacket(ctx, packet, data)
if err == nil {
logger.Info("successfully handled VSCMaturedPacket", "sequence", packet.Sequence)
eventAttributes = append(eventAttributes, sdk.NewAttribute(ccv.AttributeValSetUpdateID, strconv.Itoa(int(data.ValsetUpdateId))))
}
case ccv.SlashPacket:
// handle SlashPacket
var ackResult ccv.PacketAckResult
data := *consumerPacket.GetSlashPacketData()
ackResult, err = am.keeper.OnRecvSlashPacket(ctx, packet, data)
if err == nil {
ack = channeltypes.NewResultAcknowledgement(ackResult)
logger.Info("successfully handled SlashPacket", "sequence", packet.Sequence)
eventAttributes = append(eventAttributes, sdk.NewAttribute(ccv.AttributeValSetUpdateID, strconv.Itoa(int(data.ValsetUpdateId))))
}
default:
err = fmt.Errorf("invalid consumer packet type: %q", consumerPacket.Type)
}
if err != nil {
ack = channeltypes.NewErrorAcknowledgement(err)
ackErr = err
logger.Error(fmt.Sprintf("%s sequence %d", ackErr.Error(), packet.Sequence))
}
}
eventAttributes = append(eventAttributes, sdk.NewAttribute(ccv.AttributeKeyAckSuccess, fmt.Sprintf("%t", ack.Success())))
if ackErr != nil {
eventAttributes = append(eventAttributes, sdk.NewAttribute(ccv.AttributeKeyAckError, ackErr.Error()))
}
ctx.EventManager().EmitEvent(
sdk.NewEvent(
ccv.EventTypePacket,
eventAttributes...,
),
)
// NOTE: acknowledgement will be written synchronously during IBC handler execution.
return ack
}
func UnmarshalConsumerPacket(packet channeltypes.Packet) (consumerPacket ccv.ConsumerPacketData, err error) {
return UnmarshalConsumerPacketData(packet.GetData())
}
func UnmarshalConsumerPacketData(packetData []byte) (consumerPacket ccv.ConsumerPacketData, err error) {
// First try unmarshaling into ccv.ConsumerPacketData type
if err := ccv.ModuleCdc.UnmarshalJSON(packetData, &consumerPacket); err != nil {
// If failed, packet should be a v1 slash packet, retry for ConsumerPacketDataV1 packet type
var v1Packet ccv.ConsumerPacketDataV1
errV1 := ccv.ModuleCdc.UnmarshalJSON(packetData, &v1Packet)
if errV1 != nil {
// If neither worked, return error
return ccv.ConsumerPacketData{}, errV1
}
// VSC matured packets should not be unmarshaled as v1 packets
if v1Packet.Type == ccv.VscMaturedPacket {
return ccv.ConsumerPacketData{}, fmt.Errorf("VSC matured packets should be correctly unmarshaled")
}
// Convert from v1 packet type
consumerPacket = ccv.ConsumerPacketData{
Type: v1Packet.Type,
Data: &ccv.ConsumerPacketData_SlashPacketData{
SlashPacketData: v1Packet.GetSlashPacketData().FromV1(),
},
}
}
return consumerPacket, nil
}
// OnAcknowledgementPacket implements the IBCModule interface
func (am AppModule) OnAcknowledgementPacket(
ctx sdk.Context,
packet channeltypes.Packet,
acknowledgement []byte,
_ sdk.AccAddress,
) error {
var ack channeltypes.Acknowledgement
if err := ccv.ModuleCdc.UnmarshalJSON(acknowledgement, &ack); err != nil {
return errorsmod.Wrapf(sdkerrors.ErrUnknownRequest, "cannot unmarshal provider packet acknowledgement: %v", err)
}
if err := am.keeper.OnAcknowledgementPacket(ctx, packet, ack); err != nil {
return err
}
ctx.EventManager().EmitEvent(
sdk.NewEvent(
ccv.EventTypePacket,
sdk.NewAttribute(sdk.AttributeKeyModule, providertypes.ModuleName),
sdk.NewAttribute(ccv.AttributeKeyAck, ack.String()),
),
)
switch resp := ack.Response.(type) {
case *channeltypes.Acknowledgement_Result:
ctx.EventManager().EmitEvent(
sdk.NewEvent(
ccv.EventTypePacket,
sdk.NewAttribute(ccv.AttributeKeyAckSuccess, string(resp.Result)),
),
)
case *channeltypes.Acknowledgement_Error:
ctx.EventManager().EmitEvent(
sdk.NewEvent(
ccv.EventTypePacket,
sdk.NewAttribute(ccv.AttributeKeyAckError, resp.Error),
),
)
}
return nil
}
// OnTimeoutPacket implements the IBCModule interface
func (am AppModule) OnTimeoutPacket(
ctx sdk.Context,
packet channeltypes.Packet,
_ sdk.AccAddress,
) error {
if err := am.keeper.OnTimeoutPacket(ctx, packet); err != nil {
return err
}
ctx.EventManager().EmitEvent(
sdk.NewEvent(
ccv.EventTypeTimeout,
sdk.NewAttribute(sdk.AttributeKeyModule, providertypes.ModuleName),
),
)
return nil
}