-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathmod.rs
355 lines (329 loc) · 12.6 KB
/
mod.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
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
// KILT Blockchain – <https://kilt.io>
// Copyright (C) 2025, KILT Foundation
// The KILT Blockchain is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// The KILT Blockchain is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
// If you feel like getting in touch with us, you can do so at <hello@kilt.io>
use did::KeyIdOf;
use frame_system::pallet_prelude::{BlockNumberFor, HeaderFor};
use pallet_did_lookup::linkable_account::LinkableAccountId;
use pallet_dip_consumer::{traits::IdentityProofVerifier, RuntimeCallOf};
use pallet_dip_provider::traits::IdentityCommitmentGenerator;
use pallet_web3_names::Web3NameOf;
use parity_scale_codec::Encode;
use sp_runtime::{traits::Zero, SaturatedConversion};
use sp_std::{fmt::Debug, marker::PhantomData, vec::Vec};
use crate::{
merkle_proofs::v0::ParachainDipDidProof,
traits::{DipCallOriginFilter, GetWithArg, GetWithoutArg, Incrementable},
utils::OutputOf,
verifier::errors::DipProofComponentTooLargeError,
DipOriginInfo, DipParachainStateProofVerifierError, RevealedDidKey,
};
#[cfg(test)]
mod mock;
#[cfg(test)]
mod tests;
const LOG_TARGET: &str = "dip::consumer::ParachainVerifierV0";
/// Proof verifier configured given a specific KILT runtime implementation.
///
/// The generic types
/// indicate the following:
/// * `RelaychainRuntime`: The relaychain runtime definition.
/// * `RelaychainStateRootStore`: A type providing state roots for relaychain
/// blocks.
/// * `KILT_PARA_ID`: The ID of the specific KILT parachain instance.
/// * `KiltRuntime`: A KILT runtime definition.
/// * `DidCallVerifier`: Logic to map `RuntimeCall`s to a specific DID key
/// relationship. This information is used once the Merkle proof is verified,
/// to filter only the revealed keys that match the provided relationship.
/// * `SignedExtra`: Any additional information that must be signed by the DID
/// subject in the cross-chain operation.
/// * `MAX_PROVIDER_HEAD_PROOF_LEAVE_COUNT`: The maximum number of leaves that
/// can be revealed as part of the parachain head storage proof.
/// * `MAX_PROVIDER_HEAD_PROOF_LEAVE_SIZE`: The maximum size of each leaf
/// revealed as part of the parachain head storage proof.
/// * `MAX_DIP_COMMITMENT_PROOF_LEAVE_COUNT`: The maximum number of leaves that
/// can be revealed as part of the DIP commitment storage proof.
/// * `MAX_DIP_COMMITMENT_PROOF_LEAVE_SIZE`: The maximum size of each leaf
/// revealed as part of the DIP commitment storage proof.
/// * `MAX_DID_MERKLE_PROOF_LEAVE_COUNT`: The maximum number of *blinded* leaves
/// that can be revealed as part of the DID Merkle proof.
/// * `MAX_DID_MERKLE_PROOF_LEAVE_SIZE`: The maximum size of each *blinded* leaf
/// revealed as part of the DID Merkle proof.
/// * `MAX_DID_MERKLE_LEAVES_REVEALED`: The maximum number of leaves that can be
/// revealed as part of the DID Merkle proof.
pub struct ParachainVerifier<
RelaychainRuntime,
RelaychainStateRootStore,
const KILT_PARA_ID: u32,
KiltRuntime,
DidCallVerifier,
SignedExtra,
const MAX_PROVIDER_HEAD_PROOF_LEAVE_COUNT: u32,
const MAX_PROVIDER_HEAD_PROOF_LEAVE_SIZE: u32,
const MAX_DIP_COMMITMENT_PROOF_LEAVE_COUNT: u32,
const MAX_DIP_COMMITMENT_PROOF_LEAVE_SIZE: u32,
const MAX_DID_MERKLE_PROOF_LEAVE_COUNT: u32,
const MAX_DID_MERKLE_PROOF_LEAVE_SIZE: u32,
const MAX_DID_MERKLE_LEAVES_REVEALED: u32,
>(
PhantomData<(
RelaychainRuntime,
RelaychainStateRootStore,
KiltRuntime,
DidCallVerifier,
SignedExtra,
)>,
);
impl<
ConsumerRuntime,
RelaychainRuntime,
RelaychainStateRootStore,
const KILT_PARA_ID: u32,
KiltRuntime,
DidCallVerifier,
SignedExtra,
const MAX_PROVIDER_HEAD_PROOF_LEAVE_COUNT: u32,
const MAX_PROVIDER_HEAD_PROOF_LEAVE_SIZE: u32,
const MAX_DIP_COMMITMENT_PROOF_LEAVE_COUNT: u32,
const MAX_DIP_COMMITMENT_PROOF_LEAVE_SIZE: u32,
const MAX_DID_MERKLE_PROOF_LEAVE_COUNT: u32,
const MAX_DID_MERKLE_PROOF_LEAVE_SIZE: u32,
const MAX_DID_MERKLE_LEAVES_REVEALED: u32,
> IdentityProofVerifier<ConsumerRuntime>
for ParachainVerifier<
RelaychainRuntime,
RelaychainStateRootStore,
KILT_PARA_ID,
KiltRuntime,
DidCallVerifier,
SignedExtra,
MAX_PROVIDER_HEAD_PROOF_LEAVE_COUNT,
MAX_PROVIDER_HEAD_PROOF_LEAVE_SIZE,
MAX_DIP_COMMITMENT_PROOF_LEAVE_COUNT,
MAX_DIP_COMMITMENT_PROOF_LEAVE_SIZE,
MAX_DID_MERKLE_PROOF_LEAVE_COUNT,
MAX_DID_MERKLE_PROOF_LEAVE_SIZE,
MAX_DID_MERKLE_LEAVES_REVEALED,
> where
ConsumerRuntime: pallet_dip_consumer::Config<Identifier = KiltRuntime::Identifier>,
ConsumerRuntime::LocalIdentityInfo: Incrementable + Default,
RelaychainRuntime: frame_system::Config,
RelaychainStateRootStore:
GetWithArg<BlockNumberFor<RelaychainRuntime>, Result = Option<OutputOf<RelaychainRuntime::Hashing>>>,
KiltRuntime: frame_system::Config<Hash = RelaychainRuntime::Hash>
+ pallet_dip_provider::Config
+ did::Config
+ pallet_web3_names::Config
+ pallet_did_lookup::Config,
KiltRuntime::IdentityCommitmentGenerator:
IdentityCommitmentGenerator<KiltRuntime, Output = RelaychainRuntime::Hash>,
SignedExtra: GetWithoutArg,
SignedExtra::Result: Encode + Debug,
DidCallVerifier: DipCallOriginFilter<
RuntimeCallOf<ConsumerRuntime>,
OriginInfo = Vec<RevealedDidKey<KeyIdOf<KiltRuntime>, BlockNumberFor<KiltRuntime>, KiltRuntime::AccountId>>,
>,
DidCallVerifier::Error: Into<u8> + Debug,
{
type Error = DipParachainStateProofVerifierError<DidCallVerifier::Error>;
type Proof = ParachainDipDidProof<
BlockNumberFor<RelaychainRuntime>,
KeyIdOf<KiltRuntime>,
KiltRuntime::AccountId,
BlockNumberFor<KiltRuntime>,
Web3NameOf<KiltRuntime>,
LinkableAccountId,
BlockNumberFor<ConsumerRuntime>,
>;
type VerificationResult = DipOriginInfo<
KeyIdOf<KiltRuntime>,
KiltRuntime::AccountId,
BlockNumberFor<KiltRuntime>,
Web3NameOf<KiltRuntime>,
LinkableAccountId,
MAX_DID_MERKLE_LEAVES_REVEALED,
>;
#[allow(clippy::as_conversions)]
fn verify_proof_for_call_against_details(
call: &RuntimeCallOf<ConsumerRuntime>,
subject: &<ConsumerRuntime as pallet_dip_consumer::Config>::Identifier,
submitter: &<ConsumerRuntime>::AccountId,
identity_details: &mut Option<<ConsumerRuntime as pallet_dip_consumer::Config>::LocalIdentityInfo>,
proof: Self::Proof,
) -> Result<Self::VerificationResult, Self::Error> {
// 1. Verify parachain state is finalized by relay chain and fresh.
if proof.provider_head_proof.proof.len() > MAX_PROVIDER_HEAD_PROOF_LEAVE_COUNT.saturated_into::<usize>() {
let inner_error = DipProofComponentTooLargeError::ParachainHeadProofTooManyLeaves;
log::info!(
target: LOG_TARGET,
"Failed to verify DIP proof with error {:#?}",
inner_error
);
return Err(DipParachainStateProofVerifierError::ProofComponentTooLarge(
inner_error as u8,
));
}
if proof
.provider_head_proof
.proof
.iter()
.any(|l| l.len() > MAX_PROVIDER_HEAD_PROOF_LEAVE_SIZE.saturated_into::<usize>())
{
let inner_error = DipProofComponentTooLargeError::ParachainHeadProofLeafTooLarge;
log::info!(
target: LOG_TARGET,
"Failed to verify DIP proof with error {:#?}",
inner_error
);
return Err(DipParachainStateProofVerifierError::ProofComponentTooLarge(
inner_error as u8,
));
}
let proof_without_relaychain = proof
.verify_provider_head_proof::<RelaychainRuntime::Hashing, RelaychainStateRootStore, HeaderFor<KiltRuntime>>(
KILT_PARA_ID,
)
.map_err(|e| {
log::info!(target: LOG_TARGET, "Failed to verify DIP proof with error {:#?}", e);
DipParachainStateProofVerifierError::ProofVerification(e)
})?;
log::info!(
target: LOG_TARGET,
"Verified parachain state root: {:#?}",
proof_without_relaychain.state_root
);
// 2. Verify commitment is included in provider parachain state.
if proof_without_relaychain.dip_commitment_proof.0.len()
> MAX_DIP_COMMITMENT_PROOF_LEAVE_COUNT.saturated_into::<usize>()
{
let inner_error = DipProofComponentTooLargeError::DipCommitmentProofTooManyLeaves;
log::info!(
target: LOG_TARGET,
"Failed to verify DIP proof with error {:#?}",
inner_error
);
return Err(DipParachainStateProofVerifierError::ProofComponentTooLarge(
inner_error as u8,
));
}
if proof_without_relaychain
.dip_commitment_proof
.0
.iter()
.any(|l| l.len() > MAX_DIP_COMMITMENT_PROOF_LEAVE_SIZE.saturated_into::<usize>())
{
let inner_error = DipProofComponentTooLargeError::DipCommitmentProofLeafTooLarge;
log::info!(
target: LOG_TARGET,
"Failed to verify DIP proof with error {:#?}",
inner_error
);
return Err(DipParachainStateProofVerifierError::ProofComponentTooLarge(
inner_error as u8,
));
}
let proof_without_parachain = proof_without_relaychain
.verify_dip_commitment_proof_for_subject::<KiltRuntime::Hashing, KiltRuntime>(subject)
.map_err(DipParachainStateProofVerifierError::ProofVerification)?;
log::info!(
target: LOG_TARGET,
"Verified subject DIP commitment: {:#?}",
proof_without_parachain.dip_commitment
);
// 3. Verify DIP Merkle proof.
if proof_without_parachain.dip_proof.blinded.len() > MAX_DID_MERKLE_PROOF_LEAVE_COUNT.saturated_into::<usize>()
{
let inner_error = DipProofComponentTooLargeError::DipProofTooManyLeaves;
log::info!(
target: LOG_TARGET,
"Failed to verify DIP proof with error {:#?}",
inner_error
);
return Err(DipParachainStateProofVerifierError::ProofComponentTooLarge(
inner_error as u8,
));
}
if proof_without_parachain
.dip_proof
.blinded
.iter()
.any(|l| l.len() > MAX_DID_MERKLE_PROOF_LEAVE_SIZE.saturated_into::<usize>())
{
let inner_error = DipProofComponentTooLargeError::DipProofLeafTooLarge;
log::info!(
target: LOG_TARGET,
"Failed to verify DIP proof with error {:#?}",
inner_error
);
return Err(DipParachainStateProofVerifierError::ProofComponentTooLarge(
inner_error as u8,
));
}
let proof_without_dip_merkle = proof_without_parachain
.verify_dip_proof::<KiltRuntime::Hashing, MAX_DID_MERKLE_LEAVES_REVEALED>()
.map_err(|e| {
log::info!(target: LOG_TARGET, "Failed to verify DIP proof with error {:#?}", e);
DipParachainStateProofVerifierError::ProofVerification(e)
})?;
log::info!(
target: LOG_TARGET,
"Verified DID Merkle leaves: {:#?}",
proof_without_dip_merkle.revealed_leaves
);
// 4. Verify call is signed by one of the DID keys revealed in the proof
let current_block_number = frame_system::Pallet::<ConsumerRuntime>::block_number();
let consumer_genesis_hash =
frame_system::Pallet::<ConsumerRuntime>::block_hash(BlockNumberFor::<ConsumerRuntime>::zero());
let signed_extra = SignedExtra::get();
log::trace!(target: LOG_TARGET, "Additional components for signature verification: current block number = {:#?}, genesis hash = {:#?}, signed extra = {:#?}", current_block_number, consumer_genesis_hash, signed_extra);
let encoded_payload = (
call,
&identity_details,
submitter,
proof_without_dip_merkle.signature.valid_until,
consumer_genesis_hash,
signed_extra,
)
.encode();
log::trace!(target: LOG_TARGET, "Encoded final payload: {:#?}", encoded_payload);
let revealed_did_info = proof_without_dip_merkle
.verify_signature_time(¤t_block_number)
.and_then(|p| p.retrieve_signing_leaves_for_payload(&encoded_payload[..]))
.map_err(|e| {
log::info!(target: LOG_TARGET, "Failed to verify DIP proof with error {:#?}", e);
DipParachainStateProofVerifierError::ProofVerification(e)
})?;
// 5. Verify the signing key fulfills the requirements
let signing_keys = revealed_did_info.get_signing_leaves().map_err(|e| {
log::info!(target: LOG_TARGET, "Failed to verify DIP proof with error {:#?}", e);
DipParachainStateProofVerifierError::ProofVerification(e)
})?;
DidCallVerifier::check_call_origin_info(call, &signing_keys.cloned().collect::<Vec<_>>()).map_err(|e| {
log::info!(target: LOG_TARGET, "Failed to verify DIP proof with error {:#?}", e);
DipParachainStateProofVerifierError::DidOriginError(e)
})?;
// 6. Increment the local details
if let Some(details) = identity_details {
details.increment();
} else {
let default_details = Default::default();
log::trace!(
target: LOG_TARGET,
"No details present for subject {:#?}. Setting default ones: {:#?}.",
subject,
default_details
);
*identity_details = Some(default_details);
};
Ok(revealed_did_info)
}
}