-
Notifications
You must be signed in to change notification settings - Fork 64
/
ibc_module.go
210 lines (179 loc) · 5.82 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
package icq
import (
"strings"
"github.com/cosmos/ibc-apps/modules/async-icq/v8/keeper"
"github.com/cosmos/ibc-apps/modules/async-icq/v8/types"
"cosmossdk.io/errors"
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types"
channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types"
host "github.com/cosmos/ibc-go/v8/modules/core/24-host"
ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported"
)
// IBCModule implements the ICS26 interface for interchain query host chains
type IBCModule struct {
keeper keeper.Keeper
}
// NewIBCModule creates a new IBCModule given the associated keeper
func NewIBCModule(k keeper.Keeper) IBCModule {
return IBCModule{
keeper: k,
}
}
// OnChanOpenInit implements the IBCModule interface
func (im IBCModule) OnChanOpenInit(
ctx sdk.Context,
order channeltypes.Order,
_ []string,
portID string,
channelID string,
chanCap *capabilitytypes.Capability,
_ channeltypes.Counterparty,
version string,
) (string, error) {
if !im.keeper.IsHostEnabled(ctx) {
return "", types.ErrHostDisabled
}
if err := ValidateICQChannelParams(ctx, im.keeper, order, portID, channelID); err != nil {
return "", err
}
if strings.TrimSpace(version) == "" {
version = types.Version
}
if version != types.Version {
return "", errors.Wrapf(types.ErrInvalidVersion, "got %s, expected %s", version, types.Version)
}
// Claim channel capability passed back by IBC module
if err := im.keeper.ClaimCapability(ctx, chanCap, host.ChannelCapabilityPath(portID, channelID)); err != nil {
return "", err
}
return version, nil
}
func ValidateICQChannelParams(
ctx sdk.Context,
keeper keeper.Keeper,
order channeltypes.Order,
portID string,
_ string,
) error {
if order != channeltypes.UNORDERED {
return errors.Wrapf(channeltypes.ErrInvalidChannelOrdering, "expected %s channel, got %s", channeltypes.UNORDERED, order)
}
boundPort := keeper.GetPort(ctx)
if portID != boundPort {
return errors.Wrapf(types.ErrInvalidHostPort, "expected %s, got %s", boundPort, portID)
}
return nil
}
// OnChanOpenTry implements the IBCModule interface
func (im IBCModule) OnChanOpenTry(
ctx sdk.Context,
order channeltypes.Order,
_ []string,
portID,
channelID string,
chanCap *capabilitytypes.Capability,
_ channeltypes.Counterparty,
counterpartyVersion string,
) (string, error) {
if !im.keeper.IsHostEnabled(ctx) {
return "", types.ErrHostDisabled
}
if err := ValidateICQChannelParams(ctx, im.keeper, order, portID, channelID); err != nil {
return "", err
}
if counterpartyVersion != types.Version {
return "", errors.Wrapf(types.ErrInvalidVersion, "got %s, expected %s", counterpartyVersion, types.Version)
}
// Module may have already claimed capability in OnChanOpenInit in the case of crossing hellos
// (ie chainA and chainB both call ChanOpenInit before one of them calls ChanOpenTry)
// If module can already authenticate the capability then module already owns it so we don't need to claim
// Otherwise, module does not have channel capability and we must claim it from IBC
if !im.keeper.AuthenticateCapability(ctx, chanCap, host.ChannelCapabilityPath(portID, channelID)) {
// Only claim channel capability passed back by IBC module if we do not already own it
if err := im.keeper.ClaimCapability(ctx, chanCap, host.ChannelCapabilityPath(portID, channelID)); err != nil {
return "", err
}
}
return types.Version, nil
}
// OnChanOpenAck implements the IBCModule interface
func (im IBCModule) OnChanOpenAck(
ctx sdk.Context,
_ string,
_ string,
_ string,
counterpartyVersion string,
) error {
if !im.keeper.IsHostEnabled(ctx) {
return types.ErrHostDisabled
}
if counterpartyVersion != types.Version {
return errors.Wrapf(types.ErrInvalidVersion, "got %s, expected %s", counterpartyVersion, types.Version)
}
return nil
}
// OnChanOpenConfirm implements the IBCModule interface
func (im IBCModule) OnChanOpenConfirm(
ctx sdk.Context,
_ string,
_ string,
) error {
if !im.keeper.IsHostEnabled(ctx) {
return types.ErrHostDisabled
}
return nil
}
// OnChanCloseInit implements the IBCModule interface
func (im IBCModule) OnChanCloseInit(
_ sdk.Context,
_ string,
_ string,
) error {
// Ensure channels cannot be closed by users
return errors.Wrap(sdkerrors.ErrInvalidRequest, "user cannot close channel")
}
// OnChanCloseConfirm implements the IBCModule interface
func (im IBCModule) OnChanCloseConfirm(
_ sdk.Context,
_ string,
_ string,
) error {
return nil
}
// OnRecvPacket implements the IBCModule interface
func (im IBCModule) OnRecvPacket(
ctx sdk.Context,
packet channeltypes.Packet,
_ sdk.AccAddress,
) ibcexported.Acknowledgement {
if !im.keeper.IsHostEnabled(ctx) {
return channeltypes.NewErrorAcknowledgement(types.ErrHostDisabled)
}
txResponse, err := im.keeper.OnRecvPacket(ctx, packet)
if err != nil {
// Emit an event including the error msg
keeper.EmitWriteErrorAcknowledgementEvent(ctx, packet, err)
return channeltypes.NewErrorAcknowledgement(err)
}
// NOTE: acknowledgement will be written synchronously during IBC handler execution.
return channeltypes.NewResultAcknowledgement(txResponse)
}
// OnAcknowledgementPacket implements the IBCModule interface
func (im IBCModule) OnAcknowledgementPacket(
_ sdk.Context,
_ channeltypes.Packet,
_ []byte,
_ sdk.AccAddress,
) error {
return errors.Wrap(types.ErrInvalidChannelFlow, "cannot receive acknowledgement on a host channel end, a host chain does not send a packet over the channel")
}
// OnTimeoutPacket implements the IBCModule interface
func (im IBCModule) OnTimeoutPacket(
_ sdk.Context,
_ channeltypes.Packet,
_ sdk.AccAddress,
) error {
return errors.Wrap(types.ErrInvalidChannelFlow, "cannot cause a packet timeout on a host channel end, a host chain does not send a packet over the channel")
}