anvil_zksync_core/
system_contracts.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
use crate::deps::system_contracts::load_builtin_contract;
use crate::node::ImpersonationManager;
use anvil_zksync_config::types::SystemContractsOptions;
use zksync_contracts::{
    read_bootloader_code, read_sys_contract_bytecode, BaseSystemContracts,
    BaseSystemContractsHashes, ContractLanguage, SystemContractCode,
};
use zksync_multivm::interface::TxExecutionMode;
use zksync_types::bytecode::BytecodeHash;
use zksync_types::{Address, ProtocolVersionId};

/// Holds the system contracts (and bootloader) that are used by the in-memory node.
#[derive(Debug, Clone)]
pub struct SystemContracts {
    pub protocol_version: ProtocolVersionId,
    baseline_contracts: BaseSystemContracts,
    playground_contracts: BaseSystemContracts,
    fee_estimate_contracts: BaseSystemContracts,
    baseline_impersonating_contracts: BaseSystemContracts,
    fee_estimate_impersonating_contracts: BaseSystemContracts,
    use_evm_emulator: bool,
    // For now, store the zkos switch flag here.
    // Long term, we should probably refactor this code, and add another struct ('System')
    // that would hold separate things for ZKOS and for EraVM. (but that's too early for now).
    pub use_zkos: bool,
}

impl SystemContracts {
    /// Creates the SystemContracts that use the complied contracts from ZKSYNC_HOME path.
    /// These are loaded at binary runtime.
    pub fn from_options(
        options: SystemContractsOptions,
        protocol_version: ProtocolVersionId,
        use_evm_emulator: bool,
        use_zkos: bool,
    ) -> Self {
        tracing::info!(
            %protocol_version,
            use_evm_emulator,
            use_zkos,
            "initializing system contracts"
        );
        Self {
            protocol_version,
            baseline_contracts: baseline_contracts(options, protocol_version, use_evm_emulator),
            playground_contracts: playground(options, protocol_version, use_evm_emulator),
            fee_estimate_contracts: fee_estimate_contracts(
                options,
                protocol_version,
                use_evm_emulator,
            ),
            baseline_impersonating_contracts: baseline_impersonating_contracts(
                options,
                protocol_version,
                use_evm_emulator,
            ),
            fee_estimate_impersonating_contracts: fee_estimate_impersonating_contracts(
                options,
                protocol_version,
                use_evm_emulator,
            ),
            use_evm_emulator,
            use_zkos,
        }
    }

    /// Whether it accepts the transactions that have 'null' as target.
    /// This is used only when EVM emulator is enabled, or we're running in zkos mode.
    pub fn allow_no_target(&self) -> bool {
        self.use_zkos || self.use_evm_emulator
    }

    pub fn contracts_for_l2_call(&self) -> &BaseSystemContracts {
        self.contracts(TxExecutionMode::EthCall, false)
    }

    pub fn contracts_for_fee_estimate(&self, impersonating: bool) -> &BaseSystemContracts {
        self.contracts(TxExecutionMode::EstimateFee, impersonating)
    }

    pub fn contracts(
        &self,
        execution_mode: TxExecutionMode,
        impersonating: bool,
    ) -> &BaseSystemContracts {
        match (execution_mode, impersonating) {
            // 'real' contracts, that do all the checks.
            (TxExecutionMode::VerifyExecute, false) => &self.baseline_contracts,
            // Ignore invalid signatures. These requests are often coming unsigned, and they keep changing the
            // gas limit - so the signatures are often not matching.
            (TxExecutionMode::EstimateFee, false) => &self.fee_estimate_contracts,
            // Read-only call - don't check signatures, have a lower (fixed) gas limit.
            (TxExecutionMode::EthCall, false) => &self.playground_contracts,
            // Without account validation and sender related checks.
            (TxExecutionMode::VerifyExecute, true) => &self.baseline_impersonating_contracts,
            (TxExecutionMode::EstimateFee, true) => &self.fee_estimate_impersonating_contracts,
            (TxExecutionMode::EthCall, true) => {
                panic!("Account impersonating with eth_call is not supported")
            }
        }
    }

    pub fn base_system_contracts_hashes(&self) -> BaseSystemContractsHashes {
        self.baseline_contracts.hashes()
    }

    pub fn system_contracts_for_initiator(
        &self,
        impersonation: &ImpersonationManager,
        initiator: &Address,
    ) -> BaseSystemContracts {
        if impersonation.is_impersonating(initiator) {
            tracing::info!("Executing tx from impersonated account {initiator:?}");
            self.contracts(TxExecutionMode::VerifyExecute, true).clone()
        } else {
            self.contracts(TxExecutionMode::VerifyExecute, false)
                .clone()
        }
    }
}

/// Creates BaseSystemContracts object with a specific bootloader.
fn bsc_load_with_bootloader(
    bootloader_bytecode: Vec<u8>,
    options: SystemContractsOptions,
    protocol_version: ProtocolVersionId,
    use_evm_emulator: bool,
) -> BaseSystemContracts {
    let hash = BytecodeHash::for_bytecode(&bootloader_bytecode);

    let bootloader = SystemContractCode {
        code: bootloader_bytecode,
        hash: hash.value(),
    };

    let aa_bytecode = match options {
        SystemContractsOptions::BuiltIn => {
            load_builtin_contract(protocol_version, "DefaultAccount")
        }
        SystemContractsOptions::Local => {
            read_sys_contract_bytecode("", "DefaultAccount", ContractLanguage::Sol)
        }
        SystemContractsOptions::BuiltInWithoutSecurity => {
            load_builtin_contract(protocol_version, "DefaultAccountNoSecurity")
        }
    };

    let aa_hash = BytecodeHash::for_bytecode(&aa_bytecode);
    let default_aa = SystemContractCode {
        code: aa_bytecode,
        hash: aa_hash.value(),
    };

    let evm_emulator = if use_evm_emulator {
        let evm_emulator_bytecode = match options {
            SystemContractsOptions::Local => {
                read_sys_contract_bytecode("", "EvmEmulator", ContractLanguage::Yul)
            }
            SystemContractsOptions::BuiltIn | SystemContractsOptions::BuiltInWithoutSecurity => {
                load_builtin_contract(protocol_version, "EvmEmulator")
            }
        };
        let evm_emulator_hash = BytecodeHash::for_bytecode(&evm_emulator_bytecode);
        Some(SystemContractCode {
            code: evm_emulator_bytecode,
            hash: evm_emulator_hash.value(),
        })
    } else {
        None
    };

    BaseSystemContracts {
        bootloader,
        default_aa,
        evm_emulator,
    }
}

/// BaseSystemContracts with playground bootloader -  used for handling 'eth_calls'.
fn playground(
    options: SystemContractsOptions,
    protocol_version: ProtocolVersionId,
    use_evm_emulator: bool,
) -> BaseSystemContracts {
    let bootloader_bytecode = match options {
        SystemContractsOptions::BuiltIn | SystemContractsOptions::BuiltInWithoutSecurity => {
            load_builtin_contract(protocol_version, "playground_batch")
        }
        SystemContractsOptions::Local => read_bootloader_code("playground_batch"),
    };

    bsc_load_with_bootloader(
        bootloader_bytecode,
        options,
        protocol_version,
        use_evm_emulator,
    )
}

/// Returns the system contracts for fee estimation.
///
/// # Returns
///
/// A `BaseSystemContracts` struct containing the system contracts used for handling 'eth_estimateGas'.
/// It sets ENSURE_RETURNED_MAGIC to 0 and BOOTLOADER_TYPE to 'playground_block'
fn fee_estimate_contracts(
    options: SystemContractsOptions,
    protocol_version: ProtocolVersionId,
    use_evm_emulator: bool,
) -> BaseSystemContracts {
    let bootloader_bytecode = match options {
        SystemContractsOptions::BuiltIn | SystemContractsOptions::BuiltInWithoutSecurity => {
            load_builtin_contract(protocol_version, "fee_estimate")
        }
        SystemContractsOptions::Local => read_bootloader_code("fee_estimate"),
    };

    bsc_load_with_bootloader(
        bootloader_bytecode,
        options,
        protocol_version,
        use_evm_emulator,
    )
}

fn fee_estimate_impersonating_contracts(
    options: SystemContractsOptions,
    protocol_version: ProtocolVersionId,
    use_evm_emulator: bool,
) -> BaseSystemContracts {
    let bootloader_bytecode = match options {
        SystemContractsOptions::BuiltIn | SystemContractsOptions::BuiltInWithoutSecurity => {
            load_builtin_contract(protocol_version, "fee_estimate_impersonating")
        }
        // Account impersonating is not supported with the local contracts
        SystemContractsOptions::Local => read_bootloader_code("fee_estimate"),
    };

    bsc_load_with_bootloader(
        bootloader_bytecode,
        options,
        protocol_version,
        use_evm_emulator,
    )
}

fn baseline_contracts(
    options: SystemContractsOptions,
    protocol_version: ProtocolVersionId,
    use_evm_emulator: bool,
) -> BaseSystemContracts {
    let bootloader_bytecode = match options {
        SystemContractsOptions::BuiltIn | SystemContractsOptions::BuiltInWithoutSecurity => {
            load_builtin_contract(protocol_version, "proved_batch")
        }
        SystemContractsOptions::Local => read_bootloader_code("proved_batch"),
    };
    bsc_load_with_bootloader(
        bootloader_bytecode,
        options,
        protocol_version,
        use_evm_emulator,
    )
}

fn baseline_impersonating_contracts(
    options: SystemContractsOptions,
    protocol_version: ProtocolVersionId,
    use_evm_emulator: bool,
) -> BaseSystemContracts {
    let bootloader_bytecode = match options {
        SystemContractsOptions::BuiltIn | SystemContractsOptions::BuiltInWithoutSecurity => {
            load_builtin_contract(protocol_version, "proved_batch_impersonating")
        }
        // Account impersonating is not supported with the local contracts
        SystemContractsOptions::Local => read_bootloader_code("proved_batch"),
    };
    bsc_load_with_bootloader(
        bootloader_bytecode,
        options,
        protocol_version,
        use_evm_emulator,
    )
}