Rust Evidence Generation Library (REGL) — collects attestation evidence from TEE platforms.
| Attester | Struct | Backend | Description |
|---|---|---|---|
cca-tsm |
CcaTsmAttester |
Linux TSM (/sys/kernel/config/tsm) |
Talks directly to the kernel TSM interface on Arm CCA hardware. Requires root or write access to configfs-tsm. |
cca-ratsd |
CcaRatsdAttester |
RATSD daemon | Posts a challenge to a RATSD daemon, then parses the CMW envelope to extract the Arm CCA attestation token. "CCA-specific" means it knows how to find and decode CCA evidence inside the CMW — it looks for items whose content type contains configfs-tsm and whose provider is arm_cca_guest. |
cca-sim |
CcaSimulatedAttester |
Embedded blob | Returns a pre-built CCA token embedded at compile time. Useful for testing and development without hardware or a running RATSD. |
ratsd |
RatsdAttester |
RATSD daemon (generic) | Posts a challenge to a RATSD daemon and returns the raw JSON response as-is. No TEE-specific parsing — use this if you want the CMW envelope or other RATSD-level data directly. |
use regl::attesters::{cca, ratsd, Attester};
use url::Url;
// Generic RATSD — explicit URL required
let url = Url::parse("http://localhost:8895").unwrap();
let attester = ratsd::RatsdAttester::with_url(url);
let response: Vec<u8> = attester.get_evidence(&challenge).unwrap();
// CCA-specific RATSD — parses CMW envelope, returns CCA token bytes
let url = Url::parse("http://localhost:8895").unwrap();
let attester = cca::CcaRatsdAttester::with_url(url);
let evidence = attester.get_evidence(&challenge).unwrap();
// TSM-backed attester (requires Linux CCA TSM hardware and root/sudo)
let attester = cca::CcaTsmAttester::default();
let evidence = attester.get_evidence(&challenge).unwrap();Note: The library itself does not read environment variables. The
RATSD_URLenv var is resolved only in the example binaries (examples/attester.rs) for convenience — they fall back tohttp://localhost:8895if the variable is not set. Production code should pass an explicitUrlviawith_url().
Note: If a system HTTP proxy is configured, set
NO_PROXY=localhostto prevent requests to the local RATSD daemon from being routed through the proxy.
A running RATSD daemon is required.
-
Clone and build RATSD:
git clone https://github.com/veraison/ratsd.git cd ratsd make build -
Start RATSD (requires root for configfs-tsm access):
sudo ./ratsd --config config.yaml
RATSD listens on
http://localhost:8895by default.
Note: RATSD must be running on a machine with TSM hardware support (Arm CCA-capable platform with
/sys/kernel/config/tsm/report). The RATSD daemon dispatches evidence requests to its TSM plugin, which talks to the Linux kernel TSM interface. Without CCA hardware, the TSM plugin will fail and REGL will receive an HTTP 500 error from RATSD.
The cca-tsm attester talks directly to /sys/kernel/config/tsm/report and
requires root privileges (or write access granted via udev rules).
# CCA evidence via RATSD (requires a running RATSD daemon)
NO_PROXY=localhost RATSD_URL=http://localhost:8895 \
cargo run --example attester -- --attester cca-ratsd --out evidence.cbor
# CCA evidence via RATSD and pretty-print the decoded token
NO_PROXY=localhost RATSD_URL=http://localhost:8895 \
cargo run --example attester -- --attester cca-ratsd --out evidence.cbor --print
# CCA simulated evidence (no hardware needed)
cargo run --example attester -- --attester cca-sim --out evidence.cbor
# CCA evidence via TSM (requires CCA hardware and root)
sudo cargo run --example tsm -- --out tsm-evidence.cborSet RUST_LOG=info to see progress logs from the attester.
regl::attesters::cca::utils provides CCA evidence decoding and pretty-printing:
decode::decode_cca_token()— decode raw CBOR evidence to typed Rust structsprint::pretty_print_token()— decode and format the evidence as JSONtypes— serde-enabled CCA evidence structs with human-readable field names
Apache-2.0