-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathmod.rs
237 lines (223 loc) · 7.51 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
// 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;
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::{Decode, Encode};
use scale_info::TypeInfo;
use sp_core::U256;
use sp_runtime::traits::Hash;
use sp_std::{fmt::Debug, marker::PhantomData, vec::Vec};
use crate::{
merkle_proofs::v0::RevealedDidKey,
traits::{DipCallOriginFilter, GetWithArg, GetWithoutArg, Incrementable},
utils::OutputOf,
DipOriginInfo, RelayDipDidProof,
};
pub mod v0;
mod error;
pub use error::*;
/// A KILT-specific DIP identity proof for a parent consumer that supports
/// versioning.
///
/// For more info, refer to the version-specific proofs.
#[derive(Encode, Decode, PartialEq, Eq, Debug, TypeInfo, Clone)]
pub enum VersionedRelaychainStateProof<
ConsumerBlockNumber: Copy + Into<U256> + TryFrom<U256>,
ConsumerBlockHasher: Hash,
KiltDidKeyId,
KiltAccountId,
KiltBlockNumber,
KiltWeb3Name,
KiltLinkableAccountId,
> {
V0(
RelayDipDidProof<
ConsumerBlockNumber,
ConsumerBlockHasher,
KiltDidKeyId,
KiltAccountId,
KiltBlockNumber,
KiltWeb3Name,
KiltLinkableAccountId,
>,
),
}
impl<
ConsumerBlockNumber: Copy + Into<U256> + TryFrom<U256>,
ConsumerBlockHasher: Hash,
KiltDidKeyId,
KiltAccountId,
KiltBlockNumber,
KiltWeb3Name,
KiltLinkableAccountId,
>
From<
RelayDipDidProof<
ConsumerBlockNumber,
ConsumerBlockHasher,
KiltDidKeyId,
KiltAccountId,
KiltBlockNumber,
KiltWeb3Name,
KiltLinkableAccountId,
>,
>
for VersionedRelaychainStateProof<
ConsumerBlockNumber,
ConsumerBlockHasher,
KiltDidKeyId,
KiltAccountId,
KiltBlockNumber,
KiltWeb3Name,
KiltLinkableAccountId,
>
{
fn from(
value: RelayDipDidProof<
ConsumerBlockNumber,
ConsumerBlockHasher,
KiltDidKeyId,
KiltAccountId,
KiltBlockNumber,
KiltWeb3Name,
KiltLinkableAccountId,
>,
) -> Self {
Self::V0(value)
}
}
pub const DEFAULT_MAX_PROVIDER_HEAD_PROOF_LEAVE_COUNT: u32 = 128;
pub const DEFAULT_MAX_PROVIDER_HEAD_PROOF_LEAVE_SIZE: u32 = 1024;
pub const DEFAULT_MAX_DIP_COMMITMENT_PROOF_LEAVE_COUNT: u32 = 128;
pub const DEFAULT_MAX_DIP_COMMITMENT_PROOF_LEAVE_SIZE: u32 = 1024;
pub const DEFAULT_MAX_DID_MERKLE_PROOF_LEAVE_COUNT: u32 = 128;
pub const DEFAULT_MAX_DID_MERKLE_PROOF_LEAVE_SIZE: u32 = 1024;
pub const DEFAULT_MAX_DID_MERKLE_LEAVES_REVEALED: u32 = 128;
/// Versioned proof verifier. For version-specific description, refer to each
/// verifier's documentation.
pub struct KiltVersionedRelaychainVerifier<
ConsumerBlockHashStore,
const KILT_PARA_ID: u32,
KiltRuntime,
DidCallVerifier,
SignedExtra = (),
const MAX_PROVIDER_HEAD_PROOF_LEAVE_COUNT: u32 = DEFAULT_MAX_PROVIDER_HEAD_PROOF_LEAVE_COUNT,
const MAX_PROVIDER_HEAD_PROOF_LEAVE_SIZE: u32 = DEFAULT_MAX_PROVIDER_HEAD_PROOF_LEAVE_SIZE,
const MAX_DIP_COMMITMENT_PROOF_LEAVE_COUNT: u32 = DEFAULT_MAX_DIP_COMMITMENT_PROOF_LEAVE_COUNT,
const MAX_DIP_COMMITMENT_PROOF_LEAVE_SIZE: u32 = DEFAULT_MAX_DIP_COMMITMENT_PROOF_LEAVE_SIZE,
const MAX_DID_MERKLE_PROOF_LEAVE_COUNT: u32 = DEFAULT_MAX_DID_MERKLE_PROOF_LEAVE_COUNT,
const MAX_DID_MERKLE_PROOF_LEAVE_SIZE: u32 = DEFAULT_MAX_DID_MERKLE_PROOF_LEAVE_SIZE,
const MAX_DID_MERKLE_LEAVES_REVEALED: u32 = DEFAULT_MAX_DID_MERKLE_LEAVES_REVEALED,
>(#[allow(clippy::type_complexity)] PhantomData<(ConsumerBlockHashStore, KiltRuntime, DidCallVerifier, SignedExtra)>);
impl<
ConsumerRuntime,
ConsumerBlockHashStore,
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 KiltVersionedRelaychainVerifier<
ConsumerBlockHashStore,
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,
BlockNumberFor<ConsumerRuntime>: Into<U256> + TryFrom<U256>,
ConsumerBlockHashStore:
GetWithArg<BlockNumberFor<ConsumerRuntime>, Result = Option<OutputOf<ConsumerRuntime::Hashing>>>,
KiltRuntime: frame_system::Config<Hash = ConsumerRuntime::Hash>
+ pallet_dip_provider::Config
+ did::Config
+ pallet_web3_names::Config
+ pallet_did_lookup::Config,
KiltRuntime::IdentityCommitmentGenerator: IdentityCommitmentGenerator<KiltRuntime, Output = ConsumerRuntime::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 = DipRelaychainStateProofVerifierError<DidCallVerifier::Error>;
type Proof = VersionedRelaychainStateProof<
BlockNumberFor<ConsumerRuntime>,
ConsumerRuntime::Hashing,
KeyIdOf<KiltRuntime>,
KiltRuntime::AccountId,
BlockNumberFor<KiltRuntime>,
Web3NameOf<KiltRuntime>,
LinkableAccountId,
>;
type VerificationResult = DipOriginInfo<
KeyIdOf<KiltRuntime>,
KiltRuntime::AccountId,
BlockNumberFor<KiltRuntime>,
Web3NameOf<KiltRuntime>,
LinkableAccountId,
MAX_DID_MERKLE_LEAVES_REVEALED,
>;
fn verify_proof_for_call_against_details(
call: &RuntimeCallOf<ConsumerRuntime>,
subject: &ConsumerRuntime::Identifier,
submitter: &ConsumerRuntime::AccountId,
identity_details: &mut Option<ConsumerRuntime::LocalIdentityInfo>,
proof: Self::Proof,
) -> Result<Self::VerificationResult, Self::Error> {
match proof {
VersionedRelaychainStateProof::V0(v0_proof) => <v0::RelaychainVerifier<
ConsumerBlockHashStore,
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,
> as IdentityProofVerifier<ConsumerRuntime>>::verify_proof_for_call_against_details(
call,
subject,
submitter,
identity_details,
v0_proof,
),
}
}
}