-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathIBCPacket.sol
505 lines (477 loc) · 17.6 KB
/
IBCPacket.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
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
pragma solidity ^0.8.27;
import "../24-host/IBCStore.sol";
import "../25-handler/IBCMsgs.sol";
import "../24-host/IBCStore.sol";
import "../24-host/IBCCommitment.sol";
import "../04-channel/IIBCPacket.sol";
import "../05-port/IIBCModule.sol";
import "../Types.sol";
library IBCPacketLib {
bytes32 public constant COMMITMENT_MAGIC =
0x0100000000000000000000000000000000000000000000000000000000000000;
bytes32 public constant COMMITMENT_MAGIC_ACK =
0x0200000000000000000000000000000000000000000000000000000000000000;
bytes32 public constant COMMITMENT_NULL = bytes32(uint256(0));
event PacketSend(
uint32 indexed channelId, bytes32 indexed packetHash, IBCPacket packet
);
event PacketRecv(
uint32 indexed channelId,
bytes32 indexed packetHash,
address indexed maker,
bytes makerMsg
);
event IntentPacketRecv(
uint32 indexed channelId,
bytes32 indexed packetHash,
address indexed maker,
bytes makerMsg
);
event WriteAck(
uint32 indexed channelId,
bytes32 indexed packetHash,
bytes acknowledgement
);
event PacketAck(
uint32 indexed channelId,
bytes32 indexed packetHash,
bytes acknowledgement,
address indexed maker
);
event PacketTimeout(
uint32 indexed channelId,
bytes32 indexed packetHash,
address indexed maker
);
event BatchedPreviouslySent(
uint32 indexed channelId,
bytes32 indexed batchHash,
bytes32 indexed packetHash
);
event BatchedPreviouslyAcked(
uint32 indexed channelId,
bytes32 indexed batchHash,
bytes32 indexed packetHash
);
function commitAcksMemory(
bytes[] memory acks
) internal pure returns (bytes32) {
return mergeAck(keccak256(abi.encode(acks)));
}
function commitAcks(
bytes[] calldata acks
) internal pure returns (bytes32) {
return mergeAck(keccak256(abi.encode(acks)));
}
function commitAck(
bytes memory ack
) internal pure returns (bytes32) {
bytes[] memory acks = new bytes[](1);
acks[0] = ack;
return commitAcksMemory(acks);
}
function commitPacketsMemory(
IBCPacket[] memory packets
) internal pure returns (bytes32) {
return keccak256(abi.encode(packets));
}
function commitPackets(
IBCPacket[] calldata packets
) internal pure returns (bytes32) {
return keccak256(abi.encode(packets));
}
function commitPacket(
IBCPacket memory packet
) internal pure returns (bytes32) {
IBCPacket[] memory packets = new IBCPacket[](1);
packets[0] = packet;
return commitPacketsMemory(packets);
}
function mergeAck(
bytes32 ack
) internal pure returns (bytes32) {
return COMMITMENT_MAGIC
| (
ack
& 0x00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
);
}
}
/**
* @dev IBCPacket is a contract that implements [ICS-4](https://github.com/cosmos/ibc/tree/main/spec/core/ics-004-channel-and-packet-semantics).
*/
abstract contract IBCPacketImpl is IBCStore, IIBCPacket {
function batchSend(
IBCMsgs.MsgBatchSend calldata msg_
) external override {
uint256 l = msg_.packets.length;
// No reason to batch less than 2 packets as they are already individually committed.
if (l < 2) {
revert IBCErrors.ErrNotEnoughPackets();
}
uint32 channelId = msg_.packets[0].sourceChannelId;
bytes32 batchHash = IBCPacketLib.commitPackets(msg_.packets);
for (uint256 i = 0; i < l; i++) {
IBCPacket calldata packet = msg_.packets[i];
if (i > 0) {
if (packet.sourceChannelId != channelId) {
revert IBCErrors.ErrBatchSameChannelOnly();
}
}
// If the channel mismatch, the commitment will be zero
bytes32 packetHash = IBCPacketLib.commitPacket(packet);
bytes32 commitment =
commitments[IBCCommitment.batchPacketsCommitmentKey(packetHash)];
// Every packet must have been previously sent to be batched
if (commitment != IBCPacketLib.COMMITMENT_MAGIC) {
revert IBCErrors.ErrPacketCommitmentNotFound();
}
emit IBCPacketLib.BatchedPreviouslySent(
channelId, batchHash, packetHash
);
}
commitments[IBCCommitment.batchPacketsCommitmentKey(batchHash)] =
IBCPacketLib.COMMITMENT_MAGIC;
}
function batchAcks(
IBCMsgs.MsgBatchAcks calldata msg_
) external override {
uint256 l = msg_.packets.length;
// No reason to batch less than 2 packets as they are already individually committed.
if (l < 2) {
revert IBCErrors.ErrNotEnoughPackets();
}
uint32 channelId = msg_.packets[0].destinationChannelId;
bytes32 batchHash = IBCPacketLib.commitPackets(msg_.packets);
for (uint256 i = 0; i < l; i++) {
IBCPacket calldata packet = msg_.packets[i];
if (i > 0) {
if (packet.destinationChannelId != channelId) {
revert IBCErrors.ErrBatchSameChannelOnly();
}
}
bytes calldata ack = msg_.acks[i];
// If the channel mismatch, the commitment will be zero.
bytes32 packetHash = IBCPacketLib.commitPacket(packet);
bytes32 commitment = commitments[IBCCommitment
.batchReceiptsCommitmentKey(packetHash)];
// Can't batch an empty ack.
if (
commitment == IBCPacketLib.COMMITMENT_NULL
|| commitment == IBCPacketLib.COMMITMENT_MAGIC
) {
revert IBCErrors.ErrAcknowledgementIsEmpty();
}
// Of course the ack must match.
if (commitment != IBCPacketLib.commitAck(ack)) {
revert IBCErrors.ErrCommittedAckNotPresent();
}
emit IBCPacketLib.BatchedPreviouslyAcked(
channelId, batchHash, packetHash
);
}
commitments[IBCCommitment.batchReceiptsCommitmentKey(
IBCPacketLib.commitPackets(msg_.packets)
)] = IBCPacketLib.commitAcks(msg_.acks);
}
function sendPacket(
uint32 sourceChannelId,
uint64 timeoutHeight,
uint64 timeoutTimestamp,
bytes calldata data
) external override returns (IBCPacket memory) {
if (timeoutTimestamp == 0 && timeoutHeight == 0) {
revert IBCErrors.ErrTimeoutMustBeSet();
}
if (!authenticateChannelOwner(sourceChannelId)) {
revert IBCErrors.ErrUnauthorized();
}
IBCChannel storage channel = ensureChannelState(sourceChannelId);
IBCPacket memory packet = IBCPacket({
sourceChannelId: sourceChannelId,
destinationChannelId: channel.counterpartyChannelId,
data: data,
timeoutHeight: timeoutHeight,
timeoutTimestamp: timeoutTimestamp
});
bytes32 packetHash = IBCPacketLib.commitPacket(packet);
bytes32 commitmentKey =
IBCCommitment.batchPacketsCommitmentKey(packetHash);
if (commitments[commitmentKey] != IBCPacketLib.COMMITMENT_NULL) {
revert IBCErrors.ErrPacketAlreadyExist();
}
commitments[commitmentKey] = IBCPacketLib.COMMITMENT_MAGIC;
emit IBCPacketLib.PacketSend(sourceChannelId, packetHash, packet);
return packet;
}
function setPacketReceive(
bytes32 commitmentKey
) internal returns (bool) {
bool alreadyReceived =
commitments[commitmentKey] != IBCPacketLib.COMMITMENT_NULL;
if (!alreadyReceived) {
commitments[commitmentKey] = IBCPacketLib.COMMITMENT_MAGIC;
}
return alreadyReceived;
}
function processReceive(
IBCPacket[] calldata packets,
address maker,
bytes[] calldata makerMsgs,
uint64 proofHeight,
bytes calldata proof,
bool intent
) internal {
uint256 l = packets.length;
if (l == 0) {
revert IBCErrors.ErrNotEnoughPackets();
}
uint32 sourceChannelId = packets[0].sourceChannelId;
uint32 destinationChannelId = packets[0].destinationChannelId;
IBCChannel storage channel = ensureChannelState(destinationChannelId);
uint32 clientId = ensureConnectionState(channel.connectionId);
if (!intent) {
bytes32 proofCommitmentKey = IBCCommitment.batchPacketsCommitmentKey(
IBCPacketLib.commitPackets(packets)
);
if (
!verifyCommitment(
clientId,
proofHeight,
proof,
proofCommitmentKey,
IBCPacketLib.COMMITMENT_MAGIC
)
) {
revert IBCErrors.ErrInvalidProof();
}
}
IIBCModule module = lookupModuleByChannel(destinationChannelId);
for (uint256 i = 0; i < l; i++) {
IBCPacket calldata packet = packets[i];
// Check packet height timeout
if (
packet.timeoutHeight > 0
&& (block.number >= packet.timeoutHeight)
) {
revert IBCErrors.ErrHeightTimeout();
}
// Check packet timestamp timeout
// For some reason cosmos is using nanos, we try to follow their convention to avoid friction
uint64 currentTimestamp = uint64(block.timestamp * 1e9);
if (
packet.timeoutTimestamp != 0
&& (currentTimestamp >= packet.timeoutTimestamp)
) {
revert IBCErrors.ErrTimestampTimeout();
}
bytes32 packetHash = IBCPacketLib.commitPacket(packet);
bytes32 commitmentKey =
IBCCommitment.batchReceiptsCommitmentKey(packetHash);
if (!setPacketReceive(commitmentKey)) {
bytes memory acknowledgement;
bytes calldata makerMsg = makerMsgs[i];
if (intent) {
acknowledgement = module.onRecvIntentPacket(
msg.sender, packet, maker, makerMsg
);
emit IBCPacketLib.IntentPacketRecv(
packet.destinationChannelId, packetHash, maker, makerMsg
);
} else {
acknowledgement =
module.onRecvPacket(msg.sender, packet, maker, makerMsg);
emit IBCPacketLib.PacketRecv(
packet.destinationChannelId, packetHash, maker, makerMsg
);
}
if (acknowledgement.length > 0) {
_writeAcknowledgement(commitmentKey, acknowledgement);
emit IBCPacketLib.WriteAck(
packet.destinationChannelId, packetHash, acknowledgement
);
}
}
}
}
function recvPacket(
IBCMsgs.MsgPacketRecv calldata msg_
) external {
processReceive(
msg_.packets,
msg_.relayer,
msg_.relayerMsgs,
msg_.proofHeight,
msg_.proof,
false
);
}
function recvIntentPacket(
IBCMsgs.MsgIntentPacketRecv calldata msg_
) external override {
processReceive(
msg_.packets,
msg_.marketMaker,
msg_.marketMakerMsgs,
0,
msg_.emptyProof,
true
);
}
function _writeAcknowledgement(
bytes32 commitmentKey,
bytes memory acknowledgement
) internal {
bytes32 commitment = commitments[commitmentKey];
if (commitment == IBCPacketLib.COMMITMENT_NULL) {
revert IBCErrors.ErrPacketNotReceived();
}
if (commitment != IBCPacketLib.COMMITMENT_MAGIC) {
revert IBCErrors.ErrAcknowledgementAlreadyExists();
}
commitments[commitmentKey] = IBCPacketLib.commitAck(acknowledgement);
}
function writeAcknowledgement(
IBCPacket calldata packet,
bytes memory acknowledgement
) external override {
if (acknowledgement.length == 0) {
revert IBCErrors.ErrAcknowledgementIsEmpty();
}
if (!authenticateChannelOwner(packet.destinationChannelId)) {
revert IBCErrors.ErrUnauthorized();
}
ensureChannelState(packet.destinationChannelId);
bytes32 packetHash = IBCPacketLib.commitPacket(packet);
bytes32 commitmentKey =
IBCCommitment.batchReceiptsCommitmentKey(packetHash);
_writeAcknowledgement(commitmentKey, acknowledgement);
emit IBCPacketLib.WriteAck(
packet.destinationChannelId, packetHash, acknowledgement
);
}
function acknowledgePacket(
IBCMsgs.MsgPacketAcknowledgement calldata msg_
) external override {
uint256 l = msg_.packets.length;
if (l == 0) {
revert IBCErrors.ErrNotEnoughPackets();
}
uint32 sourceChannelId = msg_.packets[0].sourceChannelId;
IBCChannel storage channel = ensureChannelState(sourceChannelId);
uint32 clientId = ensureConnectionState(channel.connectionId);
bytes32 commitmentKey = IBCCommitment.batchReceiptsCommitmentKey(
IBCPacketLib.commitPackets(msg_.packets)
);
bytes32 commitmentValue = IBCPacketLib.commitAcks(msg_.acknowledgements);
if (
!verifyCommitment(
clientId,
msg_.proofHeight,
msg_.proof,
commitmentKey,
commitmentValue
)
) {
revert IBCErrors.ErrInvalidProof();
}
IIBCModule module = lookupModuleByChannel(sourceChannelId);
for (uint256 i = 0; i < l; i++) {
IBCPacket calldata packet = msg_.packets[i];
markPacketAsAcknowledged(packet);
bytes calldata acknowledgement = msg_.acknowledgements[i];
module.onAcknowledgementPacket(
msg.sender, packet, acknowledgement, msg_.relayer
);
emit IBCPacketLib.PacketAck(
sourceChannelId,
IBCPacketLib.commitPacket(packet),
acknowledgement,
msg_.relayer
);
}
}
function timeoutPacket(
IBCMsgs.MsgPacketTimeout calldata msg_
) external override {
IBCPacket calldata packet = msg_.packet;
uint32 sourceChannelId = packet.sourceChannelId;
IBCChannel storage channel = ensureChannelState(sourceChannelId);
uint32 clientId = ensureConnectionState(channel.connectionId);
ILightClient client = getClientInternal(clientId);
uint64 proofTimestamp =
client.getTimestampAtHeight(clientId, msg_.proofHeight);
if (proofTimestamp == 0) {
revert IBCErrors.ErrLatestTimestampNotFound();
}
bytes32 packetHash = IBCPacketLib.commitPacket(packet);
bytes32 commitmentKey =
IBCCommitment.batchReceiptsCommitmentKey(packetHash);
if (
!verifyAbsentCommitment(
clientId, msg_.proofHeight, msg_.proof, commitmentKey
)
) {
revert IBCErrors.ErrInvalidProof();
}
IIBCModule module = lookupModuleByChannel(sourceChannelId);
markPacketAsAcknowledged(packet);
if (packet.timeoutTimestamp == 0 && packet.timeoutHeight == 0) {
revert IBCErrors.ErrTimeoutMustBeSet();
}
if (
packet.timeoutTimestamp > 0
&& packet.timeoutTimestamp > proofTimestamp
) {
revert IBCErrors.ErrTimeoutTimestampNotReached();
}
if (packet.timeoutHeight > 0 && packet.timeoutHeight > msg_.proofHeight)
{
revert IBCErrors.ErrTimeoutHeightNotReached();
}
module.onTimeoutPacket(msg.sender, packet, msg_.relayer);
emit IBCPacketLib.PacketTimeout(
sourceChannelId, packetHash, msg_.relayer
);
}
function verifyCommitment(
uint32 clientId,
uint64 height,
bytes calldata proof,
bytes32 path,
bytes32 commitment
) internal virtual returns (bool) {
return getClientInternal(clientId).verifyMembership(
clientId,
height,
proof,
abi.encodePacked(path),
abi.encodePacked(commitment)
);
}
function verifyAbsentCommitment(
uint32 clientId,
uint64 height,
bytes calldata proof,
bytes32 path
) internal virtual returns (bool) {
return getClientInternal(clientId).verifyNonMembership(
clientId, height, proof, abi.encodePacked(path)
);
}
function markPacketAsAcknowledged(
IBCPacket calldata packet
) internal {
bytes32 commitmentKey = IBCCommitment.batchPacketsCommitmentKey(
IBCPacketLib.commitPacket(packet)
);
bytes32 commitment = commitments[commitmentKey];
if (commitment == IBCPacketLib.COMMITMENT_MAGIC_ACK) {
revert IBCErrors.ErrPacketAlreadyAcknowledged();
}
if (commitment != IBCPacketLib.COMMITMENT_MAGIC) {
revert IBCErrors.ErrPacketCommitmentNotFound();
}
commitments[commitmentKey] = IBCPacketLib.COMMITMENT_MAGIC_ACK;
}
}