ci / web (push) Successful in 1m5s
windows-drivers / probe-and-proto (push) Successful in 1m5s
deb / build-publish-host (push) Failing after 12s
apple / swift (push) Successful in 1m55s
ci / docs-site (push) Successful in 2m56s
docker / builders (--build-arg FEDORA_VERSION=44, ci/fedora-rpm.Dockerfile, punktfunk-fedora44-rpm, -f44) (push) Successful in 6s
docker / builders (ci/android-ci.Dockerfile, punktfunk-android-ci) (push) Successful in 6s
docker / builders (ci/arch-ci.Dockerfile, punktfunk-arch-ci) (push) Successful in 7s
windows-drivers / driver-build (push) Successful in 2m10s
ci / rust-arm64 (push) Successful in 3m22s
docker / builders (ci/fedora-rpm.Dockerfile, punktfunk-fedora-rpm) (push) Successful in 7s
docker / builders (ci/rust-ci-noble.Dockerfile, punktfunk-rust-ci-noble) (push) Successful in 8s
docker / builders (ci/rust-ci.Dockerfile, punktfunk-rust-ci) (push) Successful in 6s
docker / apps (., web/Dockerfile, punktfunk-web) (push) Successful in 11s
docker / apps (docs-site, docs-site/Dockerfile, punktfunk-docs) (push) Successful in 16s
deb / build-publish-client-arm64 (push) Successful in 2m44s
android / android (push) Canceled after 4m33s
apple / screenshots (push) Canceled after 0s
arch / build-publish (push) Canceled after 4m35s
ci / rust (push) Canceled after 4m40s
deb / build-publish (push) Canceled after 4m40s
docker / builders-arm64cross (push) Canceled after 2s
docker / deploy-docs (push) Canceled after 0s
rpm / build-publish (43, bazzite, punktfunk-fedora-rpm) (push) Canceled after 42s
rpm / build-publish (44, fedora-44, punktfunk-fedora44-rpm) (push) Canceled after 39s
windows-host / package (push) Canceled after 1m21s
windows-host / canary-manifest (push) Canceled after 0s
windows-host / winget-source (push) Canceled after 0s
flatpak / build-publish (push) Canceled after 3m45s
release / apple (push) Canceled after 5m40s
windows-msix / package (arm64, C:\Users\Public\ffmpeg-arm64, --no-default-features, aarch64-pc-windows-msvc, C:\t-a64) (push) Canceled after 2m41s
windows-msix / package (x64, C:\Users\Public\ffmpeg, , x86_64-pc-windows-msvc, C:\t) (push) Canceled after 0s
windows / build (aarch64-pc-windows-msvc) (push) Canceled after 0s
windows / build (x86_64-pc-windows-msvc) (push) Canceled after 0s
One signing pass over the 2026-07-30 audit findings: - Timing math unified (D4): monitor-description and target modes now come from ONE IddSampleDriver-exact builder differing only in vSyncFreqDivider; the virtual-display-rs legacy formula (width-less pixel rate, deliberately fractional vSync) is gone. - EDID (D5): the preferred-timing DTD is built from the SESSION's mode when it fits the encoding (pf-driver-proto's tested builder; 1080p60 stays the fallback); the range-limits descriptor covers everything the driver can advertise (max clock 150 MHz → 2550 MHz, max-H +255 — the old limits were violated by the driver's own 1080p120 default); product code 0 → 1. Deliberately still no HDMI VSDB — documented in the module doc. - INF (D6): UmdfFileObjectPolicy=AllowNullAndUnknownFileObjects added (the sibling drivers all carry it); the dead DeviceGroupId (inert under ProcessSharingDisabled) dropped; the IddCx0102-vs- IddMinimumVersionRequired=10 pairing documented as deliberate — 0102 is the extension's registered identity, not a version request. - Watchdog lifecycle (D7): device cleanup now stops the host-liveness thread (it ran forever and its reap raced device teardown over the same monitor list). - Drain path off the mutex (D8): the per-frame has/take_frame_channel checks (≥60 locks/s per worker on the mutex the whole control plane, the mode DDIs and the watchdog contend) are gated by a delivery generation counter — the steady state takes no lock. - Adapter cache (D9): last-write-wins slot instead of a OnceLock, and a D0 re-entry from a REAL low-power state clears + re-inits — the stale pre-power-cycle handle used to wedge every later IOCTL_ADD. - Realtime GPU priority (D10): IddCxSetRealtimeGPUPriority is now A/B-able without a rebuild (PFVD_NO_RT_GPU, machine env) — no canonical IDD driver raises it, and it preempts the game's and DWM's queues at a level apps can't reach. - Logging (D2): the logger rides file_log_enabled() as a whole — a RELEASE driver without the opt-in no longer OutputDebugStringA's (+2 allocs) per logged event. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
178 lines
9.7 KiB
Rust
178 lines
9.7 KiB
Rust
//! IddCx adapter bring-up. Adapter creation is DEFERRED to the first `EvtDeviceD0Entry` (the adapter
|
|
//! object is only valid after D0), and is ASYNC: `init_adapter` builds the caps and calls
|
|
//! `IddCxAdapterInitAsync`; the adapter object arrives later via `EvtIddCxAdapterInitFinished`
|
|
//! (`adapter_init_finished` → [`set_adapter`]). FP16 caps + the obligated `*2`/gamma/hdr callbacks (in
|
|
//! `callbacks.rs`) together enable HDR. STEP 3.
|
|
|
|
use std::sync::Mutex;
|
|
|
|
use wdk_sys::{NTSTATUS, WDFDEVICE, iddcx};
|
|
|
|
use crate::STATUS_SUCCESS;
|
|
|
|
/// A static, null-terminated UTF-16 string pointer (ASCII only) — wdk-sys has no `windows` `w!`.
|
|
macro_rules! wstr {
|
|
($s:literal) => {{
|
|
const N: usize = $s.len() + 1;
|
|
// `static` (NOT `const`) — a const's `.as_ptr()` points to a temporary dropped at the end of the
|
|
// statement (a dangling pointer); IddCx then reads garbage for the endpoint name strings and
|
|
// IddCxAdapterInitAsync fails INVALID_PARAMETER. A `static` has a stable 'static address.
|
|
static W: [u16; N] = {
|
|
let b = $s.as_bytes();
|
|
let mut w = [0u16; N];
|
|
let mut i = 0;
|
|
while i < b.len() {
|
|
w[i] = b[i] as u16;
|
|
i += 1;
|
|
}
|
|
w
|
|
};
|
|
W.as_ptr()
|
|
}};
|
|
}
|
|
|
|
/// The IddCx adapter handle, stashed for later DDIs (e.g. `SET_RENDER_ADAPTER`, STEP 4).
|
|
struct SendAdapter(iddcx::IDDCX_ADAPTER);
|
|
// SAFETY: an opaque IddCx handle, used only as an argument to IddCx DDIs (themselves the synchronisation
|
|
// point) — never dereferenced in Rust. Storing it across threads in a OnceLock is sound.
|
|
unsafe impl Send for SendAdapter {}
|
|
// SAFETY: as above — the handle is only ever passed by value to IddCx DDIs, never dereferenced, so
|
|
// shared `&SendAdapter` access across threads is sound.
|
|
unsafe impl Sync for SendAdapter {}
|
|
|
|
// A slot, NOT a OnceLock: `set_adapter` must be last-write-wins so a D0-resume re-init's fresh
|
|
// handle REPLACES the pre-power-cycle one (a OnceLock's second `set` was a silent no-op, leaving
|
|
// every later `IddCxMonitorCreate` pointed at a stale adapter). Poison-recovering lock idiom as
|
|
// in `monitor.rs` (panic = abort here, so poisoning is unreachable anyway).
|
|
static ADAPTER: Mutex<Option<SendAdapter>> = Mutex::new(None);
|
|
|
|
/// A WDF context type for the adapter object (matches the upstream's `init_context_type`); STEP 4 stores
|
|
/// adapter state here. `WDF_OBJECT_CONTEXT_TYPE_INFO` holds raw pointers (so a Sync wrapper to allow a
|
|
/// `static`); `UniqueType` self-references per `WDF_DECLARE_CONTEXT_TYPE`.
|
|
#[repr(transparent)]
|
|
struct CtxTypeInfo(wdk_sys::WDF_OBJECT_CONTEXT_TYPE_INFO);
|
|
// SAFETY: immutable 'static type metadata; the inner raw pointers are 'static and never written.
|
|
unsafe impl Sync for CtxTypeInfo {}
|
|
static ADAPTER_CTX: CtxTypeInfo = CtxTypeInfo(wdk_sys::WDF_OBJECT_CONTEXT_TYPE_INFO {
|
|
Size: core::mem::size_of::<wdk_sys::WDF_OBJECT_CONTEXT_TYPE_INFO>() as u32,
|
|
ContextName: c"PfVdAdapterCtx".as_ptr().cast(),
|
|
ContextSize: core::mem::size_of::<iddcx::IDDCX_ADAPTER>(),
|
|
UniqueType: &ADAPTER_CTX.0,
|
|
EvtDriverGetUniqueContextType: None,
|
|
});
|
|
|
|
/// Build the adapter caps (FP16/HDR-capable) and kick off the async adapter creation. Called from
|
|
/// `EvtDeviceD0Entry`; idempotent across re-entrant D0 transitions.
|
|
pub fn init_adapter(device: WDFDEVICE) -> NTSTATUS {
|
|
if adapter().is_some() {
|
|
return STATUS_SUCCESS;
|
|
}
|
|
dbglog!("[pf-vd] init_adapter");
|
|
|
|
// Firmware/hardware version (telemetry). The oracle points BOTH at one IDDCX_ENDPOINT_VERSION.
|
|
// `version` is a stack local read synchronously by IddCxAdapterInitAsync (same as the oracle). `.Size`
|
|
// is `size_of` throughout — these are the IddCx 1.10 structs and the framework here is 1.10 (= upstream).
|
|
let mut version = pod_init!(iddcx::IDDCX_ENDPOINT_VERSION);
|
|
version.Size = core::mem::size_of::<iddcx::IDDCX_ENDPOINT_VERSION>() as u32;
|
|
version.MajorVer = env!("CARGO_PKG_VERSION_MAJOR").parse().unwrap_or(0);
|
|
version.MinorVer = env!("CARGO_PKG_VERSION_MINOR").parse().unwrap_or(0);
|
|
version.Build = env!("CARGO_PKG_VERSION_PATCH").parse().unwrap_or(0);
|
|
|
|
// Endpoint diagnostics. `pEndPointModelName` must be a non-empty string. GammaSupport MUST be set: a
|
|
// zeroed value is IDDCX_FEATURE_IMPLEMENTATION_UNINITIALIZED (0), which the framework's adapter Validate
|
|
// rejects with INVALID_PARAMETER (ddivalidation.cpp:797) — set it to NONE (1) like upstream. THIS was
|
|
// the on-glass adapter-init blocker.
|
|
let mut diag = pod_init!(iddcx::IDDCX_ENDPOINT_DIAGNOSTIC_INFO);
|
|
diag.Size = core::mem::size_of::<iddcx::IDDCX_ENDPOINT_DIAGNOSTIC_INFO>() as u32;
|
|
diag.GammaSupport = iddcx::IDDCX_FEATURE_IMPLEMENTATION::IDDCX_FEATURE_IMPLEMENTATION_NONE;
|
|
diag.TransmissionType = iddcx::IDDCX_TRANSMISSION_TYPE::IDDCX_TRANSMISSION_TYPE_WIRED_OTHER;
|
|
diag.pEndPointFriendlyName = wstr!("Punktfunk Virtual Display Adapter");
|
|
diag.pEndPointManufacturerName = wstr!("Punktfunk");
|
|
diag.pEndPointModelName = wstr!("Virtual Display");
|
|
// SAFETY: `version` is a stack local that outlives this `init_adapter` call; IddCxAdapterInitAsync
|
|
// (below) reads through these pointers SYNCHRONOUSLY, before `version` drops — the pointer never escapes.
|
|
diag.pFirmwareVersion = (&raw mut version).cast();
|
|
diag.pHardwareVersion = (&raw mut version).cast();
|
|
|
|
let mut caps = pod_init!(iddcx::IDDCX_ADAPTER_CAPS);
|
|
caps.Size = core::mem::size_of::<iddcx::IDDCX_ADAPTER_CAPS>() as u32;
|
|
// STEP 7 (HDR): declare we can process FP16 (scRGB) desktop surfaces — this is what marks the virtual
|
|
// monitor advanced-color-capable (→ the host sees display_hdr=true → the "Use HDR" toggle appears). The
|
|
// ONLY reason STEP 3 rejected this flag was setting it WITHOUT the obligated *2/HDR DDIs; those are now
|
|
// registered in entry.rs (parse_monitor_description2/monitor_query_modes2/adapter_commit_modes2 +
|
|
// query_target_info/set_default_hdr_metadata/set_gamma_ramp). The proven oracle sets exactly this flag
|
|
// with the INF still at UmdfExtensions=IddCx0102. GammaSupport stays NONE (set above). Enum is bindgen
|
|
// ModuleConsts — the variant is a plain-int const assignable straight to the `Flags` field.
|
|
caps.Flags = iddcx::IDDCX_ADAPTER_FLAGS::IDDCX_ADAPTER_FLAGS_CAN_PROCESS_FP16;
|
|
caps.MaxMonitorsSupported = 16;
|
|
caps.EndPointDiagnostics = diag;
|
|
|
|
// The adapter WDF object's attributes: Size + Synchronization/Execution = InheritFromParent (NOT zeroed,
|
|
// since zero = *Invalid*) + the adapter context type (STEP 4 stores adapter state here).
|
|
let mut attr = pod_init!(wdk_sys::WDF_OBJECT_ATTRIBUTES);
|
|
attr.Size = core::mem::size_of::<wdk_sys::WDF_OBJECT_ATTRIBUTES>() as u32;
|
|
attr.ExecutionLevel = wdk_sys::_WDF_EXECUTION_LEVEL::WdfExecutionLevelInheritFromParent;
|
|
attr.SynchronizationScope =
|
|
wdk_sys::_WDF_SYNCHRONIZATION_SCOPE::WdfSynchronizationScopeInheritFromParent;
|
|
attr.ContextTypeInfo = &ADAPTER_CTX.0;
|
|
let init = iddcx::IDARG_IN_ADAPTER_INIT {
|
|
WdfDevice: device,
|
|
pCaps: &raw mut caps,
|
|
ObjectAttributes: &raw mut attr,
|
|
};
|
|
let mut out = pod_init!(iddcx::IDARG_OUT_ADAPTER_INIT);
|
|
// SAFETY: `init`/`out` are valid local storage; IddCxAdapterInitAsync reads the caps synchronously
|
|
// (the adapter object itself is delivered later via adapter_init_finished). Called once per device.
|
|
let st = unsafe { wdk_iddcx::IddCxAdapterInitAsync(&init, &mut out) };
|
|
dbglog!("[pf-vd] IddCxAdapterInitAsync -> {st:#x}");
|
|
st
|
|
}
|
|
|
|
/// Stash the adapter object delivered by `EvtIddCxAdapterInitFinished` (STEP 4 reads it).
|
|
/// Last write wins — see [`ADAPTER`].
|
|
pub fn set_adapter(adapter: iddcx::IDDCX_ADAPTER) {
|
|
*ADAPTER
|
|
.lock()
|
|
.unwrap_or_else(std::sync::PoisonError::into_inner) = Some(SendAdapter(adapter));
|
|
}
|
|
|
|
/// Forget the cached adapter. Called on a D0 re-entry from a REAL low-power state
|
|
/// (`callbacks::device_d0_entry`): the handle belongs to the pre-power-cycle incarnation, and
|
|
/// clearing is what lets `init_adapter` run again instead of short-circuiting on it.
|
|
pub fn clear_adapter() {
|
|
*ADAPTER
|
|
.lock()
|
|
.unwrap_or_else(std::sync::PoisonError::into_inner) = None;
|
|
}
|
|
|
|
/// The created adapter handle, once `EvtIddCxAdapterInitFinished` has fired — for `create_monitor`
|
|
/// (`IddCxMonitorCreate`) and SET_RENDER_ADAPTER. `None` before adapter init completes.
|
|
pub(crate) fn adapter() -> Option<iddcx::IDDCX_ADAPTER> {
|
|
ADAPTER
|
|
.lock()
|
|
.unwrap_or_else(std::sync::PoisonError::into_inner)
|
|
.as_ref()
|
|
.map(|a| a.0)
|
|
}
|
|
|
|
/// Honor the host's `IOCTL_SET_RENDER_ADAPTER`: pin the GPU the IddCx swap-chain renders on. On a hybrid
|
|
/// iGPU+dGPU box the OS may otherwise pick the iGPU to render the virtual monitor, so the host's shared
|
|
/// ring textures (created on the NVENC dGPU) can't be opened → `DRV_STATUS_TEX_FAIL` → the host's 20 s
|
|
/// black bail. Pinning the render adapter to the encode GPU fixes that. Unconditional — NOT the
|
|
/// SudoVDA-parity default-off branch (`design/windows-host-rewrite.md` §2.8). Returns
|
|
/// `STATUS_NOT_FOUND` if called before the adapter exists.
|
|
pub fn set_render_adapter(luid_low: u32, luid_high: i32) -> NTSTATUS {
|
|
let Some(adapter) = adapter() else {
|
|
return crate::STATUS_NOT_FOUND;
|
|
};
|
|
let mut in_args = pod_init!(iddcx::IDARG_IN_ADAPTERSETRENDERADAPTER);
|
|
in_args.PreferredRenderAdapter = wdk_sys::LUID {
|
|
LowPart: luid_low,
|
|
HighPart: luid_high,
|
|
};
|
|
dbglog!("[pf-vd] set_render_adapter -> {luid_high:08x}:{luid_low:08x}");
|
|
// SAFETY: `adapter` is the stashed IddCx adapter; `in_args` is valid local storage read synchronously.
|
|
unsafe { wdk_iddcx::IddCxAdapterSetRenderAdapter(adapter, &in_args) };
|
|
STATUS_SUCCESS
|
|
}
|