-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathimpls.rs
284 lines (255 loc) · 8.51 KB
/
impls.rs
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
// Copyright (c) 2024 Polytope Labs.
// SPDX-License-Identifier: Apache-2.0
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//! Pallet methods
use crate::{
child_trie::{RequestCommitments, ResponseCommitments},
dispatcher::{FeeMetadata, RequestMetadata},
offchain::{self, ForkIdentifier, Leaf, LeafIndexAndPos, OffchainDBProvider, Proof, ProofKeys},
Config, Error, Event, Pallet, Responded,
};
use alloc::{string::ToString, vec, vec::Vec};
use codec::Decode;
use frame_support::dispatch::DispatchResult;
use frame_system::Phase;
use ismp::{
handlers::{handle_incoming_message, MessageResult},
messaging::{hash_request, hash_response, Message},
router::{Request, Response},
};
use sp_core::{offchain::StorageKind, H256};
impl<T: Config> Pallet<T> {
/// Deposit a pallet [`Event<T>`]
pub fn deposit_pallet_event<E: Into<Event<T>>>(event: E) {
Self::deposit_event(event.into())
}
/// Generate an MMR proof for the given `leaf_indices`.
/// Note this method can only be used from an off-chain context
/// (Offchain Worker or Runtime API call), since it requires
/// all the leaves to be present.
/// It may return an error or panic if used incorrectly.
pub fn generate_proof(
keys: ProofKeys,
) -> Result<(Vec<Leaf>, Proof<H256>), sp_mmr_primitives::Error> {
let leaf_indices_and_positions = match keys {
ProofKeys::Requests(commitments) => commitments
.into_iter()
.map(|commitment| {
let val = RequestCommitments::<T>::get(commitment)
.ok_or_else(|| sp_mmr_primitives::Error::LeafNotFound)?
.mmr;
Ok(val)
})
.collect::<Result<Vec<_>, _>>()?,
ProofKeys::Responses(commitments) => commitments
.into_iter()
.map(|commitment| {
let val = ResponseCommitments::<T>::get(commitment)
.ok_or_else(|| sp_mmr_primitives::Error::LeafNotFound)?
.mmr;
Ok(val)
})
.collect::<Result<Vec<_>, _>>()?,
};
let indices =
leaf_indices_and_positions.iter().map(|val| val.leaf_index).collect::<Vec<_>>();
let (leaves, proof) = T::OffchainDB::proof(indices)?;
let proof = Proof {
leaf_indices_and_pos: leaf_indices_and_positions,
leaf_count: proof.leaf_count,
items: proof.items,
};
Ok((leaves, proof))
}
/// Execute the provided ISMP datagrams, this will short circuit if any messages are invalid.
pub fn execute(messages: Vec<Message>) -> DispatchResult {
// Define a host
let host = Pallet::<T>::default();
let events = messages
.iter()
.map(|msg| handle_incoming_message(&host, msg.clone()))
.collect::<Result<Vec<_>, _>>()
.and_then(|result| {
result
.into_iter()
// check that requests will be successfully dispatched
// so we can not be spammed with failing txs
.map(|result| match result {
MessageResult::Request(results) |
MessageResult::Response(results) |
MessageResult::Timeout(results) => results,
MessageResult::ConsensusMessage(events) =>
events.into_iter().map(Ok).collect(),
MessageResult::FrozenClient(_) => {
vec![]
},
})
.flatten()
.collect::<Result<Vec<_>, _>>()
})
.map_err(|err| {
log::debug!(target: "ismp", "Handling Error {:?}", err);
Pallet::<T>::deposit_event(Event::<T>::Errors { errors: vec![err.into()] });
Error::<T>::InvalidMessage
})?;
for event in events {
// deposit any relevant events
Pallet::<T>::deposit_event(event.into())
}
Ok(())
}
/// Dispatch an outgoing request, returns the request commitment
pub fn dispatch_request(request: Request, meta: FeeMetadata<T>) -> Result<H256, ismp::Error> {
let commitment = hash_request::<Pallet<T>>(&request);
if RequestCommitments::<T>::contains_key(commitment) {
Err(ismp::Error::Custom("Duplicate request".to_string()))?
}
let (dest_chain, source_chain, nonce) =
(request.dest_chain(), request.source_chain(), request.nonce());
let leaf_index_and_pos = T::OffchainDB::push(Leaf::Request(request));
// Deposit Event
Pallet::<T>::deposit_event(Event::Request {
request_nonce: nonce,
source_chain,
dest_chain,
commitment,
});
RequestCommitments::<T>::insert(
commitment,
RequestMetadata {
mmr: LeafIndexAndPos {
leaf_index: leaf_index_and_pos.index,
pos: leaf_index_and_pos.position,
},
fee: meta,
claimed: false,
},
);
Ok(commitment)
}
/// Dispatch an outgoing response, returns the response commitment
pub fn dispatch_response(
response: Response,
meta: FeeMetadata<T>,
) -> Result<H256, ismp::Error> {
let req_commitment = hash_request::<Pallet<T>>(&response.request());
if Responded::<T>::contains_key(req_commitment) {
Err(ismp::Error::Custom("Request has been responded to".to_string()))?
}
let commitment = hash_response::<Pallet<T>>(&response);
let (dest_chain, source_chain, nonce) =
(response.dest_chain(), response.source_chain(), response.nonce());
let leaf_index_and_pos = T::OffchainDB::push(Leaf::Response(response));
Pallet::<T>::deposit_event(Event::Response {
request_nonce: nonce,
dest_chain,
source_chain,
commitment,
req_commitment,
});
ResponseCommitments::<T>::insert(
commitment,
RequestMetadata {
mmr: LeafIndexAndPos {
leaf_index: leaf_index_and_pos.index,
pos: leaf_index_and_pos.position,
},
fee: meta,
claimed: false,
},
);
Responded::<T>::insert(req_commitment, true);
Ok(commitment)
}
/// Gets the request from the offchain storage
pub fn request(commitment: H256) -> Option<Request> {
let pos = RequestCommitments::<T>::get(commitment)?.mmr.pos;
match T::OffchainDB::leaf(pos) {
Ok(Some(Leaf::Request(req))) => Some(req),
_ => {
let key = offchain::default_key(commitment);
let Some(elem) = sp_io::offchain::local_storage_get(StorageKind::PERSISTENT, &key)
else {
None?
};
match Leaf::decode(&mut &*elem).ok() {
Some(Leaf::Request(req)) => Some(req),
_ => None,
}
},
}
}
/// Gets the response from the offchain storage
pub fn response(commitment: H256) -> Option<Response> {
let pos = ResponseCommitments::<T>::get(commitment)?.mmr.pos;
match T::OffchainDB::leaf(pos) {
Ok(Some(Leaf::Response(res))) => Some(res),
_ => {
let key = offchain::default_key(commitment);
let Some(elem) = sp_io::offchain::local_storage_get(StorageKind::PERSISTENT, &key)
else {
None?
};
match Leaf::decode(&mut &*elem).ok() {
Some(Leaf::Response(res)) => Some(res),
_ => None,
}
},
}
}
/// Fetch all ISMP handler events in the block, should only be called from runtime-api.
pub fn block_events() -> Vec<ismp::events::Event>
where
<T as frame_system::Config>::RuntimeEvent: TryInto<Event<T>>,
{
frame_system::Pallet::<T>::read_events_no_consensus()
.filter_map(|e| {
let frame_system::EventRecord { event, .. } = *e;
let pallet_event: Event<T> = event.try_into().ok()?;
pallet_event.try_into().ok()
})
.collect()
}
/// Fetch all ISMP handler events and their extrinsic metadata, should only be called from
/// runtime-api.
pub fn block_events_with_metadata() -> Vec<(ismp::events::Event, Option<u32>)>
where
<T as frame_system::Config>::RuntimeEvent: TryInto<Event<T>>,
{
frame_system::Pallet::<T>::read_events_no_consensus()
.filter_map(|e| {
let frame_system::EventRecord { event, phase, .. } = *e;
let index = match phase {
Phase::ApplyExtrinsic(index) => Some(index),
_ => None,
};
let pallet_event: Event<T> = event.try_into().ok()?;
let event = pallet_event.try_into().ok()?;
Some((event, index))
})
.collect()
}
/// Fetches the full requests from the offchain for the given commitments.
pub fn requests(commitments: Vec<H256>) -> Vec<Request> {
commitments.into_iter().filter_map(|cm| Self::request(cm)).collect()
}
/// Fetches the full responses from the offchain for the given commitments.
pub fn responses(commitments: Vec<H256>) -> Vec<Response> {
commitments.into_iter().filter_map(|cm| Self::response(cm)).collect()
}
}
impl<T: Config> ForkIdentifier<T> for Pallet<T> {
fn identifier() -> <T as frame_system::Config>::Hash {
Self::child_trie_root()
}
}