-
Notifications
You must be signed in to change notification settings - Fork 2.8k
/
Copy pathIBCChannel.sol
419 lines (396 loc) · 14.1 KB
/
IBCChannel.sol
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
pragma solidity ^0.8.27;
import "solady/utils/LibString.sol";
import "../24-host/IBCStore.sol";
import "../25-handler/IBCMsgs.sol";
import "../24-host/IBCCommitment.sol";
import "../04-channel/IIBCChannel.sol";
import "../05-port/IIBCModule.sol";
library IBCChannelLib {
event ChannelOpenInit(
address indexed portId,
uint32 indexed channelId,
bytes counterpartyPortId,
uint32 connectionId,
string indexed versionIndex,
string version
);
event ChannelOpenTry(
address indexed portId,
uint32 indexed channelId,
bytes counterpartyPortId,
uint32 counterpartyChannelId,
uint32 connectionId,
string indexed counterpartyVersionIndex,
string counterpartyVersion
);
event ChannelOpenAck(
address indexed portId,
uint32 indexed channelId,
bytes counterpartyPortId,
uint32 counterpartyChannelId,
uint32 connectionId
);
event ChannelOpenConfirm(
address indexed portId,
uint32 indexed channelId,
bytes counterpartyPortId,
uint32 counterpartyChannelId,
uint32 connectionId
);
event ChannelCloseInit(
address indexed portId,
uint32 indexed channelId,
bytes counterpartyPortId,
uint32 counterpartyChannelId
);
event ChannelCloseConfirm(
address indexed portId,
uint32 indexed channelId,
bytes counterpartyPortId,
uint32 counterpartyChannelId
);
}
/**
* @dev IBCChannelHandshake is a contract that implements [ICS-4](https://github.com/cosmos/ibc/tree/main/spec/core/ics-004-channel-and-packet-semantics).
*/
abstract contract IBCChannelImpl is IBCStore, IIBCChannel {
using LibString for *;
/**
* @dev channelOpenInit is called by a module to initiate a channel opening handshake with a module on another chain.
*/
function channelOpenInit(
IBCMsgs.MsgChannelOpenInit calldata msg_
) external override returns (uint32) {
ensureConnectionState(msg_.connectionId);
uint32 channelId = generateChannelIdentifier();
IBCChannel storage channel = channels[channelId];
channel.state = IBCChannelState.Init;
channel.connectionId = msg_.connectionId;
channel.version = msg_.version;
channel.counterpartyPortId = msg_.counterpartyPortId;
commitChannel(channelId, channel);
claimChannel(msg_.portId, channelId);
IIBCModule(msg_.portId).onChanOpenInit(
msg.sender, msg_.connectionId, channelId, msg_.version, msg_.relayer
);
emit IBCChannelLib.ChannelOpenInit(
msg_.portId,
channelId,
channel.counterpartyPortId,
msg_.connectionId,
msg_.version,
msg_.version
);
return channelId;
}
function _channelOpenTry(
IBCMsgs.MsgChannelOpenTry calldata msg_
) internal returns (uint32) {
uint32 channelId = generateChannelIdentifier();
channels[channelId] = msg_.channel;
commitChannelCalldata(channelId, msg_.channel);
claimChannel(msg_.portId, channelId);
IIBCModule(msg_.portId).onChanOpenTry(
msg.sender,
msg_.channel.connectionId,
channelId,
msg_.channel.counterpartyChannelId,
msg_.channel.version,
msg_.counterpartyVersion,
msg_.relayer
);
emit IBCChannelLib.ChannelOpenTry(
msg_.portId,
channelId,
msg_.channel.counterpartyPortId,
msg_.channel.counterpartyChannelId,
msg_.channel.connectionId,
msg_.counterpartyVersion,
msg_.counterpartyVersion
);
return channelId;
}
function forceChannelOpenTry(
IBCMsgs.MsgChannelOpenTry calldata msg_
) public restricted returns (uint32) {
if (msg_.channel.state != IBCChannelState.TryOpen) {
revert IBCErrors.ErrInvalidChannelState();
}
return _channelOpenTry(msg_);
}
/**
* @dev channelOpenTry is called by a module to accept the first step of a channel opening handshake initiated by a module on another chain.
*/
function channelOpenTry(
IBCMsgs.MsgChannelOpenTry calldata msg_
) external override returns (uint32) {
if (msg_.channel.state != IBCChannelState.TryOpen) {
revert IBCErrors.ErrInvalidChannelState();
}
uint32 clientId = ensureConnectionState(msg_.channel.connectionId);
IBCChannel memory expectedChannel = IBCChannel({
state: IBCChannelState.Init,
counterpartyChannelId: 0,
connectionId: getCounterpartyConnection(msg_.channel.connectionId),
counterpartyPortId: abi.encodePacked(msg_.portId),
version: msg_.counterpartyVersion
});
if (
!verifyChannelState(
clientId,
msg_.proofHeight,
msg_.proofInit,
msg_.channel.counterpartyChannelId,
expectedChannel
)
) {
revert IBCErrors.ErrInvalidProof();
}
return _channelOpenTry(msg_);
}
function _channelOpenAck(
IBCMsgs.MsgChannelOpenAck calldata msg_,
address portId
) internal {
IBCChannel storage channel = channels[msg_.channelId];
if (channel.state != IBCChannelState.Init) {
revert IBCErrors.ErrInvalidChannelState();
}
channel.state = IBCChannelState.Open;
channel.version = msg_.counterpartyVersion;
channel.counterpartyChannelId = msg_.counterpartyChannelId;
commitChannel(msg_.channelId, channel);
IIBCModule(portId).onChanOpenAck(
msg.sender,
msg_.channelId,
msg_.counterpartyChannelId,
msg_.counterpartyVersion,
msg_.relayer
);
emit IBCChannelLib.ChannelOpenAck(
portId,
msg_.channelId,
channel.counterpartyPortId,
msg_.counterpartyChannelId,
channel.connectionId
);
}
function forceChannelOpenAck(
IBCMsgs.MsgChannelOpenAck calldata msg_
) public restricted {
IBCChannel storage channel = channels[msg_.channelId];
if (channel.state != IBCChannelState.Init) {
revert IBCErrors.ErrInvalidChannelState();
}
_channelOpenAck(msg_, channelOwner[msg_.channelId]);
}
/**
* @dev channelOpenAck is called by the handshake-originating module to acknowledge the acceptance of the initial request by the counterparty module on the other chain.
*/
function channelOpenAck(
IBCMsgs.MsgChannelOpenAck calldata msg_
) external override {
IBCChannel storage channel = channels[msg_.channelId];
if (channel.state != IBCChannelState.Init) {
revert IBCErrors.ErrInvalidChannelState();
}
uint32 clientId = ensureConnectionState(channel.connectionId);
address portId = channelOwner[msg_.channelId];
IBCChannel memory expectedChannel = IBCChannel({
state: IBCChannelState.TryOpen,
counterpartyChannelId: msg_.channelId,
connectionId: getCounterpartyConnection(channel.connectionId),
counterpartyPortId: abi.encodePacked(portId),
version: msg_.counterpartyVersion
});
if (
!verifyChannelState(
clientId,
msg_.proofHeight,
msg_.proofTry,
msg_.counterpartyChannelId,
expectedChannel
)
) {
revert IBCErrors.ErrInvalidProof();
}
_channelOpenAck(msg_, portId);
}
function _channelOpenConfirm(
IBCMsgs.MsgChannelOpenConfirm calldata msg_,
IBCChannel storage channel,
address portId
) internal {
channel.state = IBCChannelState.Open;
commitChannel(msg_.channelId, channel);
IIBCModule(portId).onChanOpenConfirm(
msg.sender, msg_.channelId, msg_.relayer
);
emit IBCChannelLib.ChannelOpenConfirm(
portId,
msg_.channelId,
channel.counterpartyPortId,
channel.counterpartyChannelId,
channel.connectionId
);
}
function forceChannelOpenConfirm(
IBCMsgs.MsgChannelOpenConfirm calldata msg_
) public restricted {
IBCChannel storage channel = channels[msg_.channelId];
if (channel.state != IBCChannelState.TryOpen) {
revert IBCErrors.ErrInvalidChannelState();
}
_channelOpenConfirm(msg_, channel, channelOwner[msg_.channelId]);
}
/**
* @dev channelOpenConfirm is called by the counterparty module to close their end of the channel, since the other end has been closed.
*/
function channelOpenConfirm(
IBCMsgs.MsgChannelOpenConfirm calldata msg_
) external override {
IBCChannel storage channel = channels[msg_.channelId];
if (channel.state != IBCChannelState.TryOpen) {
revert IBCErrors.ErrInvalidChannelState();
}
uint32 clientId = ensureConnectionState(channel.connectionId);
address portId = channelOwner[msg_.channelId];
IBCChannel memory expectedChannel = IBCChannel({
state: IBCChannelState.Open,
counterpartyChannelId: msg_.channelId,
connectionId: getCounterpartyConnection(channel.connectionId),
counterpartyPortId: abi.encodePacked(portId),
version: channel.version
});
if (
!verifyChannelState(
clientId,
msg_.proofHeight,
msg_.proofAck,
channel.counterpartyChannelId,
expectedChannel
)
) {
revert IBCErrors.ErrInvalidProof();
}
_channelOpenConfirm(msg_, channel, portId);
}
/**
* @dev channelCloseInit is called by either module to close their end of the channel. Once closed, channels cannot be reopened.
*/
function channelCloseInit(
IBCMsgs.MsgChannelCloseInit calldata msg_
) external override {
IBCChannel storage channel = channels[msg_.channelId];
if (channel.state != IBCChannelState.Open) {
revert IBCErrors.ErrInvalidChannelState();
}
ensureConnectionState(channel.connectionId);
channel.state = IBCChannelState.Closed;
commitChannel(msg_.channelId, channel);
address portId = channelOwner[msg_.channelId];
IIBCModule(portId).onChanCloseInit(
msg.sender, msg_.channelId, msg_.relayer
);
emit IBCChannelLib.ChannelCloseInit(
portId,
msg_.channelId,
channel.counterpartyPortId,
channel.counterpartyChannelId
);
}
/**
* @dev channelCloseConfirm is called by the counterparty module to close their end of the
* channel, since the other end has been closed.
*/
function channelCloseConfirm(
IBCMsgs.MsgChannelCloseConfirm calldata msg_
) external override {
IBCChannel storage channel = channels[msg_.channelId];
if (channel.state != IBCChannelState.Open) {
revert IBCErrors.ErrInvalidChannelState();
}
uint32 clientId = ensureConnectionState(channel.connectionId);
address portId = channelOwner[msg_.channelId];
IBCChannel memory expectedChannel = IBCChannel({
state: IBCChannelState.Closed,
counterpartyChannelId: msg_.channelId,
connectionId: getCounterpartyConnection(channel.connectionId),
counterpartyPortId: abi.encodePacked(portId),
version: channel.version
});
if (
!verifyChannelState(
clientId,
msg_.proofHeight,
msg_.proofInit,
channel.counterpartyChannelId,
expectedChannel
)
) {
revert IBCErrors.ErrInvalidProof();
}
channel.state = IBCChannelState.Closed;
commitChannel(msg_.channelId, channel);
IIBCModule(portId).onChanCloseConfirm(
msg.sender, msg_.channelId, msg_.relayer
);
emit IBCChannelLib.ChannelCloseConfirm(
portId,
msg_.channelId,
channel.counterpartyPortId,
channel.counterpartyChannelId
);
}
function encodeChannel(
IBCChannel memory channel
) internal pure returns (bytes32) {
return keccak256(abi.encode(channel));
}
function commitChannel(
uint32 channelId,
IBCChannel storage channel
) internal {
commitments[IBCCommitment.channelCommitmentKey(channelId)] =
encodeChannel(channel);
}
function commitChannelCalldata(
uint32 channelId,
IBCChannel calldata channel
) internal {
commitments[IBCCommitment.channelCommitmentKey(channelId)] =
encodeChannelCalldata(channel);
}
function encodeChannelCalldata(
IBCChannel calldata channel
) internal pure returns (bytes32) {
return keccak256(abi.encode(channel));
}
function verifyChannelState(
uint32 clientId,
uint64 height,
bytes calldata proof,
uint32 channelId,
IBCChannel memory channel
) internal returns (bool) {
return getClientInternal(clientId).verifyMembership(
clientId,
height,
proof,
abi.encodePacked(IBCCommitment.channelCommitmentKey(channelId)),
abi.encodePacked(encodeChannel(channel))
);
}
function getCounterpartyConnection(
uint32 connectionId
) internal view returns (uint32) {
return connections[connectionId].counterpartyConnectionId;
}
function generateChannelIdentifier() internal returns (uint32) {
uint32 nextChannelSequence =
uint32(uint256(commitments[nextChannelSequencePath]));
commitments[nextChannelSequencePath] =
bytes32(uint256(nextChannelSequence + 1));
return nextChannelSequence;
}
}