a913042367
Ground-up low-latency streaming stack per docs/implementation-plan.md. M1 is
complete and tested; Linux host backends are cfg-gated stubs to be filled in on
real hardware (M0/M2).
lumen-core (built + tested on macOS/aarch64 — 21 tests):
- fec: ErasureCoder over GF(2^8) (reed-solomon-erasure, Moonlight-compatible)
and GF(2^16) Leopard-RS (reed-solomon-simd, the >1 Gbps wall-breaker); proptested
- packet: zero-copy #[repr(C)] framing, multi-block, FEC-aware reassembly
- crypto: AES-128-GCM with per-direction nonce salts + sequence-as-AAD
- session: host submit / client poll hot paths + input; loopback & UDP transports
- abi: opaque handles, versioned LumenConfig, panic guards; cbindgen-generated header
- acceptance: Rust loopback+proptest and a C harness that links the staticlib
Scaffold (compiles green on all platforms): lumen-host (vdisplay/capture/encode/
inject/web/pipeline seams under cfg(linux)), lumen-client-rs, tools/{loss-harness,
latency-probe}, Apple/Android client stubs, Gitea CI, docs.
Hardened against a multi-agent adversarial review (13 verified findings fixed,
regression-tested): reassembler memory-DoS bounds + block-consistency validation,
GCM nonce-reuse direction separation, ABI struct_size guard + range checks, FEC
shard-length guards, shard_payload datagram bound, key zeroization + Debug redaction.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
35 lines
1.3 KiB
Bash
Executable File
35 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Build lumen-core's staticlib, then compile + link + run the C ABI harness against it.
|
|
# Proves the core links from C. Works on Linux and macOS (link flags come from rustc).
|
|
set -euo pipefail
|
|
|
|
here="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
ws="$(cd "$here/../../../.." && pwd)" # tests/c -> crates/lumen-core -> crates -> ws
|
|
cd "$ws"
|
|
|
|
profile="${1:-debug}"
|
|
build_flag=""
|
|
[ "$profile" = "release" ] && build_flag="--release"
|
|
|
|
echo ">> building lumen-core staticlib ($profile)"
|
|
cargo build -p lumen-core $build_flag >/dev/null
|
|
|
|
staticlib="$ws/target/$profile/liblumen_core.a"
|
|
header_dir="$ws/include"
|
|
[ -f "$staticlib" ] || { echo "missing $staticlib"; exit 1; }
|
|
[ -f "$header_dir/lumen_core.h" ] || { echo "missing generated header"; exit 1; }
|
|
|
|
# Ask rustc what native libs the staticlib needs to link into a C program.
|
|
native_libs="$(cargo rustc -p lumen-core --lib --crate-type staticlib $build_flag -- \
|
|
--print native-static-libs 2>&1 | sed -n 's/.*native-static-libs: //p' | tail -1)"
|
|
echo ">> native libs: ${native_libs:-<none>}"
|
|
|
|
out="$(mktemp -d)/lumen_harness"
|
|
cc="${CC:-cc}"
|
|
echo ">> compiling + linking harness"
|
|
$cc -std=c11 -Wall -Wextra -O2 -I "$header_dir" \
|
|
"$here/harness.c" "$staticlib" $native_libs -o "$out"
|
|
|
|
echo ">> running"
|
|
"$out"
|