microVM manager built on Firecracker (Linux) and Apple Virtualization.framework (macOS)
Project description
Husker
An open-source microVM manager built on Firecracker (Linux) and Apple Virtualization.framework (macOS).
- Boot lightweight VMs in milliseconds
- Execute commands, transfer files, open interactive shells
- Stream serial console logs
- Port forwarding with nftables NAT (Linux)
- REST API + CLI
- Cloud-init style userdata scripts
Status
Pre-1.0. The core feature set works and has test coverage, but:
- The HTTP API, CLI flags, config schema, and on-disk state layout may change without a deprecation period.
- The Linux/Firecracker backend is more mature than the macOS/Apple VZ backend.
- It has not been run at scale or under production workloads.
- Security features (token auth, rate limiting, encrypted secrets) exist but have had limited review. Don't expose the daemon to an untrusted network.
Useful for experimentation, local development, and CI. Not recommended for production.
Quick Start
Install
macOS (Homebrew):
brew install rvben/tap/husker
Linux & macOS (installer script):
curl -sSfL https://raw.githubusercontent.com/rvben/husker/main/install.sh | sh
Cross-platform (PyPI):
pip install husker
Pinning a version: curl -sSfL https://raw.githubusercontent.com/rvben/husker/main/install.sh | HUSKER_VERSION=v0.1.2 sh or pip install husker==0.1.2.
First boot
# Fetch the default kernel + rootfs for this host
husker images pull
# Start the daemon
husker daemon &
# Boot a VM
husker run --name hello --cpus 2 --memory 512
# Interact
husker exec hello -- uname -a
husker shell hello
husker cp local.txt hello:/tmp/local.txt
husker logs hello -f
# Clean up
husker destroy hello
On Linux, husker run needs firecracker on PATH. If it's missing, husker prompts to download a pinned release into the data directory. For non-interactive use (CI, scripts), set HUSKER_AUTO_INSTALL_FIRECRACKER=1 to skip the prompt.
husker images pull fetches the latest signed image set from the images-*
GitHub Releases. If no image
release is published yet for this arch, the command will fail — use the
BYO path below in the meantime.
BYO kernel / rootfs
If you want to use your own images, pass --kernel and the rootfs path:
husker run /path/to/rootfs.ext4 --kernel /path/to/vmlinux
Configuration
Copy config.example.toml to one of the discovery paths:
~/.config/husker/config.toml(user)/etc/husker/config.toml(system)
Or pass --config /path/to/config.toml explicitly. See config.example.toml for all available fields.
Platform Support
| Platform | Backend | Networking | Status |
|---|---|---|---|
| Linux x86_64 | Firecracker | TAP + nftables NAT, port forwarding | Usable |
| macOS ARM64 | Apple Virtualization.framework | Shared NAT (VZ-managed) | Experimental |
| Linux x86_64 | QEMU/KVM | TAP + nftables NAT, port forwarding | Experimental |
QEMU/KVM backend (Linux)
Besides Firecracker microVMs, husker can run full QEMU/KVM VMs on Linux. Select it
with vmm = "qemu" in the config file or HUSKER_VMM=qemu. Requires /dev/kvm,
/dev/vhost-vsock (load the vhost_vsock kernel module), and qemu-system-x86_64
on PATH (override with HUSKER_QEMU_BIN).
Current scope is direct-kernel boot (same kernel + rootfs model as the Firecracker backend), with the guest agent reachable over vsock. Booting stock cloud images via UEFI/OVMF is not yet supported.
Guest kernel requirement: the QEMU backend uses the q35 machine, which puts the
root disk, NIC, and vsock device on the PCI bus, so the guest kernel must have
CONFIG_VIRTIO_PCI (and an initramfs if virtio_blk is a module). The default husker
images satisfy this. Firecracker's own kernels are built for virtio-MMIO only and will
panic under QEMU with Cannot open root device "vda". The husker default images and
most distro kernels work as-is.
Alternatives
husker is one of several ways to run microVMs. Rough positioning:
| Tool | Backend | Focus | Notes |
|---|---|---|---|
| husker | Firecracker (Linux) + Apple VZ (macOS) | Single-host VM manager with a REST API and CLI | SQLite-backed state, port forwarding, guest agent over vsock. |
| Ignite | Firecracker | Docker-image-style workflow on Firecracker | Archived by Weaveworks; Linux only. |
| firecracker-containerd | Firecracker | containerd runtime backed by microVMs | Kubernetes-friendly; Linux only. |
| krunvm | libkrun | OCI-image microVMs on macOS | No daemon; ephemeral per-command VMs. |
| Lima | QEMU (+ VZ on macOS) | Full Linux VMs as a dev environment | Heavier than Firecracker; broader guest support. |
Pick husker if you want Firecracker on Linux with a matching Apple VZ path on macOS, driven by a single CLI + daemon.
Architecture
CLI (husker) ──> REST API (husker-api) ──> Core (husker-core)
├── VMM (husker-vmm) Firecracker / Apple VZ
├── State (husker-state) SQLite persistence
├── Net (husker-net) TAP devices, IP allocation
└── Storage (husker-storage) Rootfs cloning
Guest Agent (husker-agent) ←── Proto (husker-agent-proto)
Host-guest communication uses vsock (port 52). Messages are length-prefixed JSON with base64-encoded binary payloads.
Security
- Threat model — STRIDE analysis and residual risks.
- Hardening guide — deployment posture and config recommendations.
- Report vulnerabilities privately via GitHub Security Advisories. See SECURITY.md.
The daemon defaults to loopback-only. Don't bind it on a public interface without a bearer token and a terminating reverse proxy.
Troubleshooting
husker run can't find firecracker (Linux)
On a TTY, husker prompts to download a pinned release. For scripted/CI use, set HUSKER_AUTO_INSTALL_FIRECRACKER=1 to skip the prompt, or install Firecracker yourself from the releases page.
husker run reports kvm_init: permission denied (Linux)
Add your user to the kvm group: sudo usermod -aG kvm $USER and re-login.
husker run fails on macOS with a virtualization entitlement error
The binary needs the com.apple.security.virtualization entitlement. pip, brew, and the installer script all ship a codesigned binary. If you built from source, run make install — it ad-hoc signs via husker.entitlements.
macOS: VM boots but exits immediately
Apple VZ needs an initramfs to mount the rootfs. If you're using custom images, make sure --initrd points at a matching initramfs (see guest/build-initramfs.sh).
husker daemon binds but the CLI can't connect
The CLI defaults to http://127.0.0.1:7777. If the daemon listens elsewhere, pass --api-url http://host:port (and --api-token if auth is enabled).
Rootfs edits don't take effect on macOS
Use make update-rootfs to inject changes via debugfs (works in LXC and macOS). Loop-mounting doesn't work on macOS.
Development
Requires Rust 1.90+ and cargo-nextest.
make build # Debug build
make build-release # Release build (LTO, stripped)
make build-agent # Static musl agent for guest VMs
make test # Full test suite
make test-unit # Unit tests only
make lint # fmt-check + clippy
make check # Type check
make install # Install (auto-detects macOS, signs binary)
Running a Development VM
make run-daemon # Start daemon
make build-agent-aarch64 # Build ARM64 agent (macOS guests)
make update-rootfs # Inject agent into rootfs image
Systemd
A systemd unit file is provided at contrib/husker.service.
Contributing
Issues and pull requests welcome. See CONTRIBUTING.md for the dev workflow and commit conventions.
License
See LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file husker-0.4.5.tar.gz.
File metadata
- Download URL: husker-0.4.5.tar.gz
- Upload date:
- Size: 266.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca8fdf45d70485d916792d6767526200403f4aa714d4db680ba94a4fb6c5f89c
|
|
| MD5 |
8a3c1d44e129e55628af2df1182a5176
|
|
| BLAKE2b-256 |
5725eaa1947846df1212e6193ce96c99899c9938b0f8649b72cf65d297b9c0df
|
File details
Details for the file husker-0.4.5-py3-none-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: husker-0.4.5-py3-none-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 9.0 MB
- Tags: Python 3, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d61f1cf2562f138e84c846edaa22631d66d7e98bf7768f45d438e1b7604acb3
|
|
| MD5 |
138af3a37a9d633450a663042e53eaa6
|
|
| BLAKE2b-256 |
83c39f3316e3db1156b051134a449f630b0283778fd6a11fdc215018a42f4570
|
File details
Details for the file husker-0.4.5-py3-none-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: husker-0.4.5-py3-none-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 8.1 MB
- Tags: Python 3, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c7daf50ce397c76e2bd28fadf29ee108fc8559845d2dab58fd365dc84aff773
|
|
| MD5 |
ae98aa9729b8b580e4edbcdb9088c012
|
|
| BLAKE2b-256 |
99e7b9dac70566578f8e2f5f720f95adab2dfb54cb310c7f5af833cbbd1a879a
|
File details
Details for the file husker-0.4.5-py3-none-macosx_11_0_arm64.whl.
File metadata
- Download URL: husker-0.4.5-py3-none-macosx_11_0_arm64.whl
- Upload date:
- Size: 7.4 MB
- Tags: Python 3, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9b22ffa46b4f1fde779f4061f00fdee12b7e2fa0f7fb0a76b326b514711ad7e
|
|
| MD5 |
b86f18bd11750101c60d5461627a80af
|
|
| BLAKE2b-256 |
302a2873ec2378f9355157ed2e48e8161f028234c00a63aa73b8b11c2a163c6b
|
File details
Details for the file husker-0.4.5-py3-none-macosx_10_12_x86_64.whl.
File metadata
- Download URL: husker-0.4.5-py3-none-macosx_10_12_x86_64.whl
- Upload date:
- Size: 7.8 MB
- Tags: Python 3, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a6f234b3ff14649dee63e8d717fd038c1df8ae2304c8dece5e3a5539411d930
|
|
| MD5 |
0ae205489a003c7fba30f800d24ccbb0
|
|
| BLAKE2b-256 |
657330839f1aa0ad4203b387be9f4438b4c0e9e30af8432bfe4a2c02d4bda67a
|