Skip to content

Latest commit

 

History

422 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hermit

Hermit is a reproducible container for x86-64 Linux programs. It runs an unmodified guest under the Reverie ptrace backend and controls sources of nondeterminism including thread scheduling, time, random data, CPUID results, and selected file metadata.

Hermit is useful for repeatable execution, controlled concurrency testing, record/replay experiments, and diagnosing schedule-sensitive failures.

Warning

Hermit is in maintenance mode. Linux compatibility is substantial but incomplete, especially for uncommon syscalls and complex record/replay workloads. Hermit is not a security boundary, and changing files or external network responses remain inputs to the guest.

Requirements

Hermit currently supports x86-64 Linux. Building and running it requires:

  • Rust nightly through rustup; rust-toolchain.toml selects the repository toolchain automatically.
  • Linux user, PID, and mount namespaces.
  • Parent-child ptrace and seccomp filter support.
  • libunwind and LZMA development packages.
  • User-space performance counters for precise scheduler preemption. Hermit can run without them, but CPU-bound workloads receive fewer preemption points.

On Debian or Ubuntu:

sudo apt-get update
sudo apt-get install -y libunwind-dev liblzma-dev

On Fedora or CentOS:

sudo dnf install -y libunwind-devel xz-devel

Install From Source

Clone the maintained fork and install the CLI into Cargo's binary directory, normally ~/.cargo/bin:

git clone https://github.com/rrnewton/hermit.git
cd hermit
cargo install --path hermit-cli
hermit --version

To build without installing:

cargo build --workspace
./target/debug/hermit --version

Quick Start

Run a command deterministically by placing hermit run -- before it:

hermit run -- /bin/echo hello

The -- separator is recommended so arguments beginning with - are passed to the guest. The command above prints hello and exits with the guest's status.

Hermit's current defaults are strict and deterministic. --strict is retained as an explicit compatibility spelling for those defaults; it does not enable a stronger mode:

hermit run --strict -- /bin/echo hello

Execution Backends

Hermit accepts --backend=ptrace|dbi|kvm as a global option, before the subcommand, since the backend applies to how any subcommand instruments the guest. Omitting the option selects ptrace, preserving the existing behavior:

hermit --backend=ptrace run -- /bin/echo hello

For backwards compatibility, run still accepts --backend after the subcommand (hermit run --backend=ptrace -- /bin/echo hello).

Backend selection fails closed. Hermit never substitutes ptrace after an explicit dbi or kvm request. The DynamoRIO prototype requires a discoverable SDK and does not yet expose a Detcore process launcher. The bare KVM prototype requires read-write /dev/kvm access (commonly through the kvm group or root) and a guest-kernel Linux ABI. Until those adapters are integrated, either returns an availability error rather than running the command without determinization.

A quick determinism check is to run the same virtual random-data read twice:

hermit run -- /bin/sh -c 'od -An -N8 -tx1 /dev/urandom'
hermit run -- /bin/sh -c 'od -An -N8 -tx1 /dev/urandom'

Both invocations should print the same bytes when the command, inputs, and Hermit configuration are unchanged.

Compatibility

Hermit can run substantial multi-process applications, but unsupported syscalls and host-specific CPU behavior remain. One compatibility milestone is booting a minimal x86_64 Linux system under QEMU TCG. The working profile uses QEMU's instruction-counting clock and lets QEMU's host threads run concurrently:

That profile is a boot compatibility demonstration, not a fully deterministic virtual-machine configuration.

Key Workflows

Goal Command Status
Deterministic execution hermit run -- PROGRAM ARGS... Default and recommended mode
Verify two executions hermit run --verify -- PROGRAM Compares output, status, and deterministic logs
Explore schedules hermit run --chaos --sched-seed=N -- PROGRAM Seeded, reproducible schedule variation
Record an execution hermit record start -- PROGRAM ARGS... Experimental
Replay the latest recording hermit replay --autopilot Experimental
Diagnose a concurrency failure hermit analyze --search -- PROGRAM Advanced, may run the guest many times

A minimal record/replay session is:

hermit record start -- /bin/echo recorded
hermit replay --autopilot

Chaos Mode Demonstration

The order_violation guest reads shared state without ensuring that another thread has published it. Build Hermit and the guest, then run the default deterministic schedule twice:

cargo build --release -p hermit --bin hermit
mkdir -p target/chaos-demo
cc -std=c11 -O2 -pthread tests/chaos/order_violation.c \
  -o target/chaos-demo/order-violation

for run in 1 2; do
  target/release/hermit run --preemption-timeout=disabled -- \
    ./target/chaos-demo/order-violation
done

Both runs print Hello world!. Chaos mode explores other deterministic schedules; this bounded search reports the guest status for each seed:

for seed in {0..15}; do
  target/release/hermit run --chaos --sched-heuristic=random \
    --preemption-timeout=disabled --seed="$seed" -- \
    ./target/chaos-demo/order-violation
  printf 'seed=%s status=%s\n' "$seed" "$?"
done

With this Hermit revision and guest, seed 9 prints ERROR! global_str is null at use. and exits 1. Repeating the exact command reproduces the same failure:

target/release/hermit run --chaos --sched-heuristic=random \
  --preemption-timeout=disabled --seed=9 -- \
  ./target/chaos-demo/order-violation

The seed identifies a schedule for a particular Hermit build, guest binary, and configuration. Keep all three fixed when reproducing a failure. This demo disables PMU preemption and relies on thread and syscall scheduling points, so it also works on hosts without accessible performance counters.

Record/replay is less broadly compatible than deterministic run mode. Keep the recording directory, executable, inputs, environment, and Hermit revision unchanged between phases.

Compatibility

The following matrix summarizes unmodified host-binary testing on x86-64 Linux as of 2026-07-21. "Verified" describes the named probe, not every workflow a program supports. Run and record/replay results are intentionally separate.

Some launch probes disabled CPUID virtualization and PMU preemption to match the test host's capabilities; the linked report records the exact flags.

Program or workload Deterministic run Record/replay Scope
/bin/echo Verified Verified Output and exit status match
ls, cat, grep, sed, awk, sort, wc Verified Verified for tested file fixtures Inputs must remain stable and visible in the guest
sh -c shell built-ins Verified Verified Child-process pipelines have additional limitations
System Python 3 Verified for print and tested file/JSON work Verified for simple print; limited for complex imports and subprocesses Some recording paths remain incomplete
Node.js 16 Verified for console.log Limited; tested record/replay hangs Basic launch works; this is not full Node compatibility
OpenJDK 8 Verified for java -version Limited; replay hangs Version probe only
curl, wget, Git, GCC Verified for version probes Verified for version probes; functional workflows vary External network and child-process behavior need separate testing
SQLite Verified for an in-memory query Limited; replay diverges Filesystem-event replay remains incomplete

See the full arbitrary binary compatibility matrix for exact commands, host details, functional workloads, and linked issues. Compatibility evolves with syscall coverage, so validate the smallest real workload you depend on rather than relying on a version probe alone.

Performance

Hermit's deterministic ptrace backend should generally be budgeted at roughly 3-6x native wall-clock time. This is a planning range, not a benchmark promise: overhead varies with syscall frequency, thread count, PMU availability, and the amount of scheduling and logging enabled.

--strict uses the normal deterministic defaults and has the same performance profile as a default run. Chaos, verify, record/replay, and analyze modes may perform multiple executions or retain additional events, so their total cost can be higher. Benchmark your actual workload on the deployment CPU and kernel.

Architecture

Hermit has three main layers:

  1. The hermit CLI validates configuration and creates the guest namespaces, mounts, environment, and process tree.
  2. Reverie uses ptrace and seccomp-assisted interception to stop and resume the guest around subscribed syscalls and CPU events.
  3. Detcore applies deterministic policy: it virtualizes selected results, serializes threads, models resources and logical time, and records or replays external inputs.

Linux still performs most operations. Hermit is a determinization layer, not a replacement kernel or sandbox. See the architecture guide for the event lifecycle, state ownership, scheduler, resource model, virtual time, and record/replay design.

Troubleshooting

Hosts and container runtimes commonly block namespaces, ptrace, seccomp, or perf_event_open. Start with:

hermit run --namespace-only -- /bin/true
hermit --log=info run --strace-only -- /bin/true

These are diagnostic modes and do not provide normal determinism. The User Guide covers host setup, PMU access, program visibility, hangs, verification differences, and record/replay. The Error Catalog maps stable error text to causes and fixes.

Contributing

Focused contributions are welcome. Before opening a pull request:

  1. Fork the repository and create a branch from main.

  2. Add a focused regression test for behavior changes.

  3. Keep generated manifests and documentation consistent with the source.

  4. Run formatting and the broadest tests your Linux host supports:

    cargo fmt --all -- --check
    cargo test -p AFFECTED_PACKAGE
    cargo test --workspace
  5. Document host-dependent skips or failures instead of weakening the test.

Not every x86-64 Linux machine can run every Hermit test: PMU counters, CPUID faulting, perf_event_open permissions, and user/mount namespaces each gate different test groups, so results differ across bare metal, VMs, containers, and WSL. Before reporting an environment-related failure, see Testing Environments for the support matrix, the list of hardware-sensitive tests, expected failure signatures, and a copy-paste diagnostic and bug-report procedure.

See CONTRIBUTING.md for the pull-request, CLA, issue, style, and licensing guidelines.

More Documentation

  • User Guide: modes, flags, examples, and troubleshooting.
  • Architecture: Reverie, Detcore, scheduling, time, and record/replay internals.
  • Error Catalog: errors, triggers, and remediations.
  • Examples: small programs demonstrating controlled nondeterminism.
  • License: BSD 3-Clause.

About

Hermit launches linux x86_64 programs in a special, hermetically isolated sandbox to control their execution. Hermit translates normal, nondeterministic behavior, into deterministic, repeatable behavior. This can be used for various applications, including replay-debugging, reproducible artifacts, chaos mode concurrency testing and bug analysis.

Resources

Code of conduct

Contributing

Security policy

Stars

1.4k stars

Watchers

11 watching

Forks

Releases

Packages

Used by

Contributors

Languages