-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathWormholeTransceiver.sol
253 lines (216 loc) · 9.31 KB
/
WormholeTransceiver.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
// SPDX-License-Identifier: Apache 2
pragma solidity >=0.8.8 <0.9.0;
import "wormhole-solidity-sdk/WormholeRelayerSDK.sol";
import "wormhole-solidity-sdk/libraries/BytesParsing.sol";
import "wormhole-solidity-sdk/interfaces/IWormhole.sol";
import "../../libraries/TransceiverHelpers.sol";
import "../../libraries/TransceiverStructs.sol";
import "../../interfaces/IWormholeTransceiver.sol";
import "../../interfaces/ISpecialRelayer.sol";
import "../../interfaces/INttManager.sol";
import "./WormholeTransceiverState.sol";
/// @title WormholeTransceiver
/// @author Wormhole Project Contributors.
/// @notice Transceiver implementation for Wormhole.
///
/// @dev This contract is responsible for sending and receiving NTT messages
/// that are authenticated through Wormhole Core.
///
/// @dev Messages can be delivered either via standard relaying or special relaying, or
/// manually via the core layer.
///
/// @dev Once a message is received, it is delivered to its corresponding
/// NttManager contract.
contract WormholeTransceiver is
IWormholeTransceiver,
IWormholeReceiver,
WormholeTransceiverState
{
using BytesParsing for bytes;
constructor(
address nttManager,
address wormholeCoreBridge,
address wormholeRelayerAddr,
address specialRelayerAddr,
uint8 _consistencyLevel,
uint256 _gasLimit
)
WormholeTransceiverState(
nttManager,
wormholeCoreBridge,
wormholeRelayerAddr,
specialRelayerAddr,
_consistencyLevel,
_gasLimit
)
{}
// ==================== External Interface ===============================================
/// @inheritdoc IWormholeTransceiver
function receiveMessage(bytes memory encodedMessage) external {
uint16 sourceChainId;
bytes memory payload;
(sourceChainId, payload) = _verifyMessage(encodedMessage);
// parse the encoded Transceiver payload
TransceiverStructs.TransceiverMessage memory parsedTransceiverMessage;
TransceiverStructs.NttManagerMessage memory parsedNttManagerMessage;
(parsedTransceiverMessage, parsedNttManagerMessage) = TransceiverStructs
.parseTransceiverAndNttManagerMessage(WH_TRANSCEIVER_PAYLOAD_PREFIX, payload);
_deliverToNttManager(
sourceChainId,
parsedTransceiverMessage.sourceNttManagerAddress,
parsedTransceiverMessage.recipientNttManagerAddress,
parsedNttManagerMessage
);
}
/// @inheritdoc IWormholeReceiver
function receiveWormholeMessages(
bytes memory payload,
bytes[] memory additionalMessages,
bytes32 sourceAddress,
uint16 sourceChain,
bytes32 deliveryHash
) external payable onlyRelayer {
if (getWormholePeer(sourceChain) != sourceAddress) {
revert InvalidWormholePeer(sourceChain, sourceAddress);
}
// VAA replay protection:
// - Note that this VAA is for the AR delivery, not for the raw message emitted by the source
// - chain Transceiver contract. The VAAs received by this entrypoint are different than the
// - VAA received by the receiveMessage entrypoint.
if (isVAAConsumed(deliveryHash)) {
revert TransferAlreadyCompleted(deliveryHash);
}
_setVAAConsumed(deliveryHash);
// We don't honor additional messages in this handler.
if (additionalMessages.length > 0) {
revert UnexpectedAdditionalMessages();
}
// emit `ReceivedRelayedMessage` event
emit ReceivedRelayedMessage(deliveryHash, sourceChain, sourceAddress);
// parse the encoded Transceiver payload
TransceiverStructs.TransceiverMessage memory parsedTransceiverMessage;
TransceiverStructs.NttManagerMessage memory parsedNttManagerMessage;
(parsedTransceiverMessage, parsedNttManagerMessage) = TransceiverStructs
.parseTransceiverAndNttManagerMessage(WH_TRANSCEIVER_PAYLOAD_PREFIX, payload);
_deliverToNttManager(
sourceChain,
parsedTransceiverMessage.sourceNttManagerAddress,
parsedTransceiverMessage.recipientNttManagerAddress,
parsedNttManagerMessage
);
}
/// @inheritdoc IWormholeTransceiver
function parseWormholeTransceiverInstruction(bytes memory encoded)
public
pure
returns (WormholeTransceiverInstruction memory instruction)
{
// If the user doesn't pass in any transceiver instructions then the default is false
if (encoded.length == 0) {
instruction.shouldSkipRelayerSend = false;
return instruction;
}
uint256 offset = 0;
(instruction.shouldSkipRelayerSend, offset) = encoded.asBoolUnchecked(offset);
encoded.checkLength(offset);
}
/// @inheritdoc IWormholeTransceiver
function encodeWormholeTransceiverInstruction(WormholeTransceiverInstruction memory instruction)
public
pure
returns (bytes memory)
{
return abi.encodePacked(instruction.shouldSkipRelayerSend);
}
// ==================== Internal ========================================================
function _quoteDeliveryPrice(
uint16 targetChain,
TransceiverStructs.TransceiverInstruction memory instruction
) internal view override returns (uint256 nativePriceQuote) {
// Check the special instruction up front to see if we should skip sending via a relayer
WormholeTransceiverInstruction memory weIns =
parseWormholeTransceiverInstruction(instruction.payload);
if (weIns.shouldSkipRelayerSend) {
return 0;
}
if (_checkInvalidRelayingConfig(targetChain)) {
revert InvalidRelayingConfig(targetChain);
}
if (_shouldRelayViaStandardRelaying(targetChain)) {
(uint256 cost,) = wormholeRelayer.quoteEVMDeliveryPrice(targetChain, 0, gasLimit);
return cost;
} else if (isSpecialRelayingEnabled(targetChain)) {
uint256 cost = specialRelayer.quoteDeliveryPrice(getNttManagerToken(), targetChain, 0);
return cost;
} else {
return 0;
}
}
function _sendMessage(
uint16 recipientChain,
uint256 deliveryPayment,
address caller,
bytes32 recipientNttManagerAddress,
TransceiverStructs.TransceiverInstruction memory instruction,
bytes memory nttManagerMessage
) internal override {
(
TransceiverStructs.TransceiverMessage memory transceiverMessage,
bytes memory encodedTransceiverPayload
) = TransceiverStructs.buildAndEncodeTransceiverMessage(
WH_TRANSCEIVER_PAYLOAD_PREFIX,
toWormholeFormat(caller),
recipientNttManagerAddress,
nttManagerMessage,
new bytes(0)
);
WormholeTransceiverInstruction memory weIns =
parseWormholeTransceiverInstruction(instruction.payload);
if (!weIns.shouldSkipRelayerSend && _shouldRelayViaStandardRelaying(recipientChain)) {
wormholeRelayer.sendPayloadToEvm{value: deliveryPayment}(
recipientChain,
fromWormholeFormat(getWormholePeer(recipientChain)),
encodedTransceiverPayload,
0,
gasLimit
);
emit RelayingInfo(uint8(RelayingType.Standard), deliveryPayment);
} else if (!weIns.shouldSkipRelayerSend && isSpecialRelayingEnabled(recipientChain)) {
uint64 sequence =
wormhole.publishMessage(0, encodedTransceiverPayload, consistencyLevel);
specialRelayer.requestDelivery{value: deliveryPayment}(
getNttManagerToken(), recipientChain, 0, sequence
);
emit RelayingInfo(uint8(RelayingType.Special), deliveryPayment);
} else {
wormhole.publishMessage(0, encodedTransceiverPayload, consistencyLevel);
emit RelayingInfo(uint8(RelayingType.Manual), deliveryPayment);
}
emit SendTransceiverMessage(recipientChain, transceiverMessage);
}
function _verifyMessage(bytes memory encodedMessage) internal returns (uint16, bytes memory) {
// verify VAA against Wormhole Core Bridge contract
(IWormhole.VM memory vm, bool valid, string memory reason) =
wormhole.parseAndVerifyVM(encodedMessage);
// ensure that the VAA is valid
if (!valid) {
revert InvalidVaa(reason);
}
// ensure that the message came from a registered peer contract
if (!_verifyBridgeVM(vm)) {
revert InvalidWormholePeer(vm.emitterChainId, vm.emitterAddress);
}
// save the VAA hash in storage to protect against replay attacks.
if (isVAAConsumed(vm.hash)) {
revert TransferAlreadyCompleted(vm.hash);
}
_setVAAConsumed(vm.hash);
// emit `ReceivedMessage` event
emit ReceivedMessage(vm.hash, vm.emitterChainId, vm.emitterAddress, vm.sequence);
return (vm.emitterChainId, vm.payload);
}
function _verifyBridgeVM(IWormhole.VM memory vm) internal view returns (bool) {
checkFork(wormholeTransceiver_evmChainId);
return getWormholePeer(vm.emitterChainId) == vm.emitterAddress;
}
}