Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

powdr: end-to-end prover #7

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft

Conversation

gballet
Copy link
Contributor

@gballet gballet commented Mar 13, 2025

This creates glue between powdr and zeam, so that the block data can be passed as private inputs. Required for #3.

Still wip since waiting for changes on the powdr side.

TODO before merging:

  • ensure that prove also rebuilds the guest programs
  • extract the proof data
  • extract publics somehow
  • cleanup comments and debug text
  • correctly handle panics when an error is returned

@gballet gballet requested a review from Copilot March 13, 2025 17:22
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR creates a new library to establish bindings between powdr and zeam, allowing block data to be passed as private inputs.

  • Added a Cargo.toml for the new host library.
  • Introduced an FFI entry point (prove) in the host library that wraps session setup and execution.

Reviewed Changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.

File Description
pkgs/state-transition-runtime/src/powdr/host/Cargo.toml New package configuration for the zeam-prover-host-powdr library
pkgs/state-transition-runtime/src/powdr/host/src/lib.rs Implementation of the FFI prove function linking powdr Sessions

Comment on lines 14 to 21
if !serialized.is_null() {
std::slice::from_raw_parts(output, len)
Copy link
Preview

Copilot AI Mar 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The _output_slice initialization is using the 'serialized' pointer instead of 'output'. Update the condition to check if 'output' is null, and use 'output_len' in place of 'len' to correctly reflect the intended slice length.

Suggested change
if !serialized.is_null() {
std::slice::from_raw_parts(output, len)
if !output.is_null() {
std::slice::from_raw_parts(output, output_len)

Copilot is powered by AI, so mistakes are possible. Review output carefully before use.

@gballet gballet force-pushed the create-powdr-rust-bindings branch from 78b1a59 to 5131f55 Compare March 28, 2025 21:42
@gballet gballet changed the title powdr: create prover bindings lib powdr: end-to-end prover Mar 30, 2025
@gballet gballet force-pushed the create-powdr-rust-bindings branch 4 times, most recently from 616e553 to a187862 Compare March 30, 2025 20:19
@gballet
Copy link
Contributor Author

gballet commented Mar 30, 2025

Note that backtraces report both rust and zig code !

thread '<unnamed>' panicked at src/lib.rs:44:9:
path does not exit
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

thread '<unnamed>' panicked at library/core/src/panicking.rs:218:5:
panic in a function that cannot unwind
stack backtrace:
   0:          0x1642962 - std::backtrace_rs::backtrace::libunwind::trace::hd55534e481fa4cba
                               at /rustc/43a2e9d2c72db101f5fedac8b3acb78981b06bf2/library/std/src/../../backtrace/src/backtrace/libunwind.rs:117:9
   1:          0x1642962 - std::backtrace_rs::backtrace::trace_unsynchronized::he5d0dbcdee39ac25
                               at /rustc/43a2e9d2c72db101f5fedac8b3acb78981b06bf2/library/std/src/../../backtrace/src/backtrace/mod.rs:66:14
   2:          0x1642962 - std::sys::backtrace::_print_fmt::hd8b10669df281c74
                               at /rustc/43a2e9d2c72db101f5fedac8b3acb78981b06bf2/library/std/src/sys/backtrace.rs:66:9
   3:          0x1642962 - <std::sys::backtrace::BacktraceLock::print::DisplayBacktrace as core::fmt::Display>::fmt::h2b56cf5291b3667a
                               at /rustc/43a2e9d2c72db101f5fedac8b3acb78981b06bf2/library/std/src/sys/backtrace.rs:39:26
   4:          0x160f873 - core::fmt::rt::Argument::fmt::h7d04f9725982d86a
                               at /rustc/43a2e9d2c72db101f5fedac8b3acb78981b06bf2/library/core/src/fmt/rt.rs:185:76
   5:          0x160f873 - core::fmt::write::h750c4757982490e3
                               at /rustc/43a2e9d2c72db101f5fedac8b3acb78981b06bf2/library/core/src/fmt/mod.rs:1449:21
   6:          0x163ef83 - std::io::Write::write_fmt::h4aaf30de29f6dc2b
                               at /rustc/43a2e9d2c72db101f5fedac8b3acb78981b06bf2/library/std/src/io/mod.rs:1890:15
   7:          0x16427b2 - std::sys::backtrace::BacktraceLock::print::h1b35dc075e3a8fee
                               at /rustc/43a2e9d2c72db101f5fedac8b3acb78981b06bf2/library/std/src/sys/backtrace.rs:42:9
   8:          0x1643a12 - std::panicking::default_hook::{{closure}}::hb12e4b8e4fe4a1fd
                               at /rustc/43a2e9d2c72db101f5fedac8b3acb78981b06bf2/library/std/src/panicking.rs:298:22
   9:          0x1643815 - std::panicking::default_hook::h4204d9ba1ec820cc
                               at /rustc/43a2e9d2c72db101f5fedac8b3acb78981b06bf2/library/std/src/panicking.rs:325:9
  10:          0x1644432 - std::panicking::rust_panic_with_hook::h64733910b09a62a0
                               at /rustc/43a2e9d2c72db101f5fedac8b3acb78981b06bf2/library/std/src/panicking.rs:831:13
  11:          0x1644186 - std::panicking::begin_panic_handler::{{closure}}::h9e662ad4e13fe8d5
                               at /rustc/43a2e9d2c72db101f5fedac8b3acb78981b06bf2/library/std/src/panicking.rs:697:13
  12:          0x1642e59 - std::sys::backtrace::__rust_end_short_backtrace::h18e5771372e27504
                               at /rustc/43a2e9d2c72db101f5fedac8b3acb78981b06bf2/library/std/src/sys/backtrace.rs:168:18
  13:          0x1643e4d - rust_begin_unwind
                               at /rustc/43a2e9d2c72db101f5fedac8b3acb78981b06bf2/library/std/src/panicking.rs:695:5
  14:          0x160d3cd - core::panicking::panic_nounwind_fmt::runtime::h0ecba1e502c8bbcc
                               at /rustc/43a2e9d2c72db101f5fedac8b3acb78981b06bf2/library/core/src/panicking.rs:117:22
  15:          0x160d3cd - core::panicking::panic_nounwind_fmt::hb9be14d6da3e6da4
                               at /rustc/43a2e9d2c72db101f5fedac8b3acb78981b06bf2/library/core/src/intrinsics/mod.rs:3240:9
  16:          0x160d462 - core::panicking::panic_nounwind::h411e261a8a67f825
                               at /rustc/43a2e9d2c72db101f5fedac8b3acb78981b06bf2/library/core/src/panicking.rs:218:5
  17:          0x160d586 - core::panicking::panic_cannot_unwind::he03ec2bd054fb53c
                               at /rustc/43a2e9d2c72db101f5fedac8b3acb78981b06bf2/library/core/src/panicking.rs:323:5
  18:          0x1608d6b - powdr_prove
  19:          0x15d4bdf - manager.execute_transition
                               at /home/gballet/src/zeam/pkgs/state-proving-manager/src/manager.zig:35:16
  20:          0x15d4bdf - main.main
                               at /home/gballet/src/zeam/pkgs/cli/src/main.zig:58:59
  21:          0x15d8ab5 - start.callMain
                               at /snap/zig/13822/lib/std/start.zig:656:37
  22:          0x15d8ab5 - start.callMainWithArgs
                               at /snap/zig/13822/lib/std/start.zig:616:20
  23:          0x15d8ab5 - start.main
                               at /snap/zig/13822/lib/std/start.zig:631:28
  24:     0x72058a22a1ca - __libc_start_call_main
                               at ./csu/../sysdeps/nptl/libc_start_call_main.h:58:16
  25:     0x72058a22a28b - __libc_start_main_impl
                               at ./csu/../csu/libc-start.c:360:3
  26:          0x15d06f5 - _start
thread caused non-unwinding panic. aborting.

@gballet gballet requested a review from Copilot March 31, 2025 06:53
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR implements an end-to-end prover that creates the integration layer between powdr and zeam, allowing block data to be passed as private inputs (required for #3).

  • Corrects a typo in the zeam documentation.
  • Introduces a new FFI function (powdr_prove) to initialize and run the powdr session.
  • Adds the Cargo.toml configuration for building the host as a static library.

Reviewed Changes

Copilot reviewed 5 out of 11 changed files in this pull request and generated 1 comment.

File Description
resources/zeam.md Corrected spelling of "latest_block_header"
pkgs/state-transition-runtime/src/powdr/host/src/lib.rs Added FFI function powdr_prove for session initialization and proving
pkgs/state-transition-runtime/src/powdr/host/Cargo.toml Added host configuration for building the static library
Files not reviewed (6)
  • build.zig: Language not supported
  • pkgs/cli/src/main.zig: Language not supported
  • pkgs/state-proving-manager/src/manager.zig: Language not supported
  • pkgs/state-transition/src/transition.zig: Language not supported
  • pkgs/state-transition/src/utils.zig: Language not supported
  • pkgs/types/src/lib.zig: Language not supported
Comments suppressed due to low confidence (1)

resources/zeam.md:31

  • The typo 'lastest' has been corrected to 'latest' to reflect the correct property name. Verify that all references now match the intended naming.
    - only block's parent_root matched against state's `latest_block_header` hash tree root

Comment on lines 20 to 21
if !serialized.is_null() {
std::slice::from_raw_parts(output, len)
Copy link
Preview

Copilot AI Mar 31, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The check for the output slice incorrectly verifies 'serialized' rather than 'output', and uses 'len' instead of 'output_len'. Consider updating the condition to 'if !output.is_null()' and using 'output_len' when creating the slice.

Suggested change
if !serialized.is_null() {
std::slice::from_raw_parts(output, len)
if !output.is_null() {
std::slice::from_raw_parts(output, output_len)

Copilot is powered by AI, so mistakes are possible. Review output carefully before use.

@gballet gballet force-pushed the create-powdr-rust-bindings branch 2 times, most recently from de25aac to 082e10c Compare April 1, 2025 20:29
@gballet gballet requested a review from Copilot April 1, 2025 20:30
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR introduces an end-to-end prover that bridges powdr and zeam by passing block data as private inputs, addressing part of issue #3.

  • Corrected a typo in the zeam documentation regarding the state header name.
  • Added a new FFI function (powdr_prove) in Rust for invoking the prover with byte slices sourced from external pointers.
  • Introduced a dedicated Cargo.toml for the zeam-prover-host-powdr package and updated the README build instructions accordingly.

Reviewed Changes

Copilot reviewed 6 out of 12 changed files in this pull request and generated 1 comment.

File Description
resources/zeam.md Fixed typo in the protocol description regarding state header
pkgs/state-transition-runtime/src/powdr/host/src/lib.rs Introduced the powdr_prove function with pointer handling
pkgs/state-transition-runtime/src/powdr/host/Cargo.toml Added package configuration and dependency details
README.md Updated build instructions and added a demo run section
Files not reviewed (6)
  • build.zig: Language not supported
  • pkgs/cli/src/main.zig: Language not supported
  • pkgs/state-proving-manager/src/manager.zig: Language not supported
  • pkgs/state-transition/src/transition.zig: Language not supported
  • pkgs/state-transition/src/utils.zig: Language not supported
  • pkgs/types/src/lib.zig: Language not supported

@gballet
Copy link
Contributor Author

gballet commented Apr 1, 2025

Blocked on powdr-labs/powdr#2622 and powdr-labs/powdr#2620 for merging, but I can keep working on it in the meantime.

@gballet gballet force-pushed the create-powdr-rust-bindings branch from 082e10c to 0be6f69 Compare April 3, 2025 09:17
@gballet
Copy link
Contributor Author

gballet commented Apr 3, 2025

image

@gballet gballet force-pushed the create-powdr-rust-bindings branch from 0be6f69 to f8f9ee4 Compare April 3, 2025 09:44
@gballet gballet force-pushed the create-powdr-rust-bindings branch from f8f9ee4 to e4419e2 Compare April 4, 2025 19:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant