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
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
// This file is part of Frontier.
//
// Copyright (c) 2020-2022 Parity Technologies (UK) Ltd.
//
// This program 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.
//
// This program 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/>.

use std::{marker::PhantomData, sync::Arc};

// Substrate
use sc_client_api::{
    backend::{AuxStore, Backend, StorageProvider},
    UsageProvider,
};
use sc_transaction_pool::ChainApi;
use sc_transaction_pool_api::InPoolTransaction;
use sp_api::{ApiExt, ApiRef, Core, ProvideRuntimeApi};
use sp_block_builder::BlockBuilder as BlockBuilderApi;
use sp_blockchain::{ApplyExtrinsicFailed, HeaderBackend};
use sp_inherents::{CreateInherentDataProviders, InherentData, InherentDataProvider};
use sp_runtime::{
    generic::{Digest, DigestItem},
    traits::{Block as BlockT, Header as HeaderT, One},
    TransactionOutcome,
};
use sp_timestamp::TimestampInherentData;

use crate::eth::{Eth, EthConfig};

const LOG_TARGET: &str = "eth-pending";

/// The generated error type for creating pending runtime api.
#[derive(Debug, thiserror::Error)]
pub(crate) enum Error {
    #[error("Failed to call runtime API, {0}")]
    CallApi(#[from] sp_api::ApiError),
    #[error("Failed to create pending inherent data, {0}")]
    PendingInherentData(#[from] sp_inherents::Error),
    #[error("Failed to create pending inherent data provider, {0}")]
    PendingCreateInherentDataProvider(#[from] Box<dyn std::error::Error + Send + Sync>),
    #[error(transparent)]
    Backend(#[from] sp_blockchain::Error),
    #[error(transparent)]
    ApplyExtrinsicFailed(#[from] ApplyExtrinsicFailed),
}

impl<B, C, P, CT, BE, A, CIDP, EC> Eth<B, C, P, CT, BE, A, CIDP, EC>
where
    B: BlockT,
    C: ProvideRuntimeApi<B>,
    C::Api: BlockBuilderApi<B>,
    C: HeaderBackend<B> + StorageProvider<B, BE> + 'static,
    BE: Backend<B>,
    A: ChainApi<Block = B>,
    CIDP: CreateInherentDataProviders<B, ()> + Send + 'static,
    EC: EthConfig<B, C>,
{
    /// Creates a pending runtime API.
    pub(crate) async fn pending_runtime_api(&self) -> Result<(B::Hash, ApiRef<C::Api>), Error> {
        let api = self.client.runtime_api();

        let info = self.client.info();
        let (best_number, best_hash) = (info.best_number, info.best_hash);

        let inherent_data_provider = self
            .pending_create_inherent_data_providers
            .create_inherent_data_providers(best_hash, ())
            .await?;
        let inherent_data = inherent_data_provider.create_inherent_data().await?;

        let digest = if let Some(digest_provider) = &self.pending_consensus_data_provider {
            if let Some(header) = self.client.header(best_hash)? {
                digest_provider.create_digest(&header, &inherent_data)?
            } else {
                Default::default()
            }
        } else {
            Default::default()
        };

        log::info!(target: LOG_TARGET, "Pending runtime API: header digest = {digest:?}");

        let pending_header = <<B as BlockT>::Header as HeaderT>::new(
            best_number + One::one(),
            Default::default(),
            Default::default(),
            best_hash,
            digest,
        );

        // Initialize the pending block header
        api.initialize_block(best_hash, &pending_header)?;

        // Apply inherents to the pending block.
        let inherents = api.execute_in_transaction(move |api| {
            // `create_inherents` should not change any state, to ensure this we always rollback
            // the transaction.
            TransactionOutcome::Rollback(api.inherent_extrinsics(best_hash, inherent_data))
        })?;
        log::debug!(target: LOG_TARGET, "Pending runtime API: inherent len = {}", inherents.len());
        // Apply the inherents to the best block's state.
        for ext in inherents {
            let _ = api.execute_in_transaction(|api| match api.apply_extrinsic(best_hash, ext) {
                Ok(Ok(_)) => TransactionOutcome::Commit(Ok(())),
                Ok(Err(tx_validity)) => TransactionOutcome::Rollback(Err(
                    ApplyExtrinsicFailed::Validity(tx_validity).into(),
                )),
                Err(err) => TransactionOutcome::Rollback(Err(Error::from(err))),
            });
        }

        // Get all extrinsics from the ready queue.
        let extrinsics: Vec<<B as BlockT>::Extrinsic> = self
            .graph
            .validated_pool()
            .ready()
            .map(|in_pool_tx| in_pool_tx.data().clone())
            .collect::<Vec<<B as BlockT>::Extrinsic>>();
        log::debug!(target: LOG_TARGET, "Pending runtime API: extrinsic len = {}", extrinsics.len());
        // Apply the extrinsics from the ready queue to the pending block's state.
        for ext in extrinsics {
            let _ = api.execute_in_transaction(|api| match api.apply_extrinsic(best_hash, ext) {
                Ok(Ok(_)) => TransactionOutcome::Commit(Ok(())),
                Ok(Err(tx_validity)) => TransactionOutcome::Rollback(Err(
                    ApplyExtrinsicFailed::Validity(tx_validity).into(),
                )),
                Err(err) => TransactionOutcome::Rollback(Err(Error::from(err))),
            });
        }

        Ok((best_hash, api))
    }
}

/// Consensus data provider, pending api uses this trait object for authoring blocks valid for any runtime.
pub trait ConsensusDataProvider<B: BlockT>: Send + Sync {
    /// Attempt to create a consensus digest.
    fn create_digest(
        &self,
        parent: &B::Header,
        data: &InherentData,
    ) -> Result<Digest, sp_inherents::Error>;
}

impl<B: BlockT> ConsensusDataProvider<B> for () {
    fn create_digest(
        &self,
        _: &B::Header,
        _: &InherentData,
    ) -> Result<Digest, sp_inherents::Error> {
        Ok(Default::default())
    }
}

pub use self::aura::AuraConsensusDataProvider;
mod aura {
    use super::*;
    use sp_consensus_aura::{
        digests::CompatibleDigestItem,
        sr25519::{AuthorityId, AuthoritySignature},
        AuraApi, Slot, SlotDuration,
    };

    /// Consensus data provider for Aura.
    pub struct AuraConsensusDataProvider<B, C> {
        // slot duration
        slot_duration: SlotDuration,
        // phantom data for required generics
        _phantom: PhantomData<(B, C)>,
    }

    impl<B, C> AuraConsensusDataProvider<B, C>
    where
        B: BlockT,
        C: AuxStore + ProvideRuntimeApi<B> + UsageProvider<B>,
        C::Api: AuraApi<B, AuthorityId>,
    {
        /// Creates a new instance of the [`AuraConsensusDataProvider`], requires that `client`
        /// implements [`sp_consensus_aura::AuraApi`]
        pub fn new(client: Arc<C>) -> Self {
            let slot_duration = sc_consensus_aura::slot_duration(&*client)
                .expect("slot_duration is always present; qed.");
            Self {
                slot_duration,
                _phantom: PhantomData,
            }
        }
    }

    impl<B: BlockT, C: Send + Sync> ConsensusDataProvider<B> for AuraConsensusDataProvider<B, C> {
        fn create_digest(
            &self,
            _parent: &B::Header,
            data: &InherentData,
        ) -> Result<Digest, sp_inherents::Error> {
            let timestamp = data
                .timestamp_inherent_data()?
                .expect("Timestamp is always present; qed");

            let digest_item =
                <DigestItem as CompatibleDigestItem<AuthoritySignature>>::aura_pre_digest(
                    Slot::from_timestamp(timestamp, self.slot_duration),
                );

            Ok(Digest {
                logs: vec![digest_item],
            })
        }
    }
}