520d7342dd
ci / rust (push) Has been cancelled
m3-host is now a real host, not a one-shot demo. Everything validated live on this box (two back-to-back sessions, pinned + TOFU, ~200 audio pkts/s, p50 0.84 ms at 720p60). lumen-core: - quic.rs: QUIC-datagram side planes demuxed by first byte — Opus audio 0xC9 ([magic][u32 seq][u64 pts_ns][opus], host→client) and rumble 0xCA ([magic][pad][low][high]). - Trust: endpoint::server_with_identity (persistent PEM identity) and endpoint::client_pinned — SHA-256 cert-fingerprint pinning with TOFU (observed fingerprint reported back for persisting). The verifier checks the TLS 1.3 CertificateVerify signature for real (an MITM replaying the host's public cert without its key is rejected; cert pinning alone would not prove key possession). - client.rs: NativeClient gains pin + host_fingerprint, audio/rumble receivers (next_audio / next_rumble); pull methods take &self so the C ABI's per-plane threads never alias a &mut (per-plane mutexed borrow slots in abi.rs). - abi.rs: lumen_connect(pin_sha256, observed_sha256_out) + lumen_connection_next_audio / next_rumble. input.rs: documented gamepad wire contract (GameStream buttonFlags bits, XInput axis conventions, +y = up) — exported as LUMEN_BTN_*/LUMEN_AXIS_* (bare BTN_* collides with <linux/input-event-codes.h> at different values). lumen-host (m3): - Persistent accept loop: sessions back to back on one endpoint (--max-sessions, 0 = forever); per-session failures log and the loop keeps serving; 10 s handshake deadline so a silent client can't wedge the sequential accept queue; teardown on every exit path (stop flag → conn.close → join audio+input threads). - Audio plane: desktop PipeWire capture → Opus 48 kHz stereo 5 ms CBR → datagrams; ONE capturer reused across sessions via an AudioCapSlot (PipeWire streams have no cheap teardown — per-session opens would leak a thread + core connection + live node each). - Gamepad routing: incremental GamepadButton/GamepadAxis datagrams accumulate into per-pad state feeding the uinput xpad manager; force feedback returns as rumble datagrams, with current state re-sent every 500 ms (idempotent-state healing for the lossy channel). QUIC endpoint serves the persistent ~/.config/lumen identity and logs the pinnable fingerprint. lumen-client-rs: --pin (malformed values abort — never silently downgrade to TOFU), TOFU fingerprint logging, audio/rumble datagram counters, gamepad events in --input-test. clients/apple: scaffold synced — pinSHA256/hostFingerprint (wrong-size pin throws, fail-closed), nextAudio/nextRumble, gamepad event constructors; README handoff updated (persistent listener, audio decode notes, trust UX). Adversarially reviewed (5-dimension multi-agent pass over the diff, 2-skeptic verification): fixed the MITM signature-check gap, a Y-axis contract inversion, header macro collisions, ABI aliasing UB, the PipeWire per-session leak, the missing handshake deadline, fail-open pin parsing, and teardown-on-error paths. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
6.5 KiB
6.5 KiB
lumen Apple client (SwiftUI) — handoff
The native macOS/iOS client for lumen/1 (the post-GameStream protocol). All
networking/protocol work — QUIC control plane, UDP data plane, GF(2¹⁶) FEC, AES-GCM,
input datagrams — lives in the shared Rust core and is done and tested; this package
is the Swift shell: decode (VideoToolbox), present (SwiftUI), input capture.
What exists (built + tested on the Linux host)
- The connector:
lumen_core::client::NativeClient(Rust) exposed over the C ABI aslumen_connect/lumen_connection_next_au/lumen_connection_next_audio/lumen_connection_next_rumble/lumen_connection_send_input/lumen_connection_mode/lumen_connection_close(seeinclude/lumen_core.h, guarded byLUMEN_FEATURE_QUIC). End-to-end tested through the C ABI against an in-process host (crates/lumen-host/src/m3.rs::tests::c_abi_connection_roundtrip— three sequential sessions: TOFU, pinned reconnect, wrong-pin rejection). - The host to test against:
lumen-host m3-host --source virtual --seconds 60on the Linux box — a persistent listener (sessions back to back, reconnect at will during development;--max-sessions Nto bound it). It creates a native virtual output at whatever mode the client requests and streams HEVC + desktop Opus audio;LUMEN_COMPOSITOR=gamescope LUMEN_GAMESCOPE_APP=vkcubefor moving content. - This package (SCAFFOLD — written on Linux, never compiled in Xcode):
LumenConnection.swift— Swift wrapper over the C ABI (AUs/audio copied intoData; certificate pinning + TOFU fingerprint viapinSHA256:/hostFingerprint).AnnexB.swift— in-band VPS/SPS/PPS →CMVideoFormatDescription; Annex-B → AVCCCMSampleBufferwithDisplayImmediatelyset.StreamView.swift— SwiftUINSViewRepresentableoverAVSampleBufferDisplayLayer(stage-1 presenter: the layer hardware-decodes compressed HEVC itself).InputCapture.swift—GCMouseraw deltas +GCKeyboardHID→VK mapping →lumen_connection_send_input.
Build steps (on the Mac)
rustup target add aarch64-apple-darwin x86_64-apple-darwin
bash scripts/build-xcframework.sh # → clients/apple/LumenCore.xcframework
open clients/apple/Package.swift # or add the package to an Xcode app project
Minimal app around it:
@main struct LumenApp: App {
var body: some Scene { WindowGroup { ContentView() } }
}
struct ContentView: View {
@State private var conn: LumenConnection?
var body: some View {
if let conn {
StreamView(connection: conn)
.onAppear { InputCapture(connection: conn).start() }
} else {
Button("Connect") {
conn = try? LumenConnection(
host: "192.168.1.70", width: 2560, height: 1440, refreshHz: 120)
}
}
}
}
Handoff — what the next agent needs to know
- Expect small compile fixes. Every Swift file is flagged SCAFFOLD: API-checked from
documentation, never run through Xcode. Likely friction: the imported C enum spellings
(
LUMEN_STATUS_OKetc. — cbindgen emitsQualifiedScreamingSnakeCase),LumenFrame()zero-init,_padtuple shape onLumenInputEvent. - ABI contract (matches
lumen_core.hdocs):next_au's pointer is valid only until the next call on that handle (we copy toDataimmediately); one pump thread per connection, plus optionally one separate audio thread fornext_audio(independent borrow slots);send_inputis enqueue-only and thread-safe alongside both;closejoins the Rust threads — never call it with anext_au/next_audiocall in flight. - Decode flow: the host opens every stream with an IDR carrying VPS/SPS/PPS in-band,
and recovery keyframes re-send them — so "wait for the first format description, refresh
it on every IDR" (already what
StreamViewdoes) is sufficient; there is no out-of-band extradata, ever. - First-light test: Linux box runs
PATH=/tmp/gamescope-src/build/src:$PATH LUMEN_COMPOSITOR=gamescope \ LUMEN_GAMESCOPE_APP=vkcube LUMEN_ZEROCOPY=1 cargo run -rp lumen-host -- m3-host --source virtual --seconds 120; Mac connects with the app. Success = the spinning vkcube on glass. Then mouse/keys should appear inside the gamescope session (verify withLUMEN_GAMESCOPE_APP=xevand the box-side log/tmp/lumen-gamescope.log). - Stage 2 (after first light): replace
AVSampleBufferDisplayLayerwith explicitVTDecompressionSession+CAMetalLayerfor frame-pacing control (ProMotion/120 Hz), and add glass-to-glass measurement (tools/latency-probeis the scaffold; the host already stampspts_nswith its capture wall clock — across machines you'll need a clock-offset estimate from the QUIC RTT, or the probe's visual timestamp loop). - Audio:
nextAudio()yields raw Opus packets (48 kHz stereo, one 5 ms frame each, sequence-numbered). Decode with libopus orAVAudioConverter/kAudioFormatOpusinto anAVAudioEnginesource node; conceal gaps (drop/dup) rather than blocking — the Rust side buffers 320 ms and drops the newest packet when the puller lags. Wall-clockptsNsshares the host clock with video AUs for A/V sync. - Gamepads:
GCController→.gamepadButton(...)/.gamepadAxis(...)events (wire contract documented on the constructors; the host accumulates them into a virtual Xbox 360 pad). PollnextRumble()and feedGCDeviceHapticsfor force feedback. - Trust: connect once with
pinSHA256: nil(TOFU), persisthostFingerprintkeyed by host, pass it on every later connect — a mismatch throws.connectFailed. The host logs its fingerprint at startup ("clients pin this fingerprint") for out-of-band verification UX; a PIN-style pairing ceremony is a later lumen-core task. - iOS: same package (
BUILD_IOS=1for the xcframework slice);StreamViewneeds theUIViewRepresentabletwin and touch→input mapping.
Known limitations of the current host (relevant to client UX)
- One session at a time (the listener is persistent, but a second concurrent client waits in the accept queue until the current session ends — the virtual output and encoder are single-tenant).
- Mid-stream renegotiation (resolution change without reconnect) is designed-for but not implemented (the Welcome is one-shot today).
- Host-side gamepad injection needs
/dev/uinputaccess on the box (udev rule fromdocs/linux-setup.md).