Skip to content

ejrgilbert/whamm

Repository files navigation

The logo for whamm!. Shows a spice jar with the WebAssembly logo, but with the 'h' and 'mm' letters written in between the 'wa' to spell 'whamm'.

whamm!

build book

Debugging Wasm? Put some whamm! on it!

whamm! is a tool for "Wasm Application Monitoring and Manipulation"1, a DSL inspired by the D language.

Getting Started

Take a look at the official whamm! book for how to get started with this language.

Build

Get orca, should be in parent directory at ../orca (see Cargo.toml):

# Inside base directory of this project
cd ..
git clone [email protected]:thesuhas/orca.git
cd orca
git checkout DO_NOT_DELETE/whamm_dependency
cd ../whamm

To run basic build:

cargo build

Test

In order to run the tests, a WebAssembly interpreter must be configured. The supported interpreters are:

  1. the Wizard engine interpreter. https://github.com/titzer/wizard-engine/tree/master
    • Note that the Wizard interpreter does not run on Macs (yet...), so the Wasm reference interpreter will need to be configured in this context.
  2. the Wasm reference interpreter. https://github.com/WebAssembly/spec/tree/main/interpreter

How to build the Wizard GH project to acquire these binaries:

  1. Install OCaml
  2. Download progress and ensure the progress binary is on your PATH
  3. Download and build wizeng
    • After running make -j, the binary spectest.x86-linux should be located at wizard-engine/bin/spectest.x86-linux
  4. Build the Wasm reference interpreter through the Wizard repo, after running the below commands, the binary wasm should be located at wizard-engine/test/wasm-spec/repos/spec/interpreter/wasm
    # Configure OCaml
    opam init
    eval $(opam env)
    opam install dune
    opam install menhir
    
    # Build the wasm ref interpreter
    ./wizard-engine/test/wasm-spec/update.sh
    pushd wizard-engine/test/wasm-spec/repos/spec/interpreter
    make
    popd

The interpreter binaries must be runnable using the following commands (this can be done by placing symbolic links to the respective binaries):

  1. For Wizard: ./output/tests/interpreters/spectest.x86-linux
  2. For Wasm-Ref: ./output/tests/interpreters/wasm

To run tests:

cargo test
cargo test parser # Only run the tests for the `parser` module
cargo test -- --nocapture # With stdout tracing

Run

To run project (there are example Scripts in tests/scripts folder):

cargo run -- instr --app <path_to_app_wasm> --script <path_to_script> <path_for_compiled_output>

To specify log level:

RUST_LOG={ error | warn | info | debug | trace | off } cargo run -- --app <path_to_app_wasm> --script <path_to_script> <path_for_compiled_output>

To visually debug the decision tree used during Wasm bytecode emission:

cargo run -- vis-script --script <path_to_script>

To run a script that uses special var types, at the moment this is map and report variables, do the following:

cd <project to instrument>
# debug mode does not optimize the code when compiling (could be helpful when testing to avoid optimizing away event targets)
cargo build --target wasm32-wasip1
cargo run -- instr --app path/to/app.wasm --script path/to/whamm/script.mm -o path/to/output.wasm

cd wasmtime-runner
# change WASM_MODULE to: path/to/output.wasm
vi src/main.rs
# Should print the report data as the app is executing
cargo run

Available Packages

NOTE: There was discussion for moving the probe mode to the front of the specification (e.g. mode:provider:package:event); however, after thinking through this, I don't think it makes sense until I have a firmer grasp on the types of modes we will have in this language. If there are more than before/after/alt (that are event-specific), then it would be confusing from a language-intuition perspective. This is primarily because reading through the spec implies a movement from higher-to-lower levels of granularity, everything being provided by what proceeds it. If we were to move mode to the front, but then have event-specific options, this property would no longer hold.

Currently available:

  • wasm:bytecode

To be added:

  • thread operation events
  • gc operation events
  • function enter/exit/unwind events
  • memory access (read/write) events
  • table access (read/write) events
  • component operation events
  • BEGIN/END events
  • traps
  • exception throw/rethrow/catch events

Example: wasi:http:send_req:alt wasm:bytecode:call:alt wasm:fn:enter:before

The book

If you are wanting to deploy the book locally, use the following commands:

# Install the mdbook cargo package
cargo install mdbook

# Start the mdbook server and open the URL
cd docs
mdbook serve --open

This can be useful for offline learning OR for debugging documentation while doing updates (any local changes will automatically be updated in the served book pages).

Footnotes

  1. The 'h' is silent.

About

Debugging WebAssembly? Put some Whamm! on it.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •