1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768#![cfg_attr(not(feature = "std"), no_std)]69#![deny(missing_docs)]7071#[cfg(feature = "runtime-benchmarks")]72mod benchmarking;73#[cfg(test)]74mod mock;75#[cfg(test)]76mod tests;7778#[allow(deprecated)]79pub mod weights;8081use codec::{Codec, Decode, Encode, MaxEncodedLen};82use frame_support::{83 dispatch::{84 DispatchError, DispatchResult, Dispatchable, GetDispatchInfo, Parameter, PostDispatchInfo,85 },86 traits::{87 schedule::{self, DispatchTime, LOWEST_PRIORITY},88 EnsureOrigin, Get, IsType, OriginTrait, PrivilegeCmp, StorageVersion, PreimageRecipient,89 ConstU32, UnfilteredDispatchable,90 },91 weights::Weight,92 unsigned::TransactionValidityError,93};9495use frame_system::{self as system};96use scale_info::TypeInfo;97use sp_runtime::{98 traits::{BadOrigin, One, Saturating, Zero, Hash},99 BoundedVec, RuntimeDebug, DispatchErrorWithPostInfo,100};101use sp_core::H160;102use sp_std::{cmp::Ordering, marker::PhantomData, prelude::*};103pub use weights::WeightInfo;104105pub use pallet::*;106107108pub type PeriodicIndex = u32;109110pub type TaskAddress<BlockNumber> = (BlockNumber, u32);111112113pub type EncodedCall = BoundedVec<u8, ConstU32<128>>;114115#[derive(Clone, Eq, PartialEq, Encode, Decode, RuntimeDebug, TypeInfo, MaxEncodedLen)]116#[scale_info(skip_type_params(T))]117118119pub enum ScheduledCall<T: Config> {120 121 Inline(EncodedCall),122123 124 PreimageLookup {125 126 hash: T::Hash,127128 129 unbounded_len: u32,130 },131}132133impl<T: Config> ScheduledCall<T> {134 135 136 137 pub fn new(call: <T as Config>::RuntimeCall) -> Result<Self, DispatchError> {138 let encoded = call.encode();139 let len = encoded.len();140141 match EncodedCall::try_from(encoded.clone()) {142 Ok(bounded) => Ok(Self::Inline(bounded)),143 Err(_) => {144 let hash = <T as system::Config>::Hashing::hash_of(&encoded);145 <T as Config>::Preimages::note_preimage(146 encoded147 .try_into()148 .map_err(|_| <Error<T>>::TooBigScheduledCall)?,149 );150151 Ok(Self::PreimageLookup {152 hash,153 unbounded_len: len as u32,154 })155 }156 }157 }158159 160 pub fn lookup_len(&self) -> Option<u32> {161 match self {162 Self::Inline(..) => None,163 Self::PreimageLookup { unbounded_len, .. } => Some(*unbounded_len),164 }165 }166167 168 pub fn lookup_needed(&self) -> bool {169 match self {170 Self::Inline(_) => false,171 Self::PreimageLookup { .. } => true,172 }173 }174175 176 fn decode(mut data: &[u8]) -> Result<<T as Config>::RuntimeCall, DispatchError> {177 <T as Config>::RuntimeCall::decode(&mut data)178 .map_err(|_| <Error<T>>::ScheduledCallCorrupted.into())179 }180}181182183pub trait SchedulerPreimagesWeightInfo<W: WeightInfo> {184 185 fn service_task_fetched(call_length: u32) -> Weight;186}187188impl<W: WeightInfo> SchedulerPreimagesWeightInfo<W> for () {189 fn service_task_fetched(_call_length: u32) -> Weight {190 W::service_task_base()191 }192}193194195196pub trait SchedulerPreimages<T: Config>:197 PreimageRecipient<T::Hash> + SchedulerPreimagesWeightInfo<T::WeightInfo>198{199 200 fn drop(call: &ScheduledCall<T>);201202 203 204 205 206 207 fn peek(208 call: &ScheduledCall<T>,209 ) -> Result<(<T as pallet::Config>::RuntimeCall, Option<u32>), DispatchError>;210211 212 213 214 fn realize(215 call: &ScheduledCall<T>,216 ) -> Result<(<T as pallet::Config>::RuntimeCall, Option<u32>), DispatchError>;217}218219impl<T: Config, PP: PreimageRecipient<T::Hash> + SchedulerPreimagesWeightInfo<T::WeightInfo>>220 SchedulerPreimages<T> for PP221{222 fn drop(call: &ScheduledCall<T>) {223 match call {224 ScheduledCall::Inline(_) => {}225 ScheduledCall::PreimageLookup { hash, .. } => Self::unrequest_preimage(hash),226 }227 }228229 fn peek(230 call: &ScheduledCall<T>,231 ) -> Result<(<T as pallet::Config>::RuntimeCall, Option<u32>), DispatchError> {232 match call {233 ScheduledCall::Inline(data) => Ok((ScheduledCall::<T>::decode(data)?, None)),234 ScheduledCall::PreimageLookup {235 hash,236 unbounded_len,237 } => {238 let (preimage, len) = Self::get_preimage(hash)239 .ok_or(<Error<T>>::PreimageNotFound)240 .map(|preimage| (preimage, *unbounded_len))?;241242 Ok((ScheduledCall::<T>::decode(preimage.as_slice())?, Some(len)))243 }244 }245 }246247 fn realize(248 call: &ScheduledCall<T>,249 ) -> Result<(<T as pallet::Config>::RuntimeCall, Option<u32>), DispatchError> {250 let r = Self::peek(call)?;251 Self::drop(call);252 Ok(r)253 }254}255256257pub enum ScheduledEnsureOriginSuccess<AccountId> {258 259 Root,260261 262 Signed(AccountId),263}264265266pub type TaskName = [u8; 32];267268269#[cfg_attr(any(feature = "std", test), derive(PartialEq, Eq))]270#[derive(Clone, RuntimeDebug, Encode, Decode, MaxEncodedLen, TypeInfo)]271pub struct Scheduled<Name, Call, BlockNumber, PalletsOrigin, AccountId> {272 273 maybe_id: Option<Name>,274275 276 priority: schedule::Priority,277278 279 call: Call,280281 282 maybe_periodic: Option<schedule::Period<BlockNumber>>,283284 285 origin: PalletsOrigin,286 _phantom: PhantomData<AccountId>,287}288289290pub type ScheduledOf<T> = Scheduled<291 TaskName,292 ScheduledCall<T>,293 <T as frame_system::Config>::BlockNumber,294 <T as Config>::PalletsOrigin,295 <T as frame_system::Config>::AccountId,296>;297298#[derive(Encode, Decode, MaxEncodedLen, TypeInfo)]299#[scale_info(skip_type_params(T))]300301302303304pub struct BlockAgenda<T: Config> {305 agenda: BoundedVec<Option<ScheduledOf<T>>, T::MaxScheduledPerBlock>,306 free_places: u32,307}308309impl<T: Config> BlockAgenda<T> {310 311 312 313 314 315 316 317 318 fn try_push(&mut self, scheduled: ScheduledOf<T>) -> Result<u32, ScheduledOf<T>> {319 if self.free_places == 0 {320 return Err(scheduled);321 }322323 self.free_places = self.free_places.saturating_sub(1);324325 if (self.agenda.len() as u32) < T::MaxScheduledPerBlock::get() {326 327 let _ = self.agenda.try_push(Some(scheduled));328 Ok((self.agenda.len() - 1) as u32)329 } else {330 match self.agenda.iter().position(|i| i.is_none()) {331 Some(hole_index) => {332 self.agenda[hole_index] = Some(scheduled);333 Ok(hole_index as u32)334 }335 None => unreachable!("free_places was greater than 0; qed"),336 }337 }338 }339340 341 342 343 344 fn set_slot(&mut self, index: u32, slot: Option<ScheduledOf<T>>) {345 self.agenda[index as usize] = slot;346 }347348 349 fn iter(&self) -> impl Iterator<Item = &'_ Option<ScheduledOf<T>>> + '_ {350 self.agenda.iter()351 }352353 354 355 356 357 358 fn get(&self, index: u32) -> Option<&ScheduledOf<T>> {359 match self.agenda.get(index as usize) {360 Some(Some(scheduled)) => Some(scheduled),361 _ => None,362 }363 }364365 366 367 368 369 370 fn get_mut(&mut self, index: u32) -> Option<&mut ScheduledOf<T>> {371 match self.agenda.get_mut(index as usize) {372 Some(Some(scheduled)) => Some(scheduled),373 _ => None,374 }375 }376377 378 379 380 381 382 383 384 385 fn take(&mut self, index: u32) -> Option<ScheduledOf<T>> {386 let removed = self.agenda.get_mut(index as usize)?.take();387388 if removed.is_some() {389 self.free_places = self.free_places.saturating_add(1);390 }391392 removed393 }394}395396impl<T: Config> Default for BlockAgenda<T> {397 fn default() -> Self {398 let agenda = Default::default();399 let free_places = T::MaxScheduledPerBlock::get();400401 Self {402 agenda,403 free_places,404 }405 }406}407408409struct WeightCounter {410 used: Weight,411 limit: Weight,412}413414impl WeightCounter {415 416 417 418 419 fn check_accrue(&mut self, w: Weight) -> bool {420 let test = self.used.saturating_add(w);421 if test.any_gt(self.limit) {422 false423 } else {424 self.used = test;425 true426 }427 }428429 430 fn can_accrue(&mut self, w: Weight) -> bool {431 self.used.saturating_add(w).all_lte(self.limit)432 }433}434435pub(crate) struct MarginalWeightInfo<T: Config>(sp_std::marker::PhantomData<T>);436437impl<T: Config> MarginalWeightInfo<T> {438 439 fn service_task(maybe_lookup_len: Option<usize>, named: bool, periodic: bool) -> Weight {440 let base = T::WeightInfo::service_task_base();441 let mut total = match maybe_lookup_len {442 None => base,443 Some(l) => T::Preimages::service_task_fetched(l as u32),444 };445 if named {446 total.saturating_accrue(T::WeightInfo::service_task_named().saturating_sub(base));447 }448 if periodic {449 total.saturating_accrue(T::WeightInfo::service_task_periodic().saturating_sub(base));450 }451 total452 }453}454455#[frame_support::pallet]456pub mod pallet {457 use super::*;458 use frame_support::{dispatch::PostDispatchInfo, pallet_prelude::*};459 use system::pallet_prelude::*;460461 462 const STORAGE_VERSION: StorageVersion = StorageVersion::new(0);463464 #[pallet::pallet]465 #[pallet::storage_version(STORAGE_VERSION)]466 pub struct Pallet<T>(_);467468 #[pallet::config]469 pub trait Config: frame_system::Config {470 471 type RuntimeEvent: From<Event<Self>> + IsType<<Self as frame_system::Config>::RuntimeEvent>;472473 474 type RuntimeOrigin: OriginTrait<PalletsOrigin = Self::PalletsOrigin>475 + From<Self::PalletsOrigin>476 + IsType<<Self as system::Config>::RuntimeOrigin>477 + Clone;478479 480 type PalletsOrigin: From<system::RawOrigin<Self::AccountId>>481 + Codec482 + Clone483 + Eq484 + TypeInfo485 + MaxEncodedLen;486487 488 type RuntimeCall: Parameter489 + Dispatchable<490 RuntimeOrigin = <Self as Config>::RuntimeOrigin,491 PostInfo = PostDispatchInfo,492 > + UnfilteredDispatchable<RuntimeOrigin = <Self as system::Config>::RuntimeOrigin>493 + GetDispatchInfo494 + From<system::Call<Self>>;495496 497 #[pallet::constant]498 type MaximumWeight: Get<Weight>;499500 501 type ScheduleOrigin: EnsureOrigin<502 <Self as system::Config>::RuntimeOrigin,503 Success = ScheduledEnsureOriginSuccess<Self::AccountId>,504 >;505506 507 508 509 510 511 512 513 type OriginPrivilegeCmp: PrivilegeCmp<Self::PalletsOrigin>;514515 516 #[pallet::constant]517 type MaxScheduledPerBlock: Get<u32>;518519 520 type WeightInfo: WeightInfo;521522 523 type Preimages: SchedulerPreimages<Self>;524525 526 type CallExecutor: DispatchCall<Self, H160>;527528 529 type PrioritySetOrigin: EnsureOrigin<<Self as system::Config>::RuntimeOrigin>;530 }531532 533 534 #[pallet::storage]535 pub type IncompleteSince<T: Config> = StorageValue<_, T::BlockNumber>;536537 538 #[pallet::storage]539 pub type Agenda<T: Config> =540 StorageMap<_, Twox64Concat, T::BlockNumber, BlockAgenda<T>, ValueQuery>;541542 543 #[pallet::storage]544 pub(crate) type Lookup<T: Config> =545 StorageMap<_, Twox64Concat, TaskName, TaskAddress<T::BlockNumber>>;546547 548 #[pallet::event]549 #[pallet::generate_deposit(pub(super) fn deposit_event)]550 pub enum Event<T: Config> {551 552 Scheduled {553 554 when: T::BlockNumber,555556 557 index: u32,558 },559 560 Canceled {561 562 when: T::BlockNumber,563564 565 index: u32,566 },567 568 Dispatched {569 570 task: TaskAddress<T::BlockNumber>,571572 573 id: Option<[u8; 32]>,574575 576 result: DispatchResult,577 },578 579 PriorityChanged {580 581 task: TaskAddress<T::BlockNumber>,582583 584 priority: schedule::Priority,585 },586 587 CallUnavailable {588 589 task: TaskAddress<T::BlockNumber>,590591 592 id: Option<[u8; 32]>,593 },594 595 PermanentlyOverweight {596 597 task: TaskAddress<T::BlockNumber>,598599 600 id: Option<[u8; 32]>,601 },602 }603604 #[pallet::error]605 pub enum Error<T> {606 607 FailedToSchedule,608 609 AgendaIsExhausted,610 611 ScheduledCallCorrupted,612 613 PreimageNotFound,614 615 TooBigScheduledCall,616 617 NotFound,618 619 TargetBlockNumberInPast,620 621 Named,622 }623624 #[pallet::hooks]625 impl<T: Config> Hooks<BlockNumberFor<T>> for Pallet<T> {626 627 fn on_initialize(now: T::BlockNumber) -> Weight {628 let mut weight_counter = WeightCounter {629 used: Weight::zero(),630 limit: T::MaximumWeight::get(),631 };632 Self::service_agendas(&mut weight_counter, now, u32::max_value());633 weight_counter.used634 }635 }636637 #[pallet::call]638 impl<T: Config> Pallet<T> {639 640 641 642 643 #[pallet::call_index(0)]644 #[pallet::weight(<T as Config>::WeightInfo::schedule(T::MaxScheduledPerBlock::get()))]645 pub fn schedule(646 origin: OriginFor<T>,647 when: T::BlockNumber,648 maybe_periodic: Option<schedule::Period<T::BlockNumber>>,649 priority: Option<schedule::Priority>,650 call: Box<<T as Config>::RuntimeCall>,651 ) -> DispatchResult {652 T::ScheduleOrigin::ensure_origin(origin.clone())?;653654 if priority.is_some() {655 T::PrioritySetOrigin::ensure_origin(origin.clone())?;656 }657658 let origin = <T as Config>::RuntimeOrigin::from(origin);659 Self::do_schedule(660 DispatchTime::At(when),661 maybe_periodic,662 priority.unwrap_or(LOWEST_PRIORITY),663 origin.caller().clone(),664 <ScheduledCall<T>>::new(*call)?,665 )?;666 Ok(())667 }668669 670 671 672 #[pallet::call_index(1)]673 #[pallet::weight(<T as Config>::WeightInfo::cancel(T::MaxScheduledPerBlock::get()))]674 pub fn cancel(origin: OriginFor<T>, when: T::BlockNumber, index: u32) -> DispatchResult {675 T::ScheduleOrigin::ensure_origin(origin.clone())?;676 let origin = <T as Config>::RuntimeOrigin::from(origin);677 Self::do_cancel(Some(origin.caller().clone()), (when, index))?;678 Ok(())679 }680681 682 683 684 685 #[pallet::call_index(2)]686 #[pallet::weight(<T as Config>::WeightInfo::schedule_named(T::MaxScheduledPerBlock::get()))]687 pub fn schedule_named(688 origin: OriginFor<T>,689 id: TaskName,690 when: T::BlockNumber,691 maybe_periodic: Option<schedule::Period<T::BlockNumber>>,692 priority: Option<schedule::Priority>,693 call: Box<<T as Config>::RuntimeCall>,694 ) -> DispatchResult {695 T::ScheduleOrigin::ensure_origin(origin.clone())?;696697 if priority.is_some() {698 T::PrioritySetOrigin::ensure_origin(origin.clone())?;699 }700701 let origin = <T as Config>::RuntimeOrigin::from(origin);702 Self::do_schedule_named(703 id,704 DispatchTime::At(when),705 maybe_periodic,706 priority.unwrap_or(LOWEST_PRIORITY),707 origin.caller().clone(),708 <ScheduledCall<T>>::new(*call)?,709 )?;710 Ok(())711 }712713 714 715 716 #[pallet::call_index(3)]717 #[pallet::weight(<T as Config>::WeightInfo::cancel_named(T::MaxScheduledPerBlock::get()))]718 pub fn cancel_named(origin: OriginFor<T>, id: TaskName) -> DispatchResult {719 T::ScheduleOrigin::ensure_origin(origin.clone())?;720 let origin = <T as Config>::RuntimeOrigin::from(origin);721 Self::do_cancel_named(Some(origin.caller().clone()), id)?;722 Ok(())723 }724725 726 727 728 729 730 #[pallet::call_index(4)]731 #[pallet::weight(<T as Config>::WeightInfo::schedule(T::MaxScheduledPerBlock::get()))]732 pub fn schedule_after(733 origin: OriginFor<T>,734 after: T::BlockNumber,735 maybe_periodic: Option<schedule::Period<T::BlockNumber>>,736 priority: Option<schedule::Priority>,737 call: Box<<T as Config>::RuntimeCall>,738 ) -> DispatchResult {739 T::ScheduleOrigin::ensure_origin(origin.clone())?;740741 if priority.is_some() {742 T::PrioritySetOrigin::ensure_origin(origin.clone())?;743 }744745 let origin = <T as Config>::RuntimeOrigin::from(origin);746 Self::do_schedule(747 DispatchTime::After(after),748 maybe_periodic,749 priority.unwrap_or(LOWEST_PRIORITY),750 origin.caller().clone(),751 <ScheduledCall<T>>::new(*call)?,752 )?;753 Ok(())754 }755756 757 758 759 760 761 762 763 764 #[pallet::call_index(5)]765 #[pallet::weight(<T as Config>::WeightInfo::schedule_named(T::MaxScheduledPerBlock::get()))]766 pub fn schedule_named_after(767 origin: OriginFor<T>,768 id: TaskName,769 after: T::BlockNumber,770 maybe_periodic: Option<schedule::Period<T::BlockNumber>>,771 priority: Option<schedule::Priority>,772 call: Box<<T as Config>::RuntimeCall>,773 ) -> DispatchResult {774 T::ScheduleOrigin::ensure_origin(origin.clone())?;775776 if priority.is_some() {777 T::PrioritySetOrigin::ensure_origin(origin.clone())?;778 }779780 let origin = <T as Config>::RuntimeOrigin::from(origin);781 Self::do_schedule_named(782 id,783 DispatchTime::After(after),784 maybe_periodic,785 priority.unwrap_or(LOWEST_PRIORITY),786 origin.caller().clone(),787 <ScheduledCall<T>>::new(*call)?,788 )?;789 Ok(())790 }791792 793 794 795 #[pallet::call_index(6)]796 #[pallet::weight(<T as Config>::WeightInfo::change_named_priority(T::MaxScheduledPerBlock::get()))]797 pub fn change_named_priority(798 origin: OriginFor<T>,799 id: TaskName,800 priority: schedule::Priority,801 ) -> DispatchResult {802 T::PrioritySetOrigin::ensure_origin(origin.clone())?;803 let origin = <T as Config>::RuntimeOrigin::from(origin);804 Self::do_change_named_priority(origin.caller().clone(), id, priority)805 }806 }807}808809impl<T: Config> Pallet<T> {810 811 812 813 fn resolve_time(when: DispatchTime<T::BlockNumber>) -> Result<T::BlockNumber, DispatchError> {814 let now = frame_system::Pallet::<T>::block_number();815816 let when = match when {817 DispatchTime::At(x) => x,818 819 820 DispatchTime::After(x) => now.saturating_add(x).saturating_add(One::one()),821 };822823 if when <= now {824 return Err(Error::<T>::TargetBlockNumberInPast.into());825 }826827 Ok(when)828 }829830 831 832 833 834 835 836 fn mandatory_place_task(when: T::BlockNumber, what: ScheduledOf<T>) {837 Self::place_task(when, what, true).expect("mandatory place task always succeeds; qed");838 }839840 841 842 843 fn try_place_task(844 when: T::BlockNumber,845 what: ScheduledOf<T>,846 ) -> Result<TaskAddress<T::BlockNumber>, DispatchError> {847 Self::place_task(when, what, false)848 }849850 851 852 853 854 fn place_task(855 mut when: T::BlockNumber,856 what: ScheduledOf<T>,857 is_mandatory: bool,858 ) -> Result<TaskAddress<T::BlockNumber>, DispatchError> {859 let maybe_name = what.maybe_id;860 let index = Self::push_to_agenda(&mut when, what, is_mandatory)?;861 let address = (when, index);862 if let Some(name) = maybe_name {863 Lookup::<T>::insert(name, address)864 }865 Self::deposit_event(Event::Scheduled {866 when: address.0,867 index: address.1,868 });869 Ok(address)870 }871872 873 874 875 876 877 fn push_to_agenda(878 when: &mut T::BlockNumber,879 mut what: ScheduledOf<T>,880 is_mandatory: bool,881 ) -> Result<u32, DispatchError> {882 let mut agenda;883884 let index = loop {885 agenda = Agenda::<T>::get(*when);886887 match agenda.try_push(what) {888 Ok(index) => break index,889 Err(returned_what) if is_mandatory => {890 what = returned_what;891 when.saturating_inc();892 }893 Err(_) => return Err(<Error<T>>::AgendaIsExhausted.into()),894 }895 };896897 Agenda::<T>::insert(when, agenda);898 Ok(index)899 }900901 fn do_schedule(902 when: DispatchTime<T::BlockNumber>,903 maybe_periodic: Option<schedule::Period<T::BlockNumber>>,904 priority: schedule::Priority,905 origin: T::PalletsOrigin,906 call: ScheduledCall<T>,907 ) -> Result<TaskAddress<T::BlockNumber>, DispatchError> {908 let when = Self::resolve_time(when)?;909910 911 let maybe_periodic = maybe_periodic912 .filter(|p| p.1 > 1 && !p.0.is_zero())913 914 .map(|(p, c)| (p, c - 1));915 let task = Scheduled {916 maybe_id: None,917 priority,918 call,919 maybe_periodic,920 origin,921 _phantom: PhantomData,922 };923 Self::try_place_task(when, task)924 }925926 fn do_cancel(927 origin: Option<T::PalletsOrigin>,928 (when, index): TaskAddress<T::BlockNumber>,929 ) -> Result<(), DispatchError> {930 let scheduled = Agenda::<T>::try_mutate(931 when,932 |agenda| -> Result<Option<Scheduled<_, _, _, _, _>>, DispatchError> {933 let scheduled = match agenda.get(index) {934 Some(scheduled) => scheduled,935 None => return Ok(None),936 };937938 if let Some(ref o) = origin {939 if matches!(940 T::OriginPrivilegeCmp::cmp_privilege(o, &scheduled.origin),941 Some(Ordering::Less) | None942 ) {943 return Err(BadOrigin.into());944 }945 }946947 Ok(agenda.take(index))948 },949 )?;950 if let Some(s) = scheduled {951 T::Preimages::drop(&s.call);952953 if let Some(id) = s.maybe_id {954 Lookup::<T>::remove(id);955 }956 Self::deposit_event(Event::Canceled { when, index });957 Ok(())958 } else {959 Err(Error::<T>::NotFound.into())960 }961 }962963 fn do_schedule_named(964 id: TaskName,965 when: DispatchTime<T::BlockNumber>,966 maybe_periodic: Option<schedule::Period<T::BlockNumber>>,967 priority: schedule::Priority,968 origin: T::PalletsOrigin,969 call: ScheduledCall<T>,970 ) -> Result<TaskAddress<T::BlockNumber>, DispatchError> {971 972 if Lookup::<T>::contains_key(id) {973 return Err(Error::<T>::FailedToSchedule.into());974 }975976 let when = Self::resolve_time(when)?;977978 979 let maybe_periodic = maybe_periodic980 .filter(|p| p.1 > 1 && !p.0.is_zero())981 982 .map(|(p, c)| (p, c - 1));983984 let task = Scheduled {985 maybe_id: Some(id),986 priority,987 call,988 maybe_periodic,989 origin,990 _phantom: Default::default(),991 };992 Self::try_place_task(when, task)993 }994995 fn do_cancel_named(origin: Option<T::PalletsOrigin>, id: TaskName) -> DispatchResult {996 Lookup::<T>::try_mutate_exists(id, |lookup| -> DispatchResult {997 if let Some((when, index)) = lookup.take() {998 Agenda::<T>::try_mutate(when, |agenda| -> DispatchResult {999 let scheduled = match agenda.get(index) {1000 Some(scheduled) => scheduled,1001 None => return Ok(()),1002 };10031004 if let Some(ref o) = origin {1005 if matches!(1006 T::OriginPrivilegeCmp::cmp_privilege(o, &scheduled.origin),1007 Some(Ordering::Less) | None1008 ) {1009 return Err(BadOrigin.into());1010 }1011 T::Preimages::drop(&scheduled.call);1012 }10131014 agenda.take(index);10151016 Ok(())1017 })?;1018 Self::deposit_event(Event::Canceled { when, index });1019 Ok(())1020 } else {1021 Err(Error::<T>::NotFound.into())1022 }1023 })1024 }10251026 fn do_change_named_priority(1027 origin: T::PalletsOrigin,1028 id: TaskName,1029 priority: schedule::Priority,1030 ) -> DispatchResult {1031 match Lookup::<T>::get(id) {1032 Some((when, index)) => Agenda::<T>::try_mutate(when, |agenda| {1033 let scheduled = match agenda.get_mut(index) {1034 Some(scheduled) => scheduled,1035 None => return Ok(()),1036 };10371038 if matches!(1039 T::OriginPrivilegeCmp::cmp_privilege(&origin, &scheduled.origin),1040 Some(Ordering::Less) | None1041 ) {1042 return Err(BadOrigin.into());1043 }10441045 scheduled.priority = priority;1046 Self::deposit_event(Event::PriorityChanged {1047 task: (when, index),1048 priority,1049 });10501051 Ok(())1052 }),1053 None => Err(Error::<T>::NotFound.into()),1054 }1055 }1056}10571058enum ServiceTaskError {1059 1060 Unavailable,1061 1062 Overweight,1063}1064use ServiceTaskError::*;106510661067pub trait DispatchCall<T: frame_system::Config + Config, SelfContainedSignedInfo> {1068 1069 fn dispatch_call(1070 signer: Option<T::AccountId>,1071 function: <T as Config>::RuntimeCall,1072 ) -> Result<1073 Result<PostDispatchInfo, DispatchErrorWithPostInfo<PostDispatchInfo>>,1074 TransactionValidityError,1075 >;1076}10771078impl<T: Config> Pallet<T> {1079 1080 fn service_agendas(weight: &mut WeightCounter, now: T::BlockNumber, max: u32) {1081 if !weight.check_accrue(T::WeightInfo::service_agendas_base()) {1082 return;1083 }10841085 let mut incomplete_since = now + One::one();1086 let mut when = IncompleteSince::<T>::take().unwrap_or(now);1087 let mut executed = 0;10881089 let max_items = T::MaxScheduledPerBlock::get();1090 let mut count_down = max;1091 let service_agenda_base_weight = T::WeightInfo::service_agenda_base(max_items);1092 while count_down > 0 && when <= now && weight.can_accrue(service_agenda_base_weight) {1093 if !Self::service_agenda(weight, &mut executed, now, when, u32::max_value()) {1094 incomplete_since = incomplete_since.min(when);1095 }1096 when.saturating_inc();1097 count_down.saturating_dec();1098 }1099 incomplete_since = incomplete_since.min(when);1100 if incomplete_since <= now {1101 IncompleteSince::<T>::put(incomplete_since);1102 }1103 }11041105 1106 1107 fn service_agenda(1108 weight: &mut WeightCounter,1109 executed: &mut u32,1110 now: T::BlockNumber,1111 when: T::BlockNumber,1112 max: u32,1113 ) -> bool {1114 let mut agenda = Agenda::<T>::get(when);1115 let mut ordered = agenda1116 .iter()1117 .enumerate()1118 .filter_map(|(index, maybe_item)| {1119 maybe_item1120 .as_ref()1121 .map(|item| (index as u32, item.priority))1122 })1123 .collect::<Vec<_>>();1124 ordered.sort_by_key(|k| k.1);1125 let within_limit =1126 weight.check_accrue(T::WeightInfo::service_agenda_base(ordered.len() as u32));1127 debug_assert!(1128 within_limit,1129 "weight limit should have been checked in advance"1130 );11311132 1133 let mut postponed = (ordered.len() as u32).saturating_sub(max);1134 1135 let mut dropped = 0;11361137 for (agenda_index, _) in ordered.into_iter().take(max as usize) {1138 let task = match agenda.take(agenda_index).take() {1139 None => continue,1140 Some(t) => t,1141 };1142 let base_weight = MarginalWeightInfo::<T>::service_task(1143 task.call.lookup_len().map(|x| x as usize),1144 task.maybe_id.is_some(),1145 task.maybe_periodic.is_some(),1146 );1147 if !weight.can_accrue(base_weight) {1148 postponed += 1;1149 break;1150 }1151 let result = Self::service_task(weight, now, when, agenda_index, *executed == 0, task);1152 match result {1153 Err((Unavailable, slot)) => {1154 dropped += 1;1155 agenda.set_slot(agenda_index, slot);1156 }1157 Err((Overweight, slot)) => {1158 postponed += 1;1159 agenda.set_slot(agenda_index, slot);1160 }1161 Ok(()) => {1162 *executed += 1;1163 }1164 };1165 }1166 if postponed > 0 || dropped > 0 {1167 Agenda::<T>::insert(when, agenda);1168 } else {1169 Agenda::<T>::remove(when);1170 }1171 postponed == 01172 }11731174 1175 1176 1177 1178 1179 1180 fn service_task(1181 weight: &mut WeightCounter,1182 now: T::BlockNumber,1183 when: T::BlockNumber,1184 agenda_index: u32,1185 is_first: bool,1186 mut task: ScheduledOf<T>,1187 ) -> Result<(), (ServiceTaskError, Option<ScheduledOf<T>>)> {1188 let (call, lookup_len) = match T::Preimages::peek(&task.call) {1189 Ok(c) => c,1190 Err(_) => {1191 if let Some(ref id) = task.maybe_id {1192 Lookup::<T>::remove(id);1193 }11941195 return Err((Unavailable, Some(task)));1196 }1197 };11981199 weight.check_accrue(MarginalWeightInfo::<T>::service_task(1200 lookup_len.map(|x| x as usize),1201 task.maybe_id.is_some(),1202 task.maybe_periodic.is_some(),1203 ));12041205 match Self::execute_dispatch(weight, task.origin.clone(), call) {1206 Err(Unavailable) => {1207 debug_assert!(false, "Checked to exist with `peek`");12081209 if let Some(ref id) = task.maybe_id {1210 Lookup::<T>::remove(id);1211 }12121213 Self::deposit_event(Event::CallUnavailable {1214 task: (when, agenda_index),1215 id: task.maybe_id,1216 });1217 Err((Unavailable, Some(task)))1218 }1219 Err(Overweight) if is_first && !Self::is_runtime_upgraded() => {1220 T::Preimages::drop(&task.call);12211222 if let Some(ref id) = task.maybe_id {1223 Lookup::<T>::remove(id);1224 }12251226 Self::deposit_event(Event::PermanentlyOverweight {1227 task: (when, agenda_index),1228 id: task.maybe_id,1229 });1230 Err((Unavailable, Some(task)))1231 }1232 Err(Overweight) => {1233 1234 Err((Overweight, Some(task)))1235 }1236 Ok(result) => {1237 Self::deposit_event(Event::Dispatched {1238 task: (when, agenda_index),1239 id: task.maybe_id,1240 result,1241 });12421243 let is_canceled = task1244 .maybe_id1245 .as_ref()1246 .map(|id| !Lookup::<T>::contains_key(id))1247 .unwrap_or(false);12481249 match &task.maybe_periodic {1250 &Some((period, count)) if !is_canceled => {1251 if count > 1 {1252 task.maybe_periodic = Some((period, count - 1));1253 } else {1254 task.maybe_periodic = None;1255 }1256 let wake = now.saturating_add(period);1257 Self::mandatory_place_task(wake, task);1258 }1259 _ => {1260 if let Some(ref id) = task.maybe_id {1261 Lookup::<T>::remove(id);1262 }12631264 T::Preimages::drop(&task.call)1265 }1266 }1267 Ok(())1268 }1269 }1270 }12711272 fn is_runtime_upgraded() -> bool {1273 let last = system::LastRuntimeUpgrade::<T>::get();1274 let current = T::Version::get();12751276 last.map(|v| v.was_upgraded(¤t)).unwrap_or(true)1277 }12781279 1280 1281 1282 1283 1284 1285 fn execute_dispatch(1286 weight: &mut WeightCounter,1287 origin: T::PalletsOrigin,1288 call: <T as Config>::RuntimeCall,1289 ) -> Result<DispatchResult, ServiceTaskError> {1290 let dispatch_origin: <T as Config>::RuntimeOrigin = origin.into();1291 let base_weight = match dispatch_origin.clone().as_signed() {1292 Some(_) => T::WeightInfo::execute_dispatch_signed(),1293 _ => T::WeightInfo::execute_dispatch_unsigned(),1294 };1295 let call_weight = call.get_dispatch_info().weight;1296 1297 let max_weight = base_weight.saturating_add(call_weight);12981299 if !weight.can_accrue(max_weight) {1300 return Err(Overweight);1301 }13021303 let ensured_origin = T::ScheduleOrigin::ensure_origin(dispatch_origin.into());13041305 let r = match ensured_origin {1306 Ok(ScheduledEnsureOriginSuccess::Root) => {1307 Ok(call.dispatch_bypass_filter(frame_system::RawOrigin::Root.into()))1308 }1309 Ok(ScheduledEnsureOriginSuccess::Signed(sender)) => {1310 1311 1312 T::CallExecutor::dispatch_call(Some(sender), call)1313 }1314 Err(e) => Ok(Err(e.into())),1315 };13161317 let (maybe_actual_call_weight, result) = match r {1318 Ok(result) => match result {1319 Ok(post_info) => (post_info.actual_weight, Ok(())),1320 Err(error_and_info) => (1321 error_and_info.post_info.actual_weight,1322 Err(error_and_info.error),1323 ),1324 },1325 Err(_) => {1326 log::error!(1327 target: "runtime::scheduler",1328 "Warning: Scheduler has failed to execute a post-dispatch transaction. \1329 This block might have become invalid.");1330 (None, Err(DispatchError::CannotLookup))1331 }1332 };1333 let call_weight = maybe_actual_call_weight.unwrap_or(call_weight);1334 weight.check_accrue(base_weight);1335 weight.check_accrue(call_weight);1336 Ok(result)1337 }1338}