This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
lib.rs
1779 lines (1597 loc) · 57.5 KB
/
lib.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
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
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// This file is part of Substrate.
// Copyright (C) Parity Technologies (UK) Ltd.
// 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 State Trie Migration
//!
//! Reads and writes all keys and values in the entire state in a systematic way. This is useful for
//! upgrading a chain to [`sp-core::StateVersion::V1`], where all keys need to be touched.
//!
//! ## Migration Types
//!
//! This pallet provides 2 ways to do this, each of which is suited for a particular use-case, and
//! can be enabled independently.
//!
//! ### Auto migration
//!
//! This system will try and migrate all keys by continuously using `on_initialize`. It is only
//! sensible for a relay chain or a solo chain, where going slightly over weight is not a problem.
//! It can be configured so that the migration takes at most `n` items and tries to not go over `x`
//! bytes, but the latter is not guaranteed.
//!
//! For example, if a chain contains keys of 1 byte size, the `on_initialize` could read up to `x -
//! 1` bytes from `n` different keys, while the next key is suddenly `:code:`, and there is no way
//! to bail out of this.
//!
//! ### Signed migration
//!
//! As a backup, the migration process can be set in motion via signed transactions that basically
//! say in advance how many items and how many bytes they will consume, and pay for it as well. This
//! can be a good safe alternative, if the former system is not desirable.
//!
//! The (minor) caveat of this approach is that we cannot know in advance how many bytes reading a
//! certain number of keys will incur. To overcome this, the runtime needs to configure this pallet
//! with a `SignedDepositPerItem`. This is the per-item deposit that the origin of the signed
//! migration transactions need to have in their account (on top of the normal fee) and if the size
//! witness data that they claim is incorrect, this deposit is slashed.
//!
//! ---
//!
//! Initially, this pallet does not contain any auto migration. They must be manually enabled by the
//! `ControlOrigin`.
#![cfg_attr(not(feature = "std"), no_std)]
pub use pallet::*;
pub mod weights;
const LOG_TARGET: &str = "runtime::state-trie-migration";
#[macro_export]
macro_rules! log {
($level:tt, $patter:expr $(, $values:expr)* $(,)?) => {
log::$level!(
target: crate::LOG_TARGET,
concat!("[{:?}] 🤖 ", $patter), frame_system::Pallet::<T>::block_number() $(, $values)*
)
};
}
#[frame_support::pallet]
pub mod pallet {
pub use crate::weights::WeightInfo;
use frame_support::{
dispatch::{DispatchErrorWithPostInfo, PostDispatchInfo},
ensure,
pallet_prelude::*,
traits::{Currency, Get},
};
use frame_system::{self, pallet_prelude::*};
use sp_core::{
hexdisplay::HexDisplay, storage::well_known_keys::DEFAULT_CHILD_STORAGE_KEY_PREFIX,
};
use sp_runtime::{
self,
traits::{Saturating, Zero},
};
use sp_std::{ops::Deref, prelude::*};
pub(crate) type BalanceOf<T> =
<<T as Config>::Currency as Currency<<T as frame_system::Config>::AccountId>>::Balance;
/// The progress of either the top or child keys.
#[derive(
CloneNoBound,
Encode,
Decode,
scale_info::TypeInfo,
PartialEqNoBound,
EqNoBound,
MaxEncodedLen,
)]
#[scale_info(skip_type_params(MaxKeyLen))]
#[codec(mel_bound())]
pub enum Progress<MaxKeyLen: Get<u32>> {
/// Yet to begin.
ToStart,
/// Ongoing, with the last key given.
LastKey(BoundedVec<u8, MaxKeyLen>),
/// All done.
Complete,
}
/// Convenience type for easier usage of [`Progress`].
pub type ProgressOf<T> = Progress<<T as Config>::MaxKeyLen>;
/// A migration task stored in state.
///
/// It tracks the last top and child keys read.
#[derive(Clone, Encode, Decode, scale_info::TypeInfo, PartialEq, Eq, MaxEncodedLen)]
#[codec(mel_bound(T: Config))]
#[scale_info(skip_type_params(T))]
pub struct MigrationTask<T: Config> {
/// The current top trie migration progress.
pub(crate) progress_top: ProgressOf<T>,
/// The current child trie migration progress.
///
/// If `ToStart`, no further top keys are processed until the child key migration is
/// `Complete`.
pub(crate) progress_child: ProgressOf<T>,
/// Dynamic counter for the number of items that we have processed in this execution from
/// the top trie.
///
/// It is not written to storage.
#[codec(skip)]
pub(crate) dyn_top_items: u32,
/// Dynamic counter for the number of items that we have processed in this execution from
/// any child trie.
///
/// It is not written to storage.
#[codec(skip)]
pub(crate) dyn_child_items: u32,
/// Dynamic counter for for the byte size of items that we have processed in this
/// execution.
///
/// It is not written to storage.
#[codec(skip)]
pub(crate) dyn_size: u32,
/// The total size of the migration, over all executions.
///
/// This only kept around for bookkeeping and debugging.
pub(crate) size: u32,
/// The total count of top keys in the migration, over all executions.
///
/// This only kept around for bookkeeping and debugging.
pub(crate) top_items: u32,
/// The total count of child keys in the migration, over all executions.
///
/// This only kept around for bookkeeping and debugging.
pub(crate) child_items: u32,
#[codec(skip)]
pub(crate) _ph: sp_std::marker::PhantomData<T>,
}
impl<Size: Get<u32>> sp_std::fmt::Debug for Progress<Size> {
fn fmt(&self, f: &mut sp_std::fmt::Formatter<'_>) -> sp_std::fmt::Result {
match self {
Progress::ToStart => f.write_str("To start"),
Progress::LastKey(key) => write!(f, "Last: {:?}", HexDisplay::from(key.deref())),
Progress::Complete => f.write_str("Complete"),
}
}
}
impl<T: Config> sp_std::fmt::Debug for MigrationTask<T> {
fn fmt(&self, f: &mut sp_std::fmt::Formatter<'_>) -> sp_std::fmt::Result {
f.debug_struct("MigrationTask")
.field("top", &self.progress_top)
.field("child", &self.progress_child)
.field("dyn_top_items", &self.dyn_top_items)
.field("dyn_child_items", &self.dyn_child_items)
.field("dyn_size", &self.dyn_size)
.field("size", &self.size)
.field("top_items", &self.top_items)
.field("child_items", &self.child_items)
.finish()
}
}
impl<T: Config> Default for MigrationTask<T> {
fn default() -> Self {
Self {
progress_top: Progress::ToStart,
progress_child: Progress::ToStart,
dyn_child_items: Default::default(),
dyn_top_items: Default::default(),
dyn_size: Default::default(),
_ph: Default::default(),
size: Default::default(),
top_items: Default::default(),
child_items: Default::default(),
}
}
}
impl<T: Config> MigrationTask<T> {
/// Return true if the task is finished.
pub(crate) fn finished(&self) -> bool {
matches!(self.progress_top, Progress::Complete)
}
/// Check if there's any work left, or if we have exhausted the limits already.
fn exhausted(&self, limits: MigrationLimits) -> bool {
self.dyn_total_items() >= limits.item || self.dyn_size >= limits.size
}
/// get the total number of keys affected by the current task.
pub(crate) fn dyn_total_items(&self) -> u32 {
self.dyn_child_items.saturating_add(self.dyn_top_items)
}
/// Migrate keys until either of the given limits are exhausted, or if no more top keys
/// exist.
///
/// Note that this can return after the **first** migration tick that causes exhaustion,
/// specifically in the case of the `size` constrain. The reason for this is that before
/// reading a key, we simply cannot know how many bytes it is. In other words, this should
/// not be used in any environment where resources are strictly bounded (e.g. a parachain),
/// but it is acceptable otherwise (relay chain, offchain workers).
pub fn migrate_until_exhaustion(
&mut self,
limits: MigrationLimits,
) -> Result<(), Error<T>> {
log!(debug, "running migrations on top of {:?} until {:?}", self, limits);
if limits.item.is_zero() || limits.size.is_zero() {
// handle this minor edge case, else we would call `migrate_tick` at least once.
log!(warn, "limits are zero. stopping");
return Ok(())
}
while !self.exhausted(limits) && !self.finished() {
if let Err(e) = self.migrate_tick() {
log!(error, "migrate_until_exhaustion failed: {:?}", e);
return Err(e)
}
}
// accumulate dynamic data into the storage items.
self.size = self.size.saturating_add(self.dyn_size);
self.child_items = self.child_items.saturating_add(self.dyn_child_items);
self.top_items = self.top_items.saturating_add(self.dyn_top_items);
log!(debug, "finished with {:?}", self);
Ok(())
}
/// Migrate AT MOST ONE KEY. This can be either a top or a child key.
///
/// This function is *the* core of this entire pallet.
fn migrate_tick(&mut self) -> Result<(), Error<T>> {
match (&self.progress_top, &self.progress_child) {
(Progress::ToStart, _) => self.migrate_top(),
(Progress::LastKey(_), Progress::LastKey(_)) => {
// we're in the middle of doing work on a child tree.
self.migrate_child()
},
(Progress::LastKey(top_key), Progress::ToStart) => {
// 3. this is the root of a child key, and we are finishing all child-keys (and
// should call `migrate_top`).
// NOTE: this block is written intentionally to verbosely for easy of
// verification.
if !top_key.starts_with(DEFAULT_CHILD_STORAGE_KEY_PREFIX) {
// we continue the top key migrations.
// continue the top key migration
self.migrate_top()
} else {
// this is the root of a child key, and we start processing child keys (and
// should call `migrate_child`).
self.migrate_child()
}
},
(Progress::LastKey(_), Progress::Complete) => {
// we're done with migrating a child-root.
self.migrate_top()?;
self.progress_child = Progress::ToStart;
Ok(())
},
(Progress::Complete, _) => {
// nada
Ok(())
},
}
}
/// Migrate the current child key, setting it to its new value, if one exists.
///
/// It updates the dynamic counters.
fn migrate_child(&mut self) -> Result<(), Error<T>> {
use sp_io::default_child_storage as child_io;
let (maybe_current_child, child_root) = match (&self.progress_child, &self.progress_top)
{
(Progress::LastKey(last_child), Progress::LastKey(last_top)) => {
let child_root = Pallet::<T>::transform_child_key_or_halt(last_top);
let maybe_current_child: Option<BoundedVec<u8, T::MaxKeyLen>> =
if let Some(next) = child_io::next_key(child_root, last_child) {
Some(next.try_into().map_err(|_| Error::<T>::KeyTooLong)?)
} else {
None
};
(maybe_current_child, child_root)
},
(Progress::ToStart, Progress::LastKey(last_top)) => {
let child_root = Pallet::<T>::transform_child_key_or_halt(last_top);
// Start with the empty key as first key.
(Some(Default::default()), child_root)
},
_ => {
// defensive: there must be an ongoing top migration.
frame_support::defensive!("cannot migrate child key.");
return Ok(())
},
};
if let Some(current_child) = maybe_current_child.as_ref() {
let added_size = if let Some(data) = child_io::get(child_root, current_child) {
child_io::set(child_root, current_child, &data);
data.len() as u32
} else {
Zero::zero()
};
self.dyn_size = self.dyn_size.saturating_add(added_size);
self.dyn_child_items.saturating_inc();
}
log!(trace, "migrated a child key, next_child_key: {:?}", maybe_current_child);
self.progress_child = match maybe_current_child {
Some(last_child) => Progress::LastKey(last_child),
None => Progress::Complete,
};
Ok(())
}
/// Migrate the current top key, setting it to its new value, if one exists.
///
/// It updates the dynamic counters.
fn migrate_top(&mut self) -> Result<(), Error<T>> {
let maybe_current_top = match &self.progress_top {
Progress::LastKey(last_top) => {
let maybe_top: Option<BoundedVec<u8, T::MaxKeyLen>> =
if let Some(next) = sp_io::storage::next_key(last_top) {
Some(next.try_into().map_err(|_| Error::<T>::KeyTooLong)?)
} else {
None
};
maybe_top
},
// Start with the empty key as first key.
Progress::ToStart => Some(Default::default()),
Progress::Complete => {
// defensive: there must be an ongoing top migration.
frame_support::defensive!("cannot migrate top key.");
return Ok(())
},
};
if let Some(current_top) = maybe_current_top.as_ref() {
let added_size = if let Some(data) = sp_io::storage::get(current_top) {
sp_io::storage::set(current_top, &data);
data.len() as u32
} else {
Zero::zero()
};
self.dyn_size = self.dyn_size.saturating_add(added_size);
self.dyn_top_items.saturating_inc();
}
log!(trace, "migrated a top key, next_top_key = {:?}", maybe_current_top);
self.progress_top = match maybe_current_top {
Some(last_top) => Progress::LastKey(last_top),
None => Progress::Complete,
};
Ok(())
}
}
/// The limits of a migration.
#[derive(
Clone,
Copy,
Encode,
Decode,
scale_info::TypeInfo,
Default,
Debug,
PartialEq,
Eq,
MaxEncodedLen,
)]
pub struct MigrationLimits {
/// The byte size limit.
pub size: u32,
/// The number of keys limit.
pub item: u32,
}
/// How a migration was computed.
#[derive(Clone, Copy, Encode, Decode, scale_info::TypeInfo, Debug, PartialEq, Eq)]
pub enum MigrationCompute {
/// A signed origin triggered the migration.
Signed,
/// An automatic task triggered the migration.
Auto,
}
/// Inner events of this pallet.
#[pallet::event]
#[pallet::generate_deposit(pub(super) fn deposit_event)]
pub enum Event<T: Config> {
/// Given number of `(top, child)` keys were migrated respectively, with the given
/// `compute`.
Migrated { top: u32, child: u32, compute: MigrationCompute },
/// Some account got slashed by the given amount.
Slashed { who: T::AccountId, amount: BalanceOf<T> },
/// The auto migration task finished.
AutoMigrationFinished,
/// Migration got halted due to an error or miss-configuration.
Halted { error: Error<T> },
}
/// The outer Pallet struct.
#[pallet::pallet]
pub struct Pallet<T>(_);
/// Configurations of this pallet.
#[pallet::config]
pub trait Config: frame_system::Config {
/// Origin that can control the configurations of this pallet.
type ControlOrigin: frame_support::traits::EnsureOrigin<Self::RuntimeOrigin>;
/// Filter on which origin that trigger the manual migrations.
type SignedFilter: EnsureOrigin<Self::RuntimeOrigin, Success = Self::AccountId>;
/// The overarching event type.
type RuntimeEvent: From<Event<Self>> + IsType<<Self as frame_system::Config>::RuntimeEvent>;
/// The currency provider type.
type Currency: Currency<Self::AccountId>;
/// Maximal number of bytes that a key can have.
///
/// FRAME itself does not limit the key length.
/// The concrete value must therefore depend on your storage usage.
/// A [`frame_support::storage::StorageNMap`] for example can have an arbitrary number of
/// keys which are then hashed and concatenated, resulting in arbitrarily long keys.
///
/// Use the *state migration RPC* to retrieve the length of the longest key in your
/// storage: <https://github.com/paritytech/substrate/issues/11642>
///
/// The migration will halt with a `Halted` event if this value is too small.
/// Since there is no real penalty from over-estimating, it is advised to use a large
/// value. The default is 512 byte.
///
/// Some key lengths for reference:
/// - [`frame_support::storage::StorageValue`]: 32 byte
/// - [`frame_support::storage::StorageMap`]: 64 byte
/// - [`frame_support::storage::StorageDoubleMap`]: 96 byte
///
/// For more info see
/// <https://www.shawntabrizi.com/substrate/querying-substrate-storage-via-rpc/>
#[pallet::constant]
type MaxKeyLen: Get<u32>;
/// The amount of deposit collected per item in advance, for signed migrations.
///
/// This should reflect the average storage value size in the worse case.
type SignedDepositPerItem: Get<BalanceOf<Self>>;
/// The base value of [`Config::SignedDepositPerItem`].
///
/// Final deposit is `items * SignedDepositPerItem + SignedDepositBase`.
type SignedDepositBase: Get<BalanceOf<Self>>;
/// The weight information of this pallet.
type WeightInfo: WeightInfo;
}
/// Migration progress.
///
/// This stores the snapshot of the last migrated keys. It can be set into motion and move
/// forward by any of the means provided by this pallet.
#[pallet::storage]
#[pallet::getter(fn migration_process)]
pub type MigrationProcess<T> = StorageValue<_, MigrationTask<T>, ValueQuery>;
/// The limits that are imposed on automatic migrations.
///
/// If set to None, then no automatic migration happens.
#[pallet::storage]
#[pallet::getter(fn auto_limits)]
pub type AutoLimits<T> = StorageValue<_, Option<MigrationLimits>, ValueQuery>;
/// The maximum limits that the signed migration could use.
///
/// If not set, no signed submission is allowed.
#[pallet::storage]
#[pallet::getter(fn signed_migration_max_limits)]
pub type SignedMigrationMaxLimits<T> = StorageValue<_, MigrationLimits, OptionQuery>;
#[pallet::error]
#[derive(Clone, PartialEq)]
pub enum Error<T> {
/// Max signed limits not respected.
MaxSignedLimits,
/// A key was longer than the configured maximum.
///
/// This means that the migration halted at the current [`Progress`] and
/// can be resumed with a larger [`crate::Config::MaxKeyLen`] value.
/// Retrying with the same [`crate::Config::MaxKeyLen`] value will not work.
/// The value should only be increased to avoid a storage migration for the currently
/// stored [`crate::Progress::LastKey`].
KeyTooLong,
/// submitter does not have enough funds.
NotEnoughFunds,
/// Bad witness data provided.
BadWitness,
/// Signed migration is not allowed because the maximum limit is not set yet.
SignedMigrationNotAllowed,
/// Bad child root provided.
BadChildRoot,
}
#[pallet::call]
impl<T: Config> Pallet<T> {
/// Control the automatic migration.
///
/// The dispatch origin of this call must be [`Config::ControlOrigin`].
#[pallet::call_index(0)]
#[pallet::weight(T::DbWeight::get().reads_writes(1, 1))]
pub fn control_auto_migration(
origin: OriginFor<T>,
maybe_config: Option<MigrationLimits>,
) -> DispatchResult {
T::ControlOrigin::ensure_origin(origin)?;
AutoLimits::<T>::put(maybe_config);
Ok(())
}
/// Continue the migration for the given `limits`.
///
/// The dispatch origin of this call can be any signed account.
///
/// This transaction has NO MONETARY INCENTIVES. calling it will not reward anyone. Albeit,
/// Upon successful execution, the transaction fee is returned.
///
/// The (potentially over-estimated) of the byte length of all the data read must be
/// provided for up-front fee-payment and weighing. In essence, the caller is guaranteeing
/// that executing the current `MigrationTask` with the given `limits` will not exceed
/// `real_size_upper` bytes of read data.
///
/// The `witness_task` is merely a helper to prevent the caller from being slashed or
/// generally trigger a migration that they do not intend. This parameter is just a message
/// from caller, saying that they believed `witness_task` was the last state of the
/// migration, and they only wish for their transaction to do anything, if this assumption
/// holds. In case `witness_task` does not match, the transaction fails.
///
/// Based on the documentation of [`MigrationTask::migrate_until_exhaustion`], the
/// recommended way of doing this is to pass a `limit` that only bounds `count`, as the
/// `size` limit can always be overwritten.
#[pallet::call_index(1)]
#[pallet::weight(
// the migration process
Pallet::<T>::dynamic_weight(limits.item, * real_size_upper)
// rest of the operations, like deposit etc.
+ T::WeightInfo::continue_migrate()
)]
pub fn continue_migrate(
origin: OriginFor<T>,
limits: MigrationLimits,
real_size_upper: u32,
witness_task: MigrationTask<T>,
) -> DispatchResultWithPostInfo {
let who = T::SignedFilter::ensure_origin(origin)?;
let max_limits =
Self::signed_migration_max_limits().ok_or(Error::<T>::SignedMigrationNotAllowed)?;
ensure!(
limits.size <= max_limits.size && limits.item <= max_limits.item,
Error::<T>::MaxSignedLimits,
);
// ensure they can pay more than the fee.
let deposit = T::SignedDepositPerItem::get().saturating_mul(limits.item.into());
ensure!(T::Currency::can_slash(&who, deposit), Error::<T>::NotEnoughFunds);
let mut task = Self::migration_process();
ensure!(
task == witness_task,
DispatchErrorWithPostInfo {
error: Error::<T>::BadWitness.into(),
post_info: PostDispatchInfo {
actual_weight: Some(T::WeightInfo::continue_migrate_wrong_witness()),
pays_fee: Pays::Yes
}
}
);
let migration = task.migrate_until_exhaustion(limits);
// ensure that the migration witness data was correct.
if real_size_upper < task.dyn_size {
// let the imbalance burn.
let (_imbalance, _remainder) = T::Currency::slash(&who, deposit);
Self::deposit_event(Event::<T>::Slashed { who, amount: deposit });
debug_assert!(_remainder.is_zero());
return Ok(().into())
}
Self::deposit_event(Event::<T>::Migrated {
top: task.dyn_top_items,
child: task.dyn_child_items,
compute: MigrationCompute::Signed,
});
// refund and correct the weight.
let actual_weight = Some(
Pallet::<T>::dynamic_weight(limits.item, task.dyn_size)
.saturating_add(T::WeightInfo::continue_migrate()),
);
MigrationProcess::<T>::put(task);
let post_info = PostDispatchInfo { actual_weight, pays_fee: Pays::No };
if let Err(error) = migration {
Self::halt(error);
}
Ok(post_info)
}
/// Migrate the list of top keys by iterating each of them one by one.
///
/// This does not affect the global migration process tracker ([`MigrationProcess`]), and
/// should only be used in case any keys are leftover due to a bug.
#[pallet::call_index(2)]
#[pallet::weight(
T::WeightInfo::migrate_custom_top_success()
.max(T::WeightInfo::migrate_custom_top_fail())
.saturating_add(
Pallet::<T>::dynamic_weight(keys.len() as u32, *witness_size)
)
)]
pub fn migrate_custom_top(
origin: OriginFor<T>,
keys: Vec<Vec<u8>>,
witness_size: u32,
) -> DispatchResultWithPostInfo {
let who = T::SignedFilter::ensure_origin(origin)?;
// ensure they can pay more than the fee.
let deposit = T::SignedDepositBase::get().saturating_add(
T::SignedDepositPerItem::get().saturating_mul((keys.len() as u32).into()),
);
ensure!(T::Currency::can_slash(&who, deposit), "not enough funds");
let mut dyn_size = 0u32;
for key in &keys {
if let Some(data) = sp_io::storage::get(key) {
dyn_size = dyn_size.saturating_add(data.len() as u32);
sp_io::storage::set(key, &data);
}
}
if dyn_size > witness_size {
let (_imbalance, _remainder) = T::Currency::slash(&who, deposit);
Self::deposit_event(Event::<T>::Slashed { who, amount: deposit });
debug_assert!(_remainder.is_zero());
Ok(().into())
} else {
Self::deposit_event(Event::<T>::Migrated {
top: keys.len() as u32,
child: 0,
compute: MigrationCompute::Signed,
});
Ok(PostDispatchInfo {
actual_weight: Some(
T::WeightInfo::migrate_custom_top_success().saturating_add(
Pallet::<T>::dynamic_weight(keys.len() as u32, dyn_size),
),
),
pays_fee: Pays::Yes,
})
}
}
/// Migrate the list of child keys by iterating each of them one by one.
///
/// All of the given child keys must be present under one `child_root`.
///
/// This does not affect the global migration process tracker ([`MigrationProcess`]), and
/// should only be used in case any keys are leftover due to a bug.
#[pallet::call_index(3)]
#[pallet::weight(
T::WeightInfo::migrate_custom_child_success()
.max(T::WeightInfo::migrate_custom_child_fail())
.saturating_add(
Pallet::<T>::dynamic_weight(child_keys.len() as u32, *total_size)
)
)]
pub fn migrate_custom_child(
origin: OriginFor<T>,
root: Vec<u8>,
child_keys: Vec<Vec<u8>>,
total_size: u32,
) -> DispatchResultWithPostInfo {
use sp_io::default_child_storage as child_io;
let who = T::SignedFilter::ensure_origin(origin)?;
// ensure they can pay more than the fee.
let deposit = T::SignedDepositBase::get().saturating_add(
T::SignedDepositPerItem::get().saturating_mul((child_keys.len() as u32).into()),
);
sp_std::if_std! {
println!("+ {:?} / {:?} / {:?}", who, deposit, T::Currency::free_balance(&who));
}
ensure!(T::Currency::can_slash(&who, deposit), "not enough funds");
let mut dyn_size = 0u32;
let transformed_child_key = Self::transform_child_key(&root).ok_or("bad child key")?;
for child_key in &child_keys {
if let Some(data) = child_io::get(transformed_child_key, child_key) {
dyn_size = dyn_size.saturating_add(data.len() as u32);
child_io::set(transformed_child_key, child_key, &data);
}
}
if dyn_size != total_size {
let (_imbalance, _remainder) = T::Currency::slash(&who, deposit);
debug_assert!(_remainder.is_zero());
Self::deposit_event(Event::<T>::Slashed { who, amount: deposit });
Ok(PostDispatchInfo {
actual_weight: Some(T::WeightInfo::migrate_custom_child_fail()),
pays_fee: Pays::Yes,
})
} else {
Self::deposit_event(Event::<T>::Migrated {
top: 0,
child: child_keys.len() as u32,
compute: MigrationCompute::Signed,
});
Ok(PostDispatchInfo {
actual_weight: Some(
T::WeightInfo::migrate_custom_child_success().saturating_add(
Pallet::<T>::dynamic_weight(child_keys.len() as u32, total_size),
),
),
pays_fee: Pays::Yes,
})
}
}
/// Set the maximum limit of the signed migration.
#[pallet::call_index(4)]
#[pallet::weight(T::DbWeight::get().reads_writes(1, 1))]
pub fn set_signed_max_limits(
origin: OriginFor<T>,
limits: MigrationLimits,
) -> DispatchResult {
let _ = T::ControlOrigin::ensure_origin(origin)?;
SignedMigrationMaxLimits::<T>::put(limits);
Ok(())
}
/// Forcefully set the progress the running migration.
///
/// This is only useful in one case: the next key to migrate is too big to be migrated with
/// a signed account, in a parachain context, and we simply want to skip it. A reasonable
/// example of this would be `:code:`, which is both very expensive to migrate, and commonly
/// used, so probably it is already migrated.
///
/// In case you mess things up, you can also, in principle, use this to reset the migration
/// process.
#[pallet::call_index(5)]
#[pallet::weight(T::DbWeight::get().reads_writes(1, 1))]
pub fn force_set_progress(
origin: OriginFor<T>,
progress_top: ProgressOf<T>,
progress_child: ProgressOf<T>,
) -> DispatchResult {
let _ = T::ControlOrigin::ensure_origin(origin)?;
MigrationProcess::<T>::mutate(|task| {
task.progress_top = progress_top;
task.progress_child = progress_child;
});
Ok(())
}
}
#[pallet::hooks]
impl<T: Config> Hooks<BlockNumberFor<T>> for Pallet<T> {
fn on_initialize(_: BlockNumberFor<T>) -> Weight {
if let Some(limits) = Self::auto_limits() {
let mut task = Self::migration_process();
if let Err(e) = task.migrate_until_exhaustion(limits) {
Self::halt(e);
}
let weight = Self::dynamic_weight(task.dyn_total_items(), task.dyn_size);
log!(
info,
"migrated {} top keys, {} child keys, and a total of {} bytes.",
task.dyn_top_items,
task.dyn_child_items,
task.dyn_size,
);
if task.finished() {
Self::deposit_event(Event::<T>::AutoMigrationFinished);
AutoLimits::<T>::kill();
} else {
Self::deposit_event(Event::<T>::Migrated {
top: task.dyn_top_items,
child: task.dyn_child_items,
compute: MigrationCompute::Auto,
});
}
MigrationProcess::<T>::put(task);
weight
} else {
T::DbWeight::get().reads(1)
}
}
}
impl<T: Config> Pallet<T> {
/// The real weight of a migration of the given number of `items` with total `size`.
fn dynamic_weight(items: u32, size: u32) -> frame_support::pallet_prelude::Weight {
let items = items as u64;
<T as frame_system::Config>::DbWeight::get()
.reads_writes(1, 1)
.saturating_mul(items)
// we assume that the read/write per-byte weight is the same for child and top tree.
.saturating_add(T::WeightInfo::process_top_key(size))
}
/// Put a stop to all ongoing migrations and logs an error.
fn halt(error: Error<T>) {
log!(error, "migration halted due to: {:?}", error);
AutoLimits::<T>::kill();
Self::deposit_event(Event::<T>::Halted { error });
}
/// Convert a child root key, aka. "Child-bearing top key" into the proper format.
fn transform_child_key(root: &Vec<u8>) -> Option<&[u8]> {
use sp_core::storage::{ChildType, PrefixedStorageKey};
match ChildType::from_prefixed_key(PrefixedStorageKey::new_ref(root)) {
Some((ChildType::ParentKeyId, root)) => Some(root),
_ => None,
}
}
/// Same as [`child_io_key`], and it halts the auto/unsigned migrations if a bad child root
/// is used.
///
/// This should be used when we are sure that `root` is a correct default child root.
fn transform_child_key_or_halt(root: &Vec<u8>) -> &[u8] {
let key = Self::transform_child_key(root);
if key.is_none() {
Self::halt(Error::<T>::BadChildRoot);
}
key.unwrap_or_default()
}
/// Convert a child root to be in the default child-tree.
#[cfg(any(test, feature = "runtime-benchmarks"))]
pub(crate) fn childify(root: &'static str) -> Vec<u8> {
let mut string = DEFAULT_CHILD_STORAGE_KEY_PREFIX.to_vec();
string.extend_from_slice(root.as_ref());
string
}
}
}
#[cfg(feature = "runtime-benchmarks")]
mod benchmarks {
use super::{pallet::Pallet as StateTrieMigration, *};
use frame_support::traits::{Currency, Get};
use sp_runtime::traits::Saturating;
use sp_std::prelude::*;
// The size of the key seemingly makes no difference in the read/write time, so we make it
// constant.
const KEY: &[u8] = b"key";
frame_benchmarking::benchmarks! {
continue_migrate {
// note that this benchmark should migrate nothing, as we only want the overhead weight
// of the bookkeeping, and the migration cost itself is noted via the `dynamic_weight`
// function.
let null = MigrationLimits::default();
let caller = frame_benchmarking::whitelisted_caller();
// Allow signed migrations.
SignedMigrationMaxLimits::<T>::put(MigrationLimits { size: 1024, item: 5 });
}: _(frame_system::RawOrigin::Signed(caller), null, 0, StateTrieMigration::<T>::migration_process())
verify {
assert_eq!(StateTrieMigration::<T>::migration_process(), Default::default())
}
continue_migrate_wrong_witness {
let null = MigrationLimits::default();
let caller = frame_benchmarking::whitelisted_caller();
let bad_witness = MigrationTask { progress_top: Progress::LastKey(vec![1u8].try_into().unwrap()), ..Default::default() };
}: {
assert!(
StateTrieMigration::<T>::continue_migrate(
frame_system::RawOrigin::Signed(caller).into(),
null,
0,
bad_witness,
)
.is_err()
)
}
verify {
assert_eq!(StateTrieMigration::<T>::migration_process(), Default::default())
}
migrate_custom_top_success {
let null = MigrationLimits::default();
let caller = frame_benchmarking::whitelisted_caller();
let deposit = T::SignedDepositBase::get().saturating_add(
T::SignedDepositPerItem::get().saturating_mul(1u32.into()),
);
let stash = T::Currency::minimum_balance() * BalanceOf::<T>::from(1000u32) + deposit;
T::Currency::make_free_balance_be(&caller, stash);
}: migrate_custom_top(frame_system::RawOrigin::Signed(caller.clone()), Default::default(), 0)
verify {
assert_eq!(StateTrieMigration::<T>::migration_process(), Default::default());
assert_eq!(T::Currency::free_balance(&caller), stash)
}
migrate_custom_top_fail {
let null = MigrationLimits::default();
let caller = frame_benchmarking::whitelisted_caller();
let deposit = T::SignedDepositBase::get().saturating_add(
T::SignedDepositPerItem::get().saturating_mul(1u32.into()),
);
let stash = T::Currency::minimum_balance() * BalanceOf::<T>::from(1000u32) + deposit;
T::Currency::make_free_balance_be(&caller, stash);
// for tests, we need to make sure there is _something_ in storage that is being
// migrated.
sp_io::storage::set(b"foo", vec![1u8;33].as_ref());
}: {
assert!(
StateTrieMigration::<T>::migrate_custom_top(
frame_system::RawOrigin::Signed(caller.clone()).into(),
vec![b"foo".to_vec()],
1,
).is_ok()
);
frame_system::Pallet::<T>::assert_last_event(
<T as Config>::RuntimeEvent::from(crate::Event::Slashed {
who: caller.clone(),
amount: T::SignedDepositBase::get()
.saturating_add(T::SignedDepositPerItem::get().saturating_mul(1u32.into())),
}).into(),
);
}
verify {
assert_eq!(StateTrieMigration::<T>::migration_process(), Default::default());
// must have gotten slashed
assert!(T::Currency::free_balance(&caller) < stash)
}
migrate_custom_child_success {
let caller = frame_benchmarking::whitelisted_caller();
let deposit = T::SignedDepositBase::get().saturating_add(
T::SignedDepositPerItem::get().saturating_mul(1u32.into()),
);
let stash = T::Currency::minimum_balance() * BalanceOf::<T>::from(1000u32) + deposit;
T::Currency::make_free_balance_be(&caller, stash);
}: migrate_custom_child(
frame_system::RawOrigin::Signed(caller.clone()),
StateTrieMigration::<T>::childify(Default::default()),
Default::default(),
0
)
verify {
assert_eq!(StateTrieMigration::<T>::migration_process(), Default::default());
assert_eq!(T::Currency::free_balance(&caller), stash);