-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathWormholeSimulator.sol
510 lines (447 loc) · 15 KB
/
WormholeSimulator.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
506
507
508
509
510
// SPDX-License-Identifier: Apache 2
pragma solidity ^0.8.0;
import {IWormhole} from "wormhole-solidity-sdk/interfaces/IWormhole.sol";
import {MockWormhole} from "./MockWormhole.sol";
import "./BytesLib.sol";
import "forge-std/Vm.sol";
import "forge-std/console.sol";
/**
* @notice These are the common parts for the signing and the non signing wormhole simulators.
* @dev This contract is meant to be used when testing against a mainnet fork.
*/
abstract contract WormholeSimulator {
using BytesLib for bytes;
function doubleKeccak256(bytes memory body) internal pure returns (bytes32) {
return keccak256(abi.encodePacked(keccak256(body)));
}
function parseVMFromLogs(Vm.Log memory log) public pure returns (IWormhole.VM memory vm_) {
uint256 index = 0;
// emitterAddress
vm_.emitterAddress = bytes32(log.topics[1]);
// sequence
vm_.sequence = log.data.toUint64(index + 32 - 8);
index += 32;
// nonce
vm_.nonce = log.data.toUint32(index + 32 - 4);
index += 32;
// skip random bytes
index += 32;
// consistency level
vm_.consistencyLevel = log.data.toUint8(index + 32 - 1);
index += 32;
// length of payload
uint256 payloadLen = log.data.toUint256(index);
index += 32;
vm_.payload = log.data.slice(index, payloadLen);
index += payloadLen;
// trailing bytes (due to 32 byte slot overlap)
index += log.data.length - index;
require(index == log.data.length, "failed to parse wormhole message");
}
/**
* @notice Finds published Wormhole events in forge logs
* @param logs The forge Vm.log captured when recording events during test execution
*/
function fetchWormholeMessageFromLog(
Vm.Log[] memory logs
) public pure returns (Vm.Log[] memory) {
uint256 count = 0;
for (uint256 i = 0; i < logs.length; i++) {
if (
logs[i].topics[0] ==
keccak256("LogMessagePublished(address,uint64,uint32,bytes,uint8)")
) {
count += 1;
}
}
// create log array to save published messages
Vm.Log[] memory published = new Vm.Log[](count);
uint256 publishedIndex = 0;
for (uint256 i = 0; i < logs.length; i++) {
if (
logs[i].topics[0] ==
keccak256("LogMessagePublished(address,uint64,uint32,bytes,uint8)")
) {
published[publishedIndex] = logs[i];
publishedIndex += 1;
}
}
return published;
}
/**
* @notice Encodes Wormhole message body into bytes
* @param vm_ Wormhole VM struct
* @return encodedObservation Wormhole message body encoded into bytes
*/
function encodeObservation(
IWormhole.VM memory vm_
) public pure returns (bytes memory encodedObservation) {
encodedObservation = abi.encodePacked(
vm_.timestamp,
vm_.nonce,
vm_.emitterChainId,
vm_.emitterAddress,
vm_.sequence,
vm_.consistencyLevel,
vm_.payload
);
}
/**
* @notice Formats and signs a simulated Wormhole message using the emitted log from calling `publishMessage`
* @param log The forge Vm.log captured when recording events during test execution
* @return signedMessage Formatted and signed Wormhole message
*/
function fetchSignedMessageFromLogs(
Vm.Log memory log,
uint16 emitterChainId,
address emitterAddress
) public returns (bytes memory signedMessage) {
// Parse wormhole message from ethereum logs
IWormhole.VM memory vm_ = parseVMFromLogs(log);
// Set empty body values before computing the hash
vm_.version = uint8(1);
vm_.timestamp = uint32(block.timestamp);
vm_.emitterChainId = emitterChainId;
vm_.emitterAddress = bytes32(uint256(uint160(emitterAddress)));
return encodeAndSignMessage(vm_);
}
/**
* Functions that must be implemented by concrete wormhole simulators.
*/
/**
* @notice Sets the message fee for a wormhole message.
*/
function setMessageFee(uint256 newFee) public virtual;
/**
* @notice Invalidates a VM. It must be executed before it is parsed and verified by the Wormhole instance to work.
*/
function invalidateVM(bytes memory message) public virtual;
/**
* @notice Formats and signs a simulated Wormhole batch VAA given an array of Wormhole log entries
* @param logs The forge Vm.log entries captured when recording events during test execution
* @param nonce The nonce of the messages to be accumulated into the batch VAA
* @return signedMessage Formatted and signed Wormhole message
*/
function fetchSignedBatchVAAFromLogs(
Vm.Log[] memory logs,
uint32 nonce,
uint16 emitterChainId,
address emitterAddress
) public virtual returns (bytes memory signedMessage);
/**
* @notice Signs and preformatted simulated Wormhole message
* @param vm_ The preformatted Wormhole message
* @return signedMessage Formatted and signed Wormhole message
*/
function encodeAndSignMessage(
IWormhole.VM memory vm_
) public virtual returns (bytes memory signedMessage);
}
/**
* @title A Wormhole Guardian Simulator
* @notice This contract simulates signing Wormhole messages emitted in a forge test.
* This particular version doesn't sign any message but just exists to keep a standard interface for tests.
* @dev This contract is meant to be used with the MockWormhole contract that validates any VM as long
* as its hash wasn't banned.
*/
contract FakeWormholeSimulator is WormholeSimulator {
// Allow access to Wormhole
MockWormhole public wormhole;
/**
* @param initWormhole address of the Wormhole core contract for the mainnet chain being forked
*/
constructor(MockWormhole initWormhole) {
wormhole = initWormhole;
}
function setMessageFee(uint256 newFee) public override {
wormhole.setMessageFee(newFee);
}
function invalidateVM(bytes memory message) public override {
wormhole.invalidateVM(message);
}
/**
* @notice Formats and signs a simulated Wormhole batch VAA given an array of Wormhole log entries
* @param logs The forge Vm.log entries captured when recording events during test execution
* @param nonce The nonce of the messages to be accumulated into the batch VAA
* @return signedMessage Formatted and signed Wormhole message
*/
function fetchSignedBatchVAAFromLogs(
Vm.Log[] memory logs,
uint32 nonce,
uint16 emitterChainId,
address emitterAddress
) public view override returns (bytes memory signedMessage) {
uint8 numObservations = 0;
IWormhole.VM[] memory vm_ = new IWormhole.VM[](logs.length);
for (uint256 i = 0; i < logs.length; i++) {
vm_[i] = parseVMFromLogs(logs[i]);
vm_[i].timestamp = uint32(block.timestamp);
vm_[i].emitterChainId = emitterChainId;
vm_[i].emitterAddress = bytes32(uint256(uint160(emitterAddress)));
if (vm_[i].nonce == nonce) {
numObservations += 1;
}
}
bytes memory packedObservations;
bytes32[] memory hashes = new bytes32[](numObservations);
uint8 counter = 0;
for (uint256 i = 0; i < logs.length; i++) {
if (vm_[i].nonce == nonce) {
bytes memory observation = abi.encodePacked(
vm_[i].timestamp,
vm_[i].nonce,
vm_[i].emitterChainId,
vm_[i].emitterAddress,
vm_[i].sequence,
vm_[i].consistencyLevel,
vm_[i].payload
);
hashes[counter] = doubleKeccak256(observation);
packedObservations = abi.encodePacked(
packedObservations,
uint8(counter),
uint32(observation.length),
observation
);
counter++;
}
}
signedMessage = abi.encodePacked(
// vm version
uint8(2),
wormhole.getCurrentGuardianSetIndex(),
// length of signature array
uint8(1),
// guardian index
uint8(0),
// r sig argument
bytes32(uint256(0)),
// s sig argument
bytes32(uint256(0)),
// v sig argument (encodes public key recovery id, public key type and network of the signature)
uint8(0),
numObservations,
hashes,
numObservations,
packedObservations
);
}
/**
* @notice Signs and preformatted simulated Wormhole message
* @param vm_ The preformatted Wormhole message
* @return signedMessage Formatted and signed Wormhole message
*/
function encodeAndSignMessage(
IWormhole.VM memory vm_
) public view override returns (bytes memory signedMessage) {
// Compute the hash of the body
bytes memory body = encodeObservation(vm_);
vm_.hash = doubleKeccak256(body);
signedMessage = abi.encodePacked(
vm_.version,
wormhole.getCurrentGuardianSetIndex(),
// length of signature array
uint8(1),
// guardian index
uint8(0),
// r sig argument
bytes32(uint256(0)),
// s sig argument
bytes32(uint256(0)),
// v sig argument (encodes public key recovery id, public key type and network of the signature)
uint8(0),
body
);
}
}
/**
* @title A Wormhole Guardian Simulator
* @notice This contract simulates signing Wormhole messages emitted in a forge test.
* It overrides the Wormhole guardian set to allow for signing messages with a single
* private key on any EVM where Wormhole core contracts are deployed.
* @dev This contract is meant to be used when testing against a mainnet fork.
*/
contract SigningWormholeSimulator is WormholeSimulator {
// Taken from forge-std/Script.sol
address private constant VM_ADDRESS =
address(bytes20(uint160(uint256(keccak256("hevm cheat code")))));
Vm public constant vm = Vm(VM_ADDRESS);
// Allow access to Wormhole
IWormhole public wormhole;
// Save the guardian PK to sign messages with
uint256 private devnetGuardianPK;
/**
* @param wormhole_ address of the Wormhole core contract for the mainnet chain being forked
* @param devnetGuardian private key of the devnet Guardian
*/
constructor(IWormhole wormhole_, uint256 devnetGuardian) {
wormhole = wormhole_;
devnetGuardianPK = devnetGuardian;
overrideToDevnetGuardian(vm.addr(devnetGuardian));
}
function currentGuardianSetIndex() public view returns (uint32) {
return wormhole.getCurrentGuardianSetIndex();
}
function overrideToDevnetGuardian(address devnetGuardian) internal {
{
// Get slot for Guardian Set at the current index
uint32 guardianSetIndex = wormhole.getCurrentGuardianSetIndex();
bytes32 guardianSetSlot = keccak256(abi.encode(guardianSetIndex, 2));
// Overwrite all but first guardian set to zero address. This isn't
// necessary, but just in case we inadvertently access these slots
// for any reason.
uint256 numGuardians = uint256(vm.load(address(wormhole), guardianSetSlot));
for (uint256 i = 1; i < numGuardians; ) {
vm.store(
address(wormhole),
bytes32(uint256(keccak256(abi.encodePacked(guardianSetSlot))) + i),
bytes32(0)
);
unchecked {
i += 1;
}
}
// Now overwrite the first guardian key with the devnet key specified
// in the function argument.
vm.store(
address(wormhole),
bytes32(uint256(keccak256(abi.encodePacked(guardianSetSlot))) + 0), // just explicit w/ index 0
bytes32(uint256(uint160(devnetGuardian)))
);
// Change the length to 1 guardian
vm.store(
address(wormhole),
guardianSetSlot,
bytes32(uint256(1)) // length == 1
);
// Confirm guardian set override
address[] memory guardians = wormhole.getGuardianSet(guardianSetIndex).keys;
require(guardians.length == 1, "guardians.length != 1");
require(guardians[0] == devnetGuardian, "incorrect guardian set override");
}
}
function setMessageFee(uint256 newFee) public override {
bytes32 coreModule = 0x00000000000000000000000000000000000000000000000000000000436f7265;
bytes memory message = abi.encodePacked(
coreModule,
uint8(3),
uint16(wormhole.chainId()),
newFee
);
IWormhole.VM memory preSignedMessage = IWormhole.VM({
version: 1,
timestamp: uint32(block.timestamp),
nonce: 0,
emitterChainId: wormhole.governanceChainId(),
emitterAddress: wormhole.governanceContract(),
sequence: 0,
consistencyLevel: 200,
payload: message,
guardianSetIndex: 0,
signatures: new IWormhole.Signature[](0),
hash: bytes32("")
});
bytes memory signed = encodeAndSignMessage(preSignedMessage);
wormhole.submitSetMessageFee(signed);
}
function invalidateVM(bytes memory message) public pure override {
// Don't do anything. Signatures are easily invalidated modifying the payload.
// If it becomes necessary to prevent producing a good signature for this message, that can be done here.
}
/**
* @notice Formats and signs a simulated Wormhole batch VAA given an array of Wormhole log entries
* @param logs The forge Vm.log entries captured when recording events during test execution
* @param nonce The nonce of the messages to be accumulated into the batch VAA
* @return signedMessage Formatted and signed Wormhole message
*/
function fetchSignedBatchVAAFromLogs(
Vm.Log[] memory logs,
uint32 nonce,
uint16 emitterChainId,
address emitterAddress
) public view override returns (bytes memory signedMessage) {
uint8 numObservations = 0;
IWormhole.VM[] memory vm_ = new IWormhole.VM[](logs.length);
for (uint256 i = 0; i < logs.length; i++) {
vm_[i] = parseVMFromLogs(logs[i]);
vm_[i].timestamp = uint32(block.timestamp);
vm_[i].emitterChainId = emitterChainId;
vm_[i].emitterAddress = bytes32(uint256(uint160(emitterAddress)));
if (vm_[i].nonce == nonce) {
numObservations += 1;
}
}
bytes memory packedObservations;
bytes32[] memory hashes = new bytes32[](numObservations);
uint8 counter = 0;
for (uint256 i = 0; i < logs.length; i++) {
if (vm_[i].nonce == nonce) {
bytes memory observation = abi.encodePacked(
vm_[i].timestamp,
vm_[i].nonce,
vm_[i].emitterChainId,
vm_[i].emitterAddress,
vm_[i].sequence,
vm_[i].consistencyLevel,
vm_[i].payload
);
hashes[counter] = doubleKeccak256(observation);
packedObservations = abi.encodePacked(
packedObservations,
uint8(counter),
uint32(observation.length),
observation
);
counter++;
}
}
bytes32 batchHash = doubleKeccak256(
abi.encodePacked(uint8(2), keccak256(abi.encodePacked(hashes)))
);
IWormhole.Signature[] memory sigs = new IWormhole.Signature[](1);
(sigs[0].v, sigs[0].r, sigs[0].s) = vm.sign(devnetGuardianPK, batchHash);
sigs[0].guardianIndex = 0;
signedMessage = abi.encodePacked(
uint8(2),
wormhole.getCurrentGuardianSetIndex(),
uint8(1),
sigs[0].guardianIndex,
sigs[0].r,
sigs[0].s,
uint8(sigs[0].v - 27),
numObservations,
hashes,
numObservations,
packedObservations
);
}
/**
* @notice Signs and preformatted simulated Wormhole message
* @param vm_ The preformatted Wormhole message
* @return signedMessage Formatted and signed Wormhole message
*/
function encodeAndSignMessage(
IWormhole.VM memory vm_
) public view override returns (bytes memory signedMessage) {
// Compute the hash of the body
bytes memory body = encodeObservation(vm_);
vm_.hash = doubleKeccak256(body);
// Sign the hash with the devnet guardian private key
IWormhole.Signature[] memory sigs = new IWormhole.Signature[](1);
(sigs[0].v, sigs[0].r, sigs[0].s) = vm.sign(devnetGuardianPK, vm_.hash);
sigs[0].guardianIndex = 0;
signedMessage = abi.encodePacked(
vm_.version,
wormhole.getCurrentGuardianSetIndex(),
uint8(sigs.length),
sigs[0].guardianIndex,
sigs[0].r,
sigs[0].s,
sigs[0].v - 27,
body
);
}
function nextSequence(address emitter) public view returns (uint64) {
return wormhole.nextSequence(emitter);
}
}