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
// 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/>.

#![allow(clippy::too_many_arguments)]

mod worker;

pub use worker::MappingSyncWorker;

use std::sync::Arc;

// Substrate
use sc_client_api::backend::{Backend, StorageProvider};
use sp_api::{ApiExt, ProvideRuntimeApi};
use sp_blockchain::{Backend as _, HeaderBackend};
use sp_consensus::SyncOracle;
use sp_runtime::traits::{Block as BlockT, Header as HeaderT, Zero};
// Frontier
use fc_storage::OverrideHandle;
use fp_consensus::{FindLogError, Hashes, Log, PostLog, PreLog};
use fp_rpc::EthereumRuntimeRPCApi;

use crate::{EthereumBlockNotification, EthereumBlockNotificationSinks, SyncStrategy};

pub fn sync_block<Block: BlockT, C, BE>(
    client: &C,
    overrides: Arc<OverrideHandle<Block>>,
    backend: &fc_db::kv::Backend<Block>,
    header: &Block::Header,
) -> Result<(), String>
where
    C: HeaderBackend<Block> + StorageProvider<Block, BE>,
    BE: Backend<Block>,
{
    let substrate_block_hash = header.hash();
    match fp_consensus::find_log(header.digest()) {
        Ok(log) => {
            let gen_from_hashes = |hashes: Hashes| -> fc_db::kv::MappingCommitment<Block> {
                fc_db::kv::MappingCommitment {
                    block_hash: substrate_block_hash,
                    ethereum_block_hash: hashes.block_hash,
                    ethereum_transaction_hashes: hashes.transaction_hashes,
                }
            };
            let gen_from_block = |block| -> fc_db::kv::MappingCommitment<Block> {
                let hashes = Hashes::from_block(block);
                gen_from_hashes(hashes)
            };

            match log {
                Log::Pre(PreLog::Block(block)) => {
                    let mapping_commitment = gen_from_block(block);
                    backend.mapping().write_hashes(mapping_commitment)
                },
                Log::Post(post_log) => match post_log {
                    PostLog::Hashes(hashes) => {
                        let mapping_commitment = gen_from_hashes(hashes);
                        backend.mapping().write_hashes(mapping_commitment)
                    },
                    PostLog::Block(block) => {
                        let mapping_commitment = gen_from_block(block);
                        backend.mapping().write_hashes(mapping_commitment)
                    },
                    PostLog::BlockHash(expect_eth_block_hash) => {
                        let schema =
                            fc_storage::onchain_storage_schema(client, substrate_block_hash);
                        let ethereum_block = overrides
                            .schemas
                            .get(&schema)
                            .unwrap_or(&overrides.fallback)
                            .current_block(substrate_block_hash);
                        match ethereum_block {
                            Some(block) => {
                                let got_eth_block_hash = block.header.hash();
                                if got_eth_block_hash != expect_eth_block_hash {
                                    Err(format!(
                                        "Ethereum block hash mismatch: \
										frontier consensus digest ({expect_eth_block_hash:?}), \
										db state ({got_eth_block_hash:?})"
                                    ))
                                } else {
                                    let mapping_commitment = gen_from_block(block);
                                    backend.mapping().write_hashes(mapping_commitment)
                                }
                            },
                            None => backend.mapping().write_none(substrate_block_hash),
                        }
                    },
                },
            }
        },
        Err(FindLogError::NotFound) => backend.mapping().write_none(substrate_block_hash),
        Err(FindLogError::MultipleLogs) => Err("Multiple logs found".to_string()),
    }
}

pub fn sync_genesis_block<Block: BlockT, C>(
    client: &C,
    backend: &fc_db::kv::Backend<Block>,
    header: &Block::Header,
) -> Result<(), String>
where
    C: ProvideRuntimeApi<Block>,
    C::Api: EthereumRuntimeRPCApi<Block>,
{
    let substrate_block_hash = header.hash();

    if let Some(api_version) = client
        .runtime_api()
        .api_version::<dyn EthereumRuntimeRPCApi<Block>>(substrate_block_hash)
        .map_err(|e| format!("{:?}", e))?
    {
        let block = if api_version > 1 {
            client
                .runtime_api()
                .current_block(substrate_block_hash)
                .map_err(|e| format!("{:?}", e))?
        } else {
            #[allow(deprecated)]
            let legacy_block = client
                .runtime_api()
                .current_block_before_version_2(substrate_block_hash)
                .map_err(|e| format!("{:?}", e))?;
            legacy_block.map(|block| block.into())
        };
        let block_hash = block
            .ok_or_else(|| "Ethereum genesis block not found".to_string())?
            .header
            .hash();
        let mapping_commitment = fc_db::kv::MappingCommitment::<Block> {
            block_hash: substrate_block_hash,
            ethereum_block_hash: block_hash,
            ethereum_transaction_hashes: Vec::new(),
        };
        backend.mapping().write_hashes(mapping_commitment)?;
    } else {
        backend.mapping().write_none(substrate_block_hash)?;
    };

    Ok(())
}

pub fn sync_one_block<Block: BlockT, C, BE>(
    client: &C,
    substrate_backend: &BE,
    overrides: Arc<OverrideHandle<Block>>,
    frontier_backend: &fc_db::kv::Backend<Block>,
    sync_from: <Block::Header as HeaderT>::Number,
    strategy: SyncStrategy,
    sync_oracle: Arc<dyn SyncOracle + Send + Sync + 'static>,
    pubsub_notification_sinks: Arc<
        EthereumBlockNotificationSinks<EthereumBlockNotification<Block>>,
    >,
) -> Result<bool, String>
where
    C: ProvideRuntimeApi<Block>,
    C::Api: EthereumRuntimeRPCApi<Block>,
    C: HeaderBackend<Block> + StorageProvider<Block, BE>,
    BE: Backend<Block>,
{
    let mut current_syncing_tips = frontier_backend.meta().current_syncing_tips()?;

    if current_syncing_tips.is_empty() {
        let mut leaves = substrate_backend
            .blockchain()
            .leaves()
            .map_err(|e| format!("{:?}", e))?;
        if leaves.is_empty() {
            return Ok(false)
        }
        current_syncing_tips.append(&mut leaves);
    }

    let mut operating_header = None;
    while let Some(checking_tip) = current_syncing_tips.pop() {
        if let Some(checking_header) = fetch_header(
            substrate_backend.blockchain(),
            frontier_backend,
            checking_tip,
            sync_from,
        )? {
            operating_header = Some(checking_header);
            break
        }
    }
    let operating_header = match operating_header {
        Some(operating_header) => operating_header,
        None => {
            frontier_backend
                .meta()
                .write_current_syncing_tips(current_syncing_tips)?;
            return Ok(false)
        },
    };

    if operating_header.number() == &Zero::zero() {
        sync_genesis_block(client, frontier_backend, &operating_header)?;

        frontier_backend
            .meta()
            .write_current_syncing_tips(current_syncing_tips)?;
    } else {
        if SyncStrategy::Parachain == strategy
            && operating_header.number() > &client.info().best_number
        {
            return Ok(false)
        }
        sync_block(client, overrides, frontier_backend, &operating_header)?;

        current_syncing_tips.push(*operating_header.parent_hash());
        frontier_backend
            .meta()
            .write_current_syncing_tips(current_syncing_tips)?;
    }
    // Notify on import and remove closed channels.
    // Only notify when the node is node in major syncing.
    let sinks = &mut pubsub_notification_sinks.lock();
    sinks.retain(|sink| {
        if !sync_oracle.is_major_syncing() {
            let hash = operating_header.hash();
            let is_new_best = client.info().best_hash == hash;
            sink.unbounded_send(EthereumBlockNotification { is_new_best, hash })
                .is_ok()
        } else {
            // Remove from the pool if in major syncing.
            false
        }
    });
    Ok(true)
}

pub fn sync_blocks<Block: BlockT, C, BE>(
    client: &C,
    substrate_backend: &BE,
    overrides: Arc<OverrideHandle<Block>>,
    frontier_backend: &fc_db::kv::Backend<Block>,
    limit: usize,
    sync_from: <Block::Header as HeaderT>::Number,
    strategy: SyncStrategy,
    sync_oracle: Arc<dyn SyncOracle + Send + Sync + 'static>,
    pubsub_notification_sinks: Arc<
        EthereumBlockNotificationSinks<EthereumBlockNotification<Block>>,
    >,
) -> Result<bool, String>
where
    C: ProvideRuntimeApi<Block>,
    C::Api: EthereumRuntimeRPCApi<Block>,
    C: HeaderBackend<Block> + StorageProvider<Block, BE>,
    BE: Backend<Block>,
{
    let mut synced_any = false;

    for _ in 0..limit {
        synced_any = synced_any
            || sync_one_block(
                client,
                substrate_backend,
                overrides.clone(),
                frontier_backend,
                sync_from,
                strategy,
                sync_oracle.clone(),
                pubsub_notification_sinks.clone(),
            )?;
    }

    Ok(synced_any)
}

pub fn fetch_header<Block: BlockT, BE>(
    substrate_backend: &BE,
    frontier_backend: &fc_db::kv::Backend<Block>,
    checking_tip: Block::Hash,
    sync_from: <Block::Header as HeaderT>::Number,
) -> Result<Option<Block::Header>, String>
where
    BE: HeaderBackend<Block>,
{
    if frontier_backend.mapping().is_synced(&checking_tip)? {
        return Ok(None)
    }

    match substrate_backend.header(checking_tip) {
        Ok(Some(checking_header)) if checking_header.number() >= &sync_from =>
            Ok(Some(checking_header)),
        Ok(Some(_)) => Ok(None),
        Ok(None) | Err(_) => Err("Header not found".to_string()),
    }
}