Skip to content

Commit e319bee

Browse files
authored
better err log: (1) return err for copy circuit overflow (2) log::war… (#1409)
* better err log: (1) return err for copy circuit overflow (2) log::warn for state root mismatch * update poseidon-base
1 parent 41f0c6d commit e319bee

File tree

15 files changed

+32
-25
lines changed

15 files changed

+32
-25
lines changed

Cargo.lock

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bus-mapping/src/circuit_input_builder/block.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -257,16 +257,17 @@ impl Blocks {
257257

258258
impl Blocks {
259259
/// Push a copy event to the block.
260-
pub fn add_copy_event(&mut self, event: CopyEvent) {
260+
pub fn add_copy_event(&mut self, event: CopyEvent) -> Result<(), Error> {
261261
self.copy_counter += event.full_length() as usize;
262262
self.copy_events.push(event);
263263
// Each byte needs 2 rows
264264
// TODO: magic num
265265

266266
if self.copy_counter > 500_000 && cfg!(feature = "strict-ccc") {
267267
log::error!("copy event len overflow {}", self.copy_counter);
268-
panic!("copy event len overflow");
268+
return Err(Error::InvalidGethExecTrace("copy event len overflow"));
269269
}
270+
Ok(())
270271
}
271272
fn copy_event_total_len(&self) -> usize {
272273
self.copy_events

bus-mapping/src/circuit_input_builder/input_state_ref.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -1629,9 +1629,13 @@ impl<'a> CircuitInputStateRef<'a> {
16291629
}
16301630

16311631
/// Push a copy event to the state.
1632-
pub fn push_copy(&mut self, step: &mut ExecStep, event: CopyEvent) {
1632+
pub fn push_copy(&mut self, step: &mut ExecStep, event: CopyEvent) -> Result<(), Error> {
16331633
step.copy_rw_counter_delta += event.rw_counter_delta();
1634-
self.block.add_copy_event(event);
1634+
let result = self.block.add_copy_event(event);
1635+
if result.is_err() {
1636+
log::error!("push_copy failed {result:?}, step {step:?}");
1637+
}
1638+
result
16351639
}
16361640

16371641
/// Push a exponentiation event to the state.

bus-mapping/src/evm/opcodes/begin_end_tx.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ pub fn gen_begin_tx_steps(state: &mut CircuitInputStateRef) -> Result<Vec<ExecSt
319319
copy_bytes: CopyBytes::new(bytes, None, None),
320320
access_list: vec![],
321321
},
322-
);
322+
)?;
323323
}
324324

325325
let mut precompile_step = None;
@@ -466,7 +466,7 @@ pub fn gen_begin_tx_steps(state: &mut CircuitInputStateRef) -> Result<Vec<ExecSt
466466
copy_bytes: CopyBytes::new(copy_steps, None, None),
467467
access_list: vec![],
468468
},
469-
);
469+
)?;
470470

471471
let call_success = call.is_success;
472472
// modexp's oog error is handled in ModExpGadget
@@ -908,7 +908,7 @@ fn add_access_list_address_copy_event(
908908
log_id: None,
909909
};
910910

911-
state.push_copy(exec_step, copy_event);
911+
state.push_copy(exec_step, copy_event)?;
912912

913913
Ok(())
914914
}
@@ -993,7 +993,7 @@ fn add_access_list_storage_key_copy_event(
993993
log_id: None,
994994
};
995995

996-
state.push_copy(exec_step, copy_event);
996+
state.push_copy(exec_step, copy_event)?;
997997

998998
Ok(())
999999
}

bus-mapping/src/evm/opcodes/calldatacopy.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ impl Opcode for Calldatacopy {
6363
};
6464

6565
let copy_event = gen_copy_event(state, memory_offset, data_offset, length, &mut exec_step)?;
66-
state.push_copy(&mut exec_step, copy_event);
66+
state.push_copy(&mut exec_step, copy_event)?;
6767
Ok(vec![exec_step])
6868
}
6969
}

bus-mapping/src/evm/opcodes/callop.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ impl<const N_ARGS: usize> Opcode for CallOpcode<N_ARGS> {
415415
copy_bytes: CopyBytes::new(copy_steps, None, None),
416416
access_list: vec![],
417417
},
418-
);
418+
)?;
419419
Some(input_bytes)
420420
} else {
421421
None
@@ -446,7 +446,7 @@ impl<const N_ARGS: usize> Opcode for CallOpcode<N_ARGS> {
446446
copy_bytes: CopyBytes::new(copy_steps, None, Some(prev_bytes)),
447447
access_list: vec![],
448448
},
449-
);
449+
)?;
450450
Some(output_bytes)
451451
} else {
452452
None
@@ -486,7 +486,7 @@ impl<const N_ARGS: usize> Opcode for CallOpcode<N_ARGS> {
486486
),
487487
access_list: vec![],
488488
},
489-
);
489+
)?;
490490
Some(returned_bytes)
491491
} else {
492492
None

bus-mapping/src/evm/opcodes/codecopy.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ impl Opcode for Codecopy {
3737
length.as_u64(),
3838
&mut exec_step,
3939
)?;
40-
state.push_copy(&mut exec_step, copy_event);
40+
state.push_copy(&mut exec_step, copy_event)?;
4141
Ok(vec![exec_step])
4242
}
4343
}

bus-mapping/src/evm/opcodes/create.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ fn handle_copy(
398398
copy_bytes: CopyBytes::new(copy_steps, None, None),
399399
access_list: vec![],
400400
},
401-
);
401+
)?;
402402

403403
Ok((initcode, keccak_code_hash, code_hash))
404404
}

bus-mapping/src/evm/opcodes/extcodecopy.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ impl Opcode for Extcodecopy {
8080
length,
8181
&mut exec_step,
8282
)?;
83-
state.push_copy(&mut exec_step, copy_event);
83+
state.push_copy(&mut exec_step, copy_event)?;
8484
Ok(vec![exec_step])
8585
}
8686
}

bus-mapping/src/evm/opcodes/logs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ impl Opcode for Log {
9595
// https://github.com/ethereum/go-ethereum/blob/b80f05bde2c4e93ae64bb3813b6d67266b5fc0e6/core/vm/instructions.go#L850
9696
let copy_event =
9797
gen_copy_event(state, mstart.low_u64(), msize.low_u64(), &mut exec_step)?;
98-
state.push_copy(&mut exec_step, copy_event);
98+
state.push_copy(&mut exec_step, copy_event)?;
9999
state.tx_ctx.log_id += 1;
100100
}
101101

bus-mapping/src/evm/opcodes/mcopy.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ impl Opcode for MCopy {
3737
length.as_u64(),
3838
&mut exec_step,
3939
)?;
40-
state.push_copy(&mut exec_step, copy_event);
40+
state.push_copy(&mut exec_step, copy_event)?;
4141
Ok(vec![exec_step])
4242
}
4343
}

bus-mapping/src/evm/opcodes/return_revert.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ fn handle_copy(
296296
copy_bytes: CopyBytes::new(read_steps, Some(write_steps), Some(dst_data_prev)),
297297
access_list: vec![],
298298
},
299-
);
299+
)?;
300300

301301
Ok(())
302302
}
@@ -363,7 +363,7 @@ fn handle_create(
363363
copy_bytes: CopyBytes::new(copy_steps, None, None),
364364
access_list: vec![],
365365
},
366-
);
366+
)?;
367367

368368
Ok(AccountCodeInfo {
369369
keccak_hash,

bus-mapping/src/evm/opcodes/returndatacopy.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ impl Opcode for Returndatacopy {
6161
}
6262

6363
let copy_event = gen_copy_event(state, memory_offset, data_offset, length, &mut exec_step)?;
64-
state.push_copy(&mut exec_step, copy_event);
64+
state.push_copy(&mut exec_step, copy_event)?;
6565
Ok(vec![exec_step])
6666
}
6767
}

bus-mapping/src/evm/opcodes/sha3.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ impl Opcode for Sha3 {
9494
copy_bytes: CopyBytes::new(copy_steps, None, None),
9595
access_list: vec![],
9696
},
97-
);
97+
)?;
9898

9999
Ok(vec![exec_step])
100100
}

zkevm-circuits/src/witness/mpt.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -183,13 +183,14 @@ impl MptUpdates {
183183

184184
let root_pair2 = (self.old_root, self.new_root);
185185
if root_pair2 != root_pair {
186-
log::error!(
186+
log::warn!(
187187
"roots non consistent ({:#x},{:#x}) vs ({:#x},{:#x})",
188188
root_pair.0,
189189
root_pair.1,
190190
root_pair2.0,
191191
root_pair2.1
192192
);
193+
#[cfg(debug_assertions)]
193194
wit_gen.dump(
194195
self.updates
195196
.iter()

0 commit comments

Comments
 (0)