a08df8cc89
Live-validated Mac <-> RTX 4090 at the display's native 5120x1440@240: - Resolution: set_active_mode enumerates the IDD's advertised modes and sets the requested resolution at the best supported refresh (keeps 5120x1440@240; no more silent fallback to the 1080p OS default when an exact mode is briefly unavailable). - Bitrate auto-cap: NVENC init probes and steps the average bitrate down to the GPU's codec-level max so a high client bitrate connects (matches the Linux host; we do not split NVENC sessions). - Mouse cursor: DXGI duplication excludes the HW cursor; capture the pointer shape/position (GetFramePointerShape) and GPU-composite it before NVENC. Color cursors alpha-blend; masked-color (the text I-beam) uses an INV_DEST_COLOR inversion blend so the caret inverts the screen and shows on any background (no black box); monochrome handled too. - Secure desktop (lock / login / UAC): run as SYSTEM in the interactive session, follow the input desktop via SetThreadDesktop, and on the WinSta switch recreate the D3D11 device and re-resolve the virtual output's GDI name from the stable SudoVDA target id (the name changes across the topology rebuild; the old failure hunted the stale \\.\DISPLAYn and dropped). ACCESS_LOST / INVALID_CALL / device-removed are recoverable, and a mid-stream resolution change is followed (capturer + NVENC re-init at the new size). isolate_displays detaches other monitors so Winlogon renders to the virtual output. One real session recovered 1012 desktop switches and completed cleanly. Windows-only backends; Linux/macOS unaffected. Builds clean on x86_64-pc-windows-msvc. Deployment (windowless SYSTEM launch via PsExec + hidden VBScript) documented in docs/windows-host.md. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1177 lines
48 KiB
Rust
1177 lines
48 KiB
Rust
//! DXGI Desktop Duplication capture (Windows) — the analogue of the PipeWire portal capturer.
|
|
//! Creates a D3D11 device on the SudoVDA adapter (by LUID), finds the matching output (by GDI
|
|
//! name), duplicates it, and on each `AcquireNextFrame` copies the desktop image into a CPU-readable
|
|
//! staging texture → tightly-packed BGRA (the GPU-less path that feeds the software encoder). A
|
|
//! future zero-copy path returns `FramePayload::D3d11` for NVENC.
|
|
//!
|
|
//! Validates only with a real GPU + an *activated* SudoVDA monitor (`DuplicateOutput` needs a live
|
|
//! WDDM output). Compiles on the GPU-less VM; the pure helpers are unit-tested there.
|
|
|
|
use super::{CapturedFrame, Capturer, FramePayload, PixelFormat};
|
|
use anyhow::{anyhow, bail, Context, Result};
|
|
use std::ffi::c_void;
|
|
use std::sync::atomic::{AtomicBool, Ordering};
|
|
use std::time::{Duration, Instant, SystemTime, UNIX_EPOCH};
|
|
use windows::core::{s, Interface, PCSTR};
|
|
use windows::Win32::Foundation::{HMODULE, LUID};
|
|
use windows::Win32::Graphics::Direct3D::Fxc::D3DCompile;
|
|
use windows::Win32::Graphics::Direct3D::{
|
|
ID3DBlob, D3D_DRIVER_TYPE_UNKNOWN, D3D_FEATURE_LEVEL_11_0,
|
|
D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP,
|
|
};
|
|
use windows::Win32::Graphics::Direct3D11::{
|
|
D3D11CreateDevice, ID3D11BlendState, ID3D11Buffer, ID3D11Device, ID3D11DeviceContext,
|
|
ID3D11PixelShader, ID3D11RenderTargetView, ID3D11SamplerState, ID3D11ShaderResourceView,
|
|
ID3D11Texture2D, ID3D11VertexShader, D3D11_BIND_CONSTANT_BUFFER, D3D11_BIND_FLAG,
|
|
D3D11_BIND_RENDER_TARGET, D3D11_BIND_SHADER_RESOURCE, D3D11_BLEND_DESC, D3D11_BLEND_INV_DEST_COLOR,
|
|
D3D11_BLEND_INV_SRC_ALPHA, D3D11_BLEND_ONE, D3D11_BLEND_OP_ADD, D3D11_BLEND_SRC_ALPHA,
|
|
D3D11_BUFFER_DESC,
|
|
D3D11_COLOR_WRITE_ENABLE_ALL, D3D11_COMPARISON_NEVER, D3D11_CPU_ACCESS_READ,
|
|
D3D11_CPU_ACCESS_WRITE, D3D11_CREATE_DEVICE_BGRA_SUPPORT, D3D11_FILTER_MIN_MAG_MIP_POINT,
|
|
D3D11_MAPPED_SUBRESOURCE, D3D11_MAP_READ, D3D11_MAP_WRITE_DISCARD, D3D11_RENDER_TARGET_BLEND_DESC,
|
|
D3D11_SAMPLER_DESC, D3D11_SDK_VERSION, D3D11_SUBRESOURCE_DATA, D3D11_TEXTURE2D_DESC,
|
|
D3D11_TEXTURE_ADDRESS_CLAMP, D3D11_USAGE_DEFAULT, D3D11_USAGE_DYNAMIC, D3D11_USAGE_STAGING,
|
|
D3D11_VIEWPORT,
|
|
};
|
|
use windows::Win32::Graphics::Dxgi::Common::{DXGI_FORMAT_B8G8R8A8_UNORM, DXGI_SAMPLE_DESC};
|
|
use windows::Win32::Graphics::Dxgi::{
|
|
CreateDXGIFactory1, IDXGIAdapter1, IDXGIFactory1, IDXGIOutput1, IDXGIOutputDuplication,
|
|
IDXGIResource, DXGI_ERROR_ACCESS_LOST, DXGI_ERROR_DEVICE_REMOVED, DXGI_ERROR_DEVICE_RESET,
|
|
DXGI_ERROR_INVALID_CALL, DXGI_ERROR_WAIT_TIMEOUT, DXGI_OUTDUPL_DESC, DXGI_OUTDUPL_FRAME_INFO,
|
|
DXGI_OUTDUPL_POINTER_SHAPE_INFO, DXGI_OUTDUPL_POINTER_SHAPE_TYPE_COLOR,
|
|
DXGI_OUTDUPL_POINTER_SHAPE_TYPE_MASKED_COLOR,
|
|
};
|
|
use windows::Win32::System::StationsAndDesktops::{
|
|
OpenInputDesktop, SetThreadDesktop, DESKTOP_ACCESS_FLAGS, DESKTOP_CONTROL_FLAGS,
|
|
};
|
|
use windows::Win32::UI::WindowsAndMessaging::SetCursorPos;
|
|
|
|
/// The Windows capture identity carried out of the SudoVDA backend in
|
|
/// [`crate::vdisplay::VirtualOutput`]: which adapter + which GDI output to duplicate.
|
|
#[derive(Clone, Debug)]
|
|
pub struct WinCaptureTarget {
|
|
/// Packed DXGI adapter LUID (`(HighPart << 32) | (LowPart & 0xffff_ffff)`).
|
|
pub adapter_luid: i64,
|
|
/// The output's GDI device name, e.g. `\\.\DISPLAY3`. Can CHANGE across a secure-desktop switch.
|
|
pub gdi_name: String,
|
|
/// Stable SudoVDA target id — re-resolved to the current GDI name on every recovery.
|
|
pub target_id: u32,
|
|
}
|
|
|
|
/// A GPU-resident captured texture (future NVENC-D3D11 zero-copy path).
|
|
pub struct D3d11Frame {
|
|
pub texture: ID3D11Texture2D,
|
|
pub device: ID3D11Device,
|
|
}
|
|
// COM pointers, used only from the single owning thread.
|
|
unsafe impl Send for D3d11Frame {}
|
|
|
|
pub fn pack_luid(luid: LUID) -> i64 {
|
|
((luid.HighPart as i64) << 32) | (luid.LowPart as i64 & 0xffff_ffff)
|
|
}
|
|
|
|
/// Does a fixed-size UTF-16 GDI device name (NUL-padded, e.g. `DXGI_OUTPUT_DESC::DeviceName`)
|
|
/// equal `target`?
|
|
fn gdi_name_matches(name16: &[u16], target: &str) -> bool {
|
|
let s = String::from_utf16_lossy(name16);
|
|
s.trim_end_matches('\u{0}') == target
|
|
}
|
|
|
|
/// Copy a row-padded BGRA surface (`pitch` >= `w*4`) into a tightly-packed `w*4*h` buffer.
|
|
fn depad_bgra(src: &[u8], pitch: usize, w: usize, h: usize) -> Vec<u8> {
|
|
let row = w * 4;
|
|
let mut out = vec![0u8; row * h];
|
|
for y in 0..h {
|
|
out[y * row..y * row + row].copy_from_slice(&src[y * pitch..y * pitch + row]);
|
|
}
|
|
out
|
|
}
|
|
|
|
/// Re-find the live `IDXGIOutput1` for a GDI name across all adapters (the SudoVDA monitor is
|
|
/// enumerated under the rendering GPU). Used to recover after ACCESS_LOST, where the cached handle
|
|
/// may be stale.
|
|
unsafe fn find_output(gdi_name: &str) -> Result<(IDXGIAdapter1, IDXGIOutput1)> {
|
|
let factory: IDXGIFactory1 = CreateDXGIFactory1().context("CreateDXGIFactory1")?;
|
|
let mut i = 0u32;
|
|
while let Ok(a) = factory.EnumAdapters1(i) {
|
|
let mut j = 0u32;
|
|
while let Ok(o) = a.EnumOutputs(j) {
|
|
let od = o.GetDesc()?;
|
|
if gdi_name_matches(&od.DeviceName, gdi_name) {
|
|
return Ok((a.clone(), o.cast::<IDXGIOutput1>()?));
|
|
}
|
|
j += 1;
|
|
}
|
|
i += 1;
|
|
}
|
|
bail!("no DXGI output named {gdi_name} (gone after ACCESS_LOST?)")
|
|
}
|
|
|
|
/// Create a fresh D3D11 device + context on a specific adapter (driver_type UNKNOWN with an explicit
|
|
/// adapter). Used at open and on every ACCESS_LOST: a device created on one desktop cannot sustain a
|
|
/// duplication on a *different* desktop (perpetual ACCESS_LOST), so the secure-desktop switch needs a
|
|
/// device made while the thread is attached to that desktop.
|
|
unsafe fn make_device(adapter: &IDXGIAdapter1) -> Result<(ID3D11Device, ID3D11DeviceContext)> {
|
|
let mut device: Option<ID3D11Device> = None;
|
|
let mut context: Option<ID3D11DeviceContext> = None;
|
|
D3D11CreateDevice(
|
|
adapter,
|
|
D3D_DRIVER_TYPE_UNKNOWN,
|
|
HMODULE::default(),
|
|
D3D11_CREATE_DEVICE_BGRA_SUPPORT,
|
|
Some(&[D3D_FEATURE_LEVEL_11_0]),
|
|
D3D11_SDK_VERSION,
|
|
Some(&mut device),
|
|
None,
|
|
Some(&mut context),
|
|
)
|
|
.context("D3D11CreateDevice")?;
|
|
Ok((
|
|
device.context("null D3D11 device")?,
|
|
context.context("null D3D11 context")?,
|
|
))
|
|
}
|
|
|
|
/// Re-find the output, make a fresh device on its adapter, and duplicate it. Used by the ACCESS_LOST
|
|
/// recovery to rebuild the whole capture on the current (possibly secure) input desktop.
|
|
unsafe fn reopen_duplication(
|
|
gdi_name: &str,
|
|
) -> Result<(
|
|
ID3D11Device,
|
|
ID3D11DeviceContext,
|
|
IDXGIOutput1,
|
|
IDXGIOutputDuplication,
|
|
)> {
|
|
let (adapter, out) = find_output(gdi_name)?;
|
|
let (dev, ctx) = make_device(&adapter)?;
|
|
let dupl = out
|
|
.DuplicateOutput(&dev)
|
|
.context("re-DuplicateOutput after ACCESS_LOST")?;
|
|
Ok((dev, ctx, out, dupl))
|
|
}
|
|
|
|
/// Park the cursor on a duplicated output. A blank virtual display emits NO Desktop Duplication
|
|
/// frames until something changes; a pointer move IS a DDA "change", so this kicks the very first
|
|
/// `AcquireNextFrame` loose — and lands the cursor on the display the client is viewing. Two moves
|
|
/// to distinct points guarantee an actual move even if the cursor already sat at the center.
|
|
/// Follow the current input desktop so duplication spans the normal ↔ Winlogon (secure: login/UAC)
|
|
/// desktops. Opening the secure desktop requires SYSTEM; on a non-SYSTEM host this just fails on
|
|
/// Winlogon (capture freezes there) — which is why the host relaunches itself as SYSTEM. The HDESK
|
|
/// is intentionally leaked: it must stay open while it's the thread's desktop, and switches
|
|
/// (lock/unlock/UAC) are rare, so a few handles per session is fine.
|
|
unsafe fn attach_input_desktop() {
|
|
match OpenInputDesktop(
|
|
DESKTOP_CONTROL_FLAGS(0),
|
|
false,
|
|
DESKTOP_ACCESS_FLAGS(0x1000_0000), // GENERIC_ALL
|
|
) {
|
|
Ok(desk) => match SetThreadDesktop(desk) {
|
|
Ok(()) => tracing::info!("attach_input_desktop: SetThreadDesktop OK"),
|
|
Err(e) => {
|
|
tracing::warn!(error = %format!("{e:?}"), "attach_input_desktop: SetThreadDesktop FAILED")
|
|
}
|
|
},
|
|
Err(e) => {
|
|
tracing::warn!(error = %format!("{e:?}"), "attach_input_desktop: OpenInputDesktop FAILED")
|
|
}
|
|
}
|
|
}
|
|
|
|
unsafe fn nudge_cursor_onto(output: &IDXGIOutput1) {
|
|
if let Ok(od) = output.GetDesc() {
|
|
let r = od.DesktopCoordinates;
|
|
let _ = SetCursorPos(r.left + 8, r.top + 8);
|
|
let _ = SetCursorPos((r.left + r.right) / 2, (r.top + r.bottom) / 2);
|
|
}
|
|
}
|
|
|
|
// DXGI Desktop Duplication deliberately EXCLUDES the hardware cursor from the captured surface (the
|
|
// OS composites it separately). We capture the cursor shape/position from the frame info and blend it
|
|
// back in — on the GPU for the zero-copy path (a CPU readback would stall the 240 fps pipeline).
|
|
|
|
const CURSOR_VS: &str = r"
|
|
cbuffer Rect : register(b0) { float4 r; };
|
|
struct VOut { float4 pos : SV_POSITION; float2 uv : TEXCOORD0; };
|
|
VOut main(uint vid : SV_VertexID) {
|
|
float2 uv = float2((vid == 1 || vid == 3) ? 1.0 : 0.0, (vid >= 2) ? 1.0 : 0.0);
|
|
VOut o;
|
|
o.pos = float4(lerp(r.x, r.z, uv.x), lerp(r.y, r.w, uv.y), 0.0, 1.0);
|
|
o.uv = uv;
|
|
return o;
|
|
}
|
|
";
|
|
|
|
const CURSOR_PS: &str = r"
|
|
Texture2D tx : register(t0);
|
|
SamplerState sm : register(s0);
|
|
float4 main(float4 pos : SV_POSITION, float2 uv : TEXCOORD0) : SV_TARGET {
|
|
return tx.Sample(sm, uv);
|
|
}
|
|
";
|
|
|
|
unsafe fn compile_shader(src: &str, entry: PCSTR, target: PCSTR) -> Result<Vec<u8>> {
|
|
let mut blob: Option<ID3DBlob> = None;
|
|
let mut errs: Option<ID3DBlob> = None;
|
|
let r = D3DCompile(
|
|
src.as_ptr() as *const c_void,
|
|
src.len(),
|
|
PCSTR::null(),
|
|
None,
|
|
None,
|
|
entry,
|
|
target,
|
|
0,
|
|
0,
|
|
&mut blob,
|
|
Some(&mut errs),
|
|
);
|
|
if r.is_err() {
|
|
let msg = errs
|
|
.as_ref()
|
|
.map(|e| {
|
|
let p = e.GetBufferPointer() as *const u8;
|
|
String::from_utf8_lossy(std::slice::from_raw_parts(p, e.GetBufferSize())).to_string()
|
|
})
|
|
.unwrap_or_default();
|
|
bail!("D3DCompile failed: {msg}");
|
|
}
|
|
let blob = blob.context("no shader blob")?;
|
|
let p = blob.GetBufferPointer() as *const u8;
|
|
Ok(std::slice::from_raw_parts(p, blob.GetBufferSize()).to_vec())
|
|
}
|
|
|
|
/// GPU cursor overlay: a tiny shader pipeline that alpha-blends the cursor texture onto the captured
|
|
/// frame. Tied to one D3D11 device; rebuilt when the capturer recreates its device on a desktop switch.
|
|
struct CursorCompositor {
|
|
vs: ID3D11VertexShader,
|
|
ps: ID3D11PixelShader,
|
|
cbuf: ID3D11Buffer,
|
|
blend: ID3D11BlendState,
|
|
/// Inversion blend for masked-color (XOR) cursors like the text I-beam: result = white*(1-dest),
|
|
/// i.e. it inverts the screen under the cursor so it's visible on any background.
|
|
blend_invert: ID3D11BlendState,
|
|
sampler: ID3D11SamplerState,
|
|
tex: Option<(ID3D11ShaderResourceView, u32, u32)>, // srv + width + height
|
|
}
|
|
|
|
impl CursorCompositor {
|
|
unsafe fn new(device: &ID3D11Device) -> Result<Self> {
|
|
let vsb = compile_shader(CURSOR_VS, s!("main"), s!("vs_5_0"))?;
|
|
let psb = compile_shader(CURSOR_PS, s!("main"), s!("ps_5_0"))?;
|
|
let mut vs = None;
|
|
device.CreateVertexShader(&vsb, None, Some(&mut vs))?;
|
|
let mut ps = None;
|
|
device.CreatePixelShader(&psb, None, Some(&mut ps))?;
|
|
|
|
let cbd = D3D11_BUFFER_DESC {
|
|
ByteWidth: 16,
|
|
Usage: D3D11_USAGE_DYNAMIC,
|
|
BindFlags: D3D11_BIND_CONSTANT_BUFFER.0 as u32,
|
|
CPUAccessFlags: D3D11_CPU_ACCESS_WRITE.0 as u32,
|
|
..Default::default()
|
|
};
|
|
let mut cbuf = None;
|
|
device.CreateBuffer(&cbd, None, Some(&mut cbuf))?;
|
|
|
|
let mut bd = D3D11_BLEND_DESC::default();
|
|
bd.RenderTarget[0] = D3D11_RENDER_TARGET_BLEND_DESC {
|
|
BlendEnable: true.into(),
|
|
SrcBlend: D3D11_BLEND_SRC_ALPHA,
|
|
DestBlend: D3D11_BLEND_INV_SRC_ALPHA,
|
|
BlendOp: D3D11_BLEND_OP_ADD,
|
|
SrcBlendAlpha: D3D11_BLEND_ONE,
|
|
DestBlendAlpha: D3D11_BLEND_INV_SRC_ALPHA,
|
|
BlendOpAlpha: D3D11_BLEND_OP_ADD,
|
|
RenderTargetWriteMask: D3D11_COLOR_WRITE_ENABLE_ALL.0 as u8,
|
|
};
|
|
let mut blend = None;
|
|
device.CreateBlendState(&bd, Some(&mut blend))?;
|
|
|
|
// Inversion blend: result.rgb = src*(1-dest) + dest*(1-src.a). A white opaque cursor pixel
|
|
// (src=1,a=1) -> 1-dest (inverted); a transparent pixel (src=0,a=0) -> dest (unchanged).
|
|
let mut bdi = D3D11_BLEND_DESC::default();
|
|
bdi.RenderTarget[0] = D3D11_RENDER_TARGET_BLEND_DESC {
|
|
BlendEnable: true.into(),
|
|
SrcBlend: D3D11_BLEND_INV_DEST_COLOR,
|
|
DestBlend: D3D11_BLEND_INV_SRC_ALPHA,
|
|
BlendOp: D3D11_BLEND_OP_ADD,
|
|
SrcBlendAlpha: D3D11_BLEND_ONE,
|
|
DestBlendAlpha: D3D11_BLEND_INV_SRC_ALPHA,
|
|
BlendOpAlpha: D3D11_BLEND_OP_ADD,
|
|
RenderTargetWriteMask: D3D11_COLOR_WRITE_ENABLE_ALL.0 as u8,
|
|
};
|
|
let mut blend_invert = None;
|
|
device.CreateBlendState(&bdi, Some(&mut blend_invert))?;
|
|
|
|
let sd = D3D11_SAMPLER_DESC {
|
|
Filter: D3D11_FILTER_MIN_MAG_MIP_POINT,
|
|
AddressU: D3D11_TEXTURE_ADDRESS_CLAMP,
|
|
AddressV: D3D11_TEXTURE_ADDRESS_CLAMP,
|
|
AddressW: D3D11_TEXTURE_ADDRESS_CLAMP,
|
|
ComparisonFunc: D3D11_COMPARISON_NEVER,
|
|
MaxLOD: f32::MAX,
|
|
..Default::default()
|
|
};
|
|
let mut sampler = None;
|
|
device.CreateSamplerState(&sd, Some(&mut sampler))?;
|
|
|
|
Ok(Self {
|
|
vs: vs.context("vs")?,
|
|
ps: ps.context("ps")?,
|
|
cbuf: cbuf.context("cbuf")?,
|
|
blend: blend.context("blend")?,
|
|
blend_invert: blend_invert.context("blend_invert")?,
|
|
sampler: sampler.context("sampler")?,
|
|
tex: None,
|
|
})
|
|
}
|
|
|
|
unsafe fn set_shape(&mut self, device: &ID3D11Device, bgra: &[u8], w: u32, h: u32) -> Result<()> {
|
|
let desc = D3D11_TEXTURE2D_DESC {
|
|
Width: w,
|
|
Height: h,
|
|
MipLevels: 1,
|
|
ArraySize: 1,
|
|
Format: DXGI_FORMAT_B8G8R8A8_UNORM,
|
|
SampleDesc: DXGI_SAMPLE_DESC {
|
|
Count: 1,
|
|
Quality: 0,
|
|
},
|
|
Usage: D3D11_USAGE_DEFAULT,
|
|
BindFlags: D3D11_BIND_SHADER_RESOURCE.0 as u32,
|
|
..Default::default()
|
|
};
|
|
let init = D3D11_SUBRESOURCE_DATA {
|
|
pSysMem: bgra.as_ptr() as *const c_void,
|
|
SysMemPitch: w * 4,
|
|
SysMemSlicePitch: 0,
|
|
};
|
|
let mut tex: Option<ID3D11Texture2D> = None;
|
|
device.CreateTexture2D(&desc, Some(&init), Some(&mut tex))?;
|
|
let tex = tex.context("cursor tex")?;
|
|
let mut srv = None;
|
|
device.CreateShaderResourceView(&tex, None, Some(&mut srv))?;
|
|
self.tex = Some((srv.context("cursor srv")?, w, h));
|
|
Ok(())
|
|
}
|
|
|
|
/// Blend the cursor onto `rtv` (a render-target view of the captured frame) at frame pixel (cx,cy).
|
|
#[allow(clippy::too_many_arguments)]
|
|
unsafe fn draw(
|
|
&self,
|
|
ctx: &ID3D11DeviceContext,
|
|
rtv: &ID3D11RenderTargetView,
|
|
fw: u32,
|
|
fh: u32,
|
|
cx: i32,
|
|
cy: i32,
|
|
invert: bool,
|
|
) {
|
|
let (srv, cw, ch) = match &self.tex {
|
|
Some(t) => t,
|
|
None => return,
|
|
};
|
|
let x0 = (cx as f32 / fw as f32) * 2.0 - 1.0;
|
|
let x1 = ((cx + *cw as i32) as f32 / fw as f32) * 2.0 - 1.0;
|
|
let y0 = 1.0 - (cy as f32 / fh as f32) * 2.0;
|
|
let y1 = 1.0 - ((cy + *ch as i32) as f32 / fh as f32) * 2.0;
|
|
let rect = [x0, y0, x1, y1];
|
|
let mut mapped = D3D11_MAPPED_SUBRESOURCE::default();
|
|
if ctx
|
|
.Map(&self.cbuf, 0, D3D11_MAP_WRITE_DISCARD, 0, Some(&mut mapped))
|
|
.is_ok()
|
|
{
|
|
std::ptr::copy_nonoverlapping(rect.as_ptr(), mapped.pData as *mut f32, 4);
|
|
ctx.Unmap(&self.cbuf, 0);
|
|
}
|
|
let vp = D3D11_VIEWPORT {
|
|
TopLeftX: 0.0,
|
|
TopLeftY: 0.0,
|
|
Width: fw as f32,
|
|
Height: fh as f32,
|
|
MinDepth: 0.0,
|
|
MaxDepth: 1.0,
|
|
};
|
|
ctx.RSSetViewports(Some(&[vp]));
|
|
ctx.OMSetRenderTargets(Some(&[Some(rtv.clone())]), None);
|
|
let blend = if invert { &self.blend_invert } else { &self.blend };
|
|
ctx.OMSetBlendState(blend, Some(&[0.0; 4]), 0xffff_ffff);
|
|
ctx.VSSetShader(&self.vs, None);
|
|
ctx.PSSetShader(&self.ps, None);
|
|
ctx.VSSetConstantBuffers(0, Some(&[Some(self.cbuf.clone())]));
|
|
ctx.PSSetShaderResources(0, Some(&[Some(srv.clone())]));
|
|
ctx.PSSetSamplers(0, Some(&[Some(self.sampler.clone())]));
|
|
ctx.IASetInputLayout(None);
|
|
ctx.IASetPrimitiveTopology(D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP);
|
|
ctx.Draw(4, 0);
|
|
// Unbind the render target so the next frame's CopyResource into this texture is unobstructed.
|
|
ctx.OMSetRenderTargets(Some(&[None]), None);
|
|
}
|
|
}
|
|
|
|
/// Convert a DXGI pointer shape (color / masked-color / monochrome) into top-down BGRA.
|
|
fn convert_pointer_shape(buf: &[u8], si: &DXGI_OUTDUPL_POINTER_SHAPE_INFO) -> Option<(Vec<u8>, u32, u32)> {
|
|
let w = si.Width as usize;
|
|
let pitch = si.Pitch as usize;
|
|
if w == 0 || pitch == 0 {
|
|
return None;
|
|
}
|
|
// Type is a u32 (newtype constants compared via .0).
|
|
if si.Type == DXGI_OUTDUPL_POINTER_SHAPE_TYPE_COLOR.0 as u32 {
|
|
// Straight 32bpp BGRA with a real alpha channel.
|
|
let h = si.Height as usize;
|
|
if buf.len() < pitch * h {
|
|
return None;
|
|
}
|
|
let mut out = vec![0u8; w * h * 4];
|
|
for y in 0..h {
|
|
for x in 0..w {
|
|
let s = y * pitch + x * 4;
|
|
let d = (y * w + x) * 4;
|
|
out[d] = buf[s];
|
|
out[d + 1] = buf[s + 1];
|
|
out[d + 2] = buf[s + 2];
|
|
out[d + 3] = buf[s + 3];
|
|
}
|
|
}
|
|
Some((out, w as u32, h as u32))
|
|
} else if si.Type == DXGI_OUTDUPL_POINTER_SHAPE_TYPE_MASKED_COLOR.0 as u32 {
|
|
// 32bpp where the alpha byte is a MASK, not an alpha: 0x00 = opaque (copy RGB), 0xFF = XOR
|
|
// with the screen. The text I-beam is this type — surround = XOR-with-black (a no-op, must be
|
|
// transparent), bar = XOR-with-white (inverts the screen so it shows on any background).
|
|
// Compositing uses the INVERSION blend (see CursorCompositor) when `cursor_invert` is set, so:
|
|
// mask 0x00 -> opaque RGB (rendered as a plain pixel — rare for I-beams)
|
|
// mask 0xFF, RGB == 0 -> transparent (XOR with black = unchanged)
|
|
// mask 0xFF, RGB != 0 -> WHITE opaque (the inversion blend turns this into 1-dest)
|
|
let h = si.Height as usize;
|
|
if buf.len() < pitch * h {
|
|
return None;
|
|
}
|
|
let mut out = vec![0u8; w * h * 4];
|
|
for y in 0..h {
|
|
for x in 0..w {
|
|
let s = y * pitch + x * 4;
|
|
let d = (y * w + x) * 4;
|
|
let (b, g, r, mask) = (buf[s], buf[s + 1], buf[s + 2], buf[s + 3]);
|
|
if mask == 0 {
|
|
out[d] = b;
|
|
out[d + 1] = g;
|
|
out[d + 2] = r;
|
|
out[d + 3] = 255;
|
|
} else if b == 0 && g == 0 && r == 0 {
|
|
out[d + 3] = 0; // XOR with black = no change → transparent
|
|
} else {
|
|
out[d] = 255; // inverting pixel → white; inversion blend makes it 1-dest
|
|
out[d + 1] = 255;
|
|
out[d + 2] = 255;
|
|
out[d + 3] = 255;
|
|
}
|
|
}
|
|
}
|
|
Some((out, w as u32, h as u32))
|
|
} else {
|
|
// Monochrome: top half = AND mask, bottom half = XOR mask, 1 bpp.
|
|
let h = (si.Height / 2) as usize;
|
|
if buf.len() < pitch * h * 2 {
|
|
return None;
|
|
}
|
|
let bit = |row: usize, x: usize| (buf[row * pitch + x / 8] >> (7 - (x % 8))) & 1;
|
|
let mut out = vec![0u8; w * h * 4];
|
|
for y in 0..h {
|
|
for x in 0..w {
|
|
let and_bit = bit(y, x);
|
|
let xor_bit = bit(y + h, x);
|
|
let (b, g, r, a) = match (and_bit, xor_bit) {
|
|
(0, 0) => (0, 0, 0, 255), // opaque black
|
|
(0, 1) => (255, 255, 255, 255), // opaque white
|
|
(1, 0) => (0, 0, 0, 0), // transparent
|
|
_ => (0, 0, 0, 255), // invert -> approximate as black
|
|
};
|
|
let d = (y * w + x) * 4;
|
|
out[d] = b;
|
|
out[d + 1] = g;
|
|
out[d + 2] = r;
|
|
out[d + 3] = a;
|
|
}
|
|
}
|
|
Some((out, w as u32, h as u32))
|
|
}
|
|
}
|
|
|
|
/// CPU src-over alpha blend of a BGRA cursor into a BGRA frame buffer (software-encode path). When
|
|
/// `invert` is set (masked-color / XOR cursor), a covered pixel inverts the frame instead (true XOR).
|
|
#[allow(clippy::too_many_arguments)]
|
|
fn blend_cursor_cpu(
|
|
frame: &mut [u8],
|
|
fw: u32,
|
|
fh: u32,
|
|
cur: &[u8],
|
|
cw: u32,
|
|
ch: u32,
|
|
cx: i32,
|
|
cy: i32,
|
|
invert: bool,
|
|
) {
|
|
let (fw, fh, cw, ch) = (fw as i32, fh as i32, cw as i32, ch as i32);
|
|
for y in 0..ch {
|
|
let fy = cy + y;
|
|
if fy < 0 || fy >= fh {
|
|
continue;
|
|
}
|
|
for x in 0..cw {
|
|
let fx = cx + x;
|
|
if fx < 0 || fx >= fw {
|
|
continue;
|
|
}
|
|
let s = ((y * cw + x) * 4) as usize;
|
|
let a = cur[s + 3] as u32;
|
|
if a == 0 {
|
|
continue;
|
|
}
|
|
let d = ((fy * fw + fx) * 4) as usize;
|
|
if invert {
|
|
for k in 0..3 {
|
|
frame[d + k] = 255 - frame[d + k];
|
|
}
|
|
} else {
|
|
for k in 0..3 {
|
|
frame[d + k] =
|
|
((cur[s + k] as u32 * a + frame[d + k] as u32 * (255 - a)) / 255) as u8;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
pub struct DuplCapturer {
|
|
device: ID3D11Device,
|
|
context: ID3D11DeviceContext,
|
|
output: IDXGIOutput1,
|
|
dupl: IDXGIOutputDuplication,
|
|
/// The output's GDI name — re-resolved on ACCESS_LOST (a mode change can stale the cached handle).
|
|
gdi_name: String,
|
|
/// Stable SudoVDA target id, used to re-resolve `gdi_name` during recovery.
|
|
target_id: u32,
|
|
width: u32,
|
|
height: u32,
|
|
refresh_hz: u32,
|
|
staging: Option<ID3D11Texture2D>,
|
|
holding_frame: bool,
|
|
active: AtomicBool,
|
|
timeout_ms: u32,
|
|
/// The first AcquireNextFrame after a (re)DuplicateOutput gets a generous timeout — the initial
|
|
/// desktop snapshot of a large surface can take longer than the per-frame budget.
|
|
first_frame: bool,
|
|
dbg_timeouts: u32,
|
|
dbg_lost: u32,
|
|
last: Option<Vec<u8>>,
|
|
/// GPU-output mode (zero-copy → NVENC): produce `FramePayload::D3d11` instead of CPU BGRA.
|
|
/// Selected by `PUNKTFUNK_ENCODER=nvenc` so the capturer's output matches the encoder's input.
|
|
gpu_mode: bool,
|
|
/// Reused owned texture the duplication frame is copied into for the D3D11 path (the duplication
|
|
/// surface is transient and released each frame).
|
|
gpu_copy: Option<ID3D11Texture2D>,
|
|
have_gpu_frame: bool,
|
|
/// GPU cursor overlay (rebuilt on device recreate). `None` until the first composite.
|
|
cursor: Option<CursorCompositor>,
|
|
/// Last cursor shape as BGRA (kept device-independent so it survives a device recreate).
|
|
cursor_shape: Option<(Vec<u8>, u32, u32)>,
|
|
cursor_pos: (i32, i32),
|
|
cursor_visible: bool,
|
|
/// Cursor shape changed → re-upload to the GPU texture before the next composite.
|
|
cursor_dirty: bool,
|
|
/// Current cursor is masked-color (XOR) → composite with the inversion blend.
|
|
cursor_invert: bool,
|
|
dbg_cursor: u64,
|
|
_keepalive: Box<dyn Send>,
|
|
}
|
|
// COM objects used only from the one thread that owns the capturer (the encode thread).
|
|
unsafe impl Send for DuplCapturer {}
|
|
|
|
impl DuplCapturer {
|
|
pub fn open(
|
|
target: WinCaptureTarget,
|
|
preferred: Option<(u32, u32, u32)>,
|
|
keepalive: Box<dyn Send>,
|
|
) -> Result<Self> {
|
|
unsafe {
|
|
let factory: IDXGIFactory1 = CreateDXGIFactory1().context("CreateDXGIFactory1")?;
|
|
// 1) Find the output (monitor) whose GDI DeviceName matches, across ALL adapters. On a
|
|
// real-GPU box the SudoVDA virtual monitor's DXGI output is enumerated under the GPU that
|
|
// *renders* it (the discrete/integrated GPU), NOT under the SudoVDA "adapter" LUID that
|
|
// SudoVDA reports — so we can't restrict the search to `target.adapter_luid`. The output
|
|
// also appears a beat after the display is created, so settle-retry for up to ~2 s.
|
|
// `target.adapter_luid` is kept only as a tie-break preference (matched adapter first).
|
|
let _ = target.adapter_luid;
|
|
let deadline = Instant::now() + Duration::from_millis(2000);
|
|
let (adapter, output): (IDXGIAdapter1, IDXGIOutput1) = loop {
|
|
let mut hit = None;
|
|
let mut i = 0u32;
|
|
while let Ok(a) = factory.EnumAdapters1(i) {
|
|
let ad = a.GetDesc1()?;
|
|
let aname = String::from_utf16_lossy(&ad.Description);
|
|
let aname = aname.trim_end_matches('\u{0}');
|
|
let mut j = 0u32;
|
|
while let Ok(o) = a.EnumOutputs(j) {
|
|
let od = o.GetDesc()?;
|
|
let oname = String::from_utf16_lossy(&od.DeviceName);
|
|
let oname = oname.trim_end_matches('\u{0}').to_string();
|
|
tracing::debug!(
|
|
adapter = aname,
|
|
luid = format!("{:#x}", pack_luid(ad.AdapterLuid)),
|
|
output = oname,
|
|
want = target.gdi_name,
|
|
"DXGI output seen"
|
|
);
|
|
if gdi_name_matches(&od.DeviceName, &target.gdi_name) {
|
|
tracing::info!(
|
|
adapter = aname,
|
|
luid = format!("{:#x}", pack_luid(ad.AdapterLuid)),
|
|
output = oname,
|
|
"capturing the SudoVDA output on this adapter"
|
|
);
|
|
hit = Some((a.clone(), o.cast::<IDXGIOutput1>()?));
|
|
break;
|
|
}
|
|
j += 1;
|
|
}
|
|
if hit.is_some() {
|
|
break;
|
|
}
|
|
i += 1;
|
|
}
|
|
if let Some(h) = hit {
|
|
break h;
|
|
}
|
|
if Instant::now() >= deadline {
|
|
let mut topo = Vec::new();
|
|
let mut i = 0u32;
|
|
while let Ok(a) = factory.EnumAdapters1(i) {
|
|
let ad = a.GetDesc1()?;
|
|
let an = String::from_utf16_lossy(&ad.Description);
|
|
let mut outs = Vec::new();
|
|
let mut j = 0u32;
|
|
while let Ok(o) = a.EnumOutputs(j) {
|
|
let od = o.GetDesc()?;
|
|
outs.push(
|
|
String::from_utf16_lossy(&od.DeviceName)
|
|
.trim_end_matches('\u{0}')
|
|
.to_string(),
|
|
);
|
|
j += 1;
|
|
}
|
|
topo.push(format!(
|
|
"{} [{:#x}]: {:?}",
|
|
an.trim_end_matches('\u{0}'),
|
|
pack_luid(ad.AdapterLuid),
|
|
outs
|
|
));
|
|
i += 1;
|
|
}
|
|
bail!(
|
|
"no DXGI adapter exposes output {} (topology: {})",
|
|
target.gdi_name,
|
|
topo.join(" | ")
|
|
);
|
|
}
|
|
std::thread::sleep(Duration::from_millis(100));
|
|
};
|
|
// 2) D3D11 device ON the adapter that exposes the output (driver_type MUST be UNKNOWN with
|
|
// an explicit adapter). NVENC binds to this same device for zero-copy encode.
|
|
let mut device: Option<ID3D11Device> = None;
|
|
let mut context: Option<ID3D11DeviceContext> = None;
|
|
D3D11CreateDevice(
|
|
&adapter,
|
|
D3D_DRIVER_TYPE_UNKNOWN,
|
|
HMODULE::default(),
|
|
D3D11_CREATE_DEVICE_BGRA_SUPPORT,
|
|
Some(&[D3D_FEATURE_LEVEL_11_0]),
|
|
D3D11_SDK_VERSION,
|
|
Some(&mut device),
|
|
None,
|
|
Some(&mut context),
|
|
)
|
|
.context("D3D11CreateDevice")?;
|
|
let device = device.context("null D3D11 device")?;
|
|
let context = context.context("null D3D11 context")?;
|
|
// 3) duplicate the output. Attach to the current input desktop first (as SYSTEM this can
|
|
// be the Winlogon secure desktop) so a session that starts at the lock/login screen works.
|
|
attach_input_desktop();
|
|
let dupl = output
|
|
.DuplicateOutput(&device)
|
|
.context("DuplicateOutput (already duplicated by another app?)")?;
|
|
// Kick the first frame loose: a blank virtual display is otherwise change-less.
|
|
nudge_cursor_onto(&output);
|
|
let dd: DXGI_OUTDUPL_DESC = dupl.GetDesc();
|
|
let (width, height) = (dd.ModeDesc.Width, dd.ModeDesc.Height);
|
|
let refresh_hz = preferred
|
|
.map(|(_, _, hz)| hz)
|
|
.filter(|&hz| hz > 0)
|
|
.unwrap_or_else(|| {
|
|
let r = dd.ModeDesc.RefreshRate;
|
|
r.Numerator
|
|
.checked_div(r.Denominator)
|
|
.map_or(60, |hz| hz.max(1))
|
|
});
|
|
let timeout_ms = std::env::var("PUNKTFUNK_CAPTURE_TIMEOUT_MS")
|
|
.ok()
|
|
.and_then(|s| s.parse().ok())
|
|
.unwrap_or((2000 / refresh_hz.max(1)).max(100));
|
|
let gpu_mode = std::env::var("PUNKTFUNK_ENCODER")
|
|
.map(|v| matches!(v.to_ascii_lowercase().as_str(), "nvenc" | "hw" | "nvidia"))
|
|
.unwrap_or(false);
|
|
tracing::info!(
|
|
"DXGI duplication: {}x{}@{} on {} ({})",
|
|
width,
|
|
height,
|
|
refresh_hz,
|
|
target.gdi_name,
|
|
if gpu_mode {
|
|
"D3D11 zero-copy"
|
|
} else {
|
|
"CPU staging"
|
|
}
|
|
);
|
|
Ok(Self {
|
|
device,
|
|
context,
|
|
output,
|
|
dupl,
|
|
target_id: target.target_id,
|
|
gdi_name: target.gdi_name,
|
|
width,
|
|
height,
|
|
refresh_hz,
|
|
staging: None,
|
|
holding_frame: false,
|
|
active: AtomicBool::new(false),
|
|
timeout_ms,
|
|
first_frame: true,
|
|
dbg_timeouts: 0,
|
|
dbg_lost: 0,
|
|
last: None,
|
|
gpu_mode,
|
|
gpu_copy: None,
|
|
have_gpu_frame: false,
|
|
cursor: None,
|
|
cursor_shape: None,
|
|
cursor_pos: (0, 0),
|
|
cursor_visible: false,
|
|
cursor_dirty: false,
|
|
cursor_invert: false,
|
|
dbg_cursor: 0,
|
|
_keepalive: keepalive,
|
|
})
|
|
}
|
|
}
|
|
|
|
unsafe fn ensure_staging(&mut self) -> Result<()> {
|
|
if self.staging.is_some() {
|
|
return Ok(());
|
|
}
|
|
let desc = D3D11_TEXTURE2D_DESC {
|
|
Width: self.width,
|
|
Height: self.height,
|
|
MipLevels: 1,
|
|
ArraySize: 1,
|
|
Format: DXGI_FORMAT_B8G8R8A8_UNORM,
|
|
SampleDesc: DXGI_SAMPLE_DESC {
|
|
Count: 1,
|
|
Quality: 0,
|
|
},
|
|
Usage: D3D11_USAGE_STAGING,
|
|
BindFlags: D3D11_BIND_FLAG(0).0 as u32,
|
|
CPUAccessFlags: D3D11_CPU_ACCESS_READ.0 as u32,
|
|
MiscFlags: 0,
|
|
};
|
|
let mut t: Option<ID3D11Texture2D> = None;
|
|
self.device
|
|
.CreateTexture2D(&desc, None, Some(&mut t))
|
|
.context("CreateTexture2D(staging)")?;
|
|
self.staging = t;
|
|
Ok(())
|
|
}
|
|
|
|
unsafe fn ensure_gpu_copy(&mut self) -> Result<()> {
|
|
if self.gpu_copy.is_some() {
|
|
return Ok(());
|
|
}
|
|
let desc = D3D11_TEXTURE2D_DESC {
|
|
Width: self.width,
|
|
Height: self.height,
|
|
MipLevels: 1,
|
|
ArraySize: 1,
|
|
Format: DXGI_FORMAT_B8G8R8A8_UNORM,
|
|
SampleDesc: DXGI_SAMPLE_DESC {
|
|
Count: 1,
|
|
Quality: 0,
|
|
},
|
|
Usage: D3D11_USAGE_DEFAULT,
|
|
BindFlags: D3D11_BIND_RENDER_TARGET.0 as u32,
|
|
CPUAccessFlags: 0,
|
|
MiscFlags: 0,
|
|
};
|
|
let mut t: Option<ID3D11Texture2D> = None;
|
|
self.device
|
|
.CreateTexture2D(&desc, None, Some(&mut t))
|
|
.context("CreateTexture2D(gpu copy)")?;
|
|
self.gpu_copy = t;
|
|
Ok(())
|
|
}
|
|
|
|
/// Pull cursor position/visibility/shape out of the frame info (the HW cursor is NOT in the frame).
|
|
unsafe fn update_cursor(&mut self, info: &DXGI_OUTDUPL_FRAME_INFO) {
|
|
if info.LastMouseUpdateTime != 0 {
|
|
self.cursor_pos = (info.PointerPosition.Position.x, info.PointerPosition.Position.y);
|
|
self.cursor_visible = info.PointerPosition.Visible.as_bool();
|
|
}
|
|
if info.PointerShapeBufferSize > 0 {
|
|
let mut buf = vec![0u8; info.PointerShapeBufferSize as usize];
|
|
let mut required = 0u32;
|
|
let mut si = DXGI_OUTDUPL_POINTER_SHAPE_INFO::default();
|
|
if self
|
|
.dupl
|
|
.GetFramePointerShape(
|
|
info.PointerShapeBufferSize,
|
|
buf.as_mut_ptr() as *mut c_void,
|
|
&mut required,
|
|
&mut si,
|
|
)
|
|
.is_ok()
|
|
{
|
|
if let Some(shape) = convert_pointer_shape(&buf, &si) {
|
|
tracing::info!(
|
|
shape_type = si.Type,
|
|
size = format!("{}x{}", shape.1, shape.2),
|
|
"cursor shape captured"
|
|
);
|
|
self.cursor_invert =
|
|
si.Type == DXGI_OUTDUPL_POINTER_SHAPE_TYPE_MASKED_COLOR.0 as u32;
|
|
self.cursor_shape = Some(shape);
|
|
self.cursor_dirty = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Composite the cursor onto the GPU frame texture (zero-copy path).
|
|
unsafe fn composite_cursor_gpu(&mut self, gpu: &ID3D11Texture2D) -> Result<()> {
|
|
self.dbg_cursor += 1;
|
|
if self.dbg_cursor % 240 == 1 {
|
|
tracing::debug!(
|
|
visible = self.cursor_visible,
|
|
pos = format!("{:?}", self.cursor_pos),
|
|
shape = self.cursor_shape.as_ref().map(|(_, w, h)| format!("{w}x{h}")),
|
|
"cursor state"
|
|
);
|
|
}
|
|
if !self.cursor_visible || self.cursor_shape.is_none() {
|
|
return Ok(());
|
|
}
|
|
if self.cursor.is_none() {
|
|
self.cursor = Some(CursorCompositor::new(&self.device)?);
|
|
self.cursor_dirty = true; // fresh device → must (re)upload the shape texture
|
|
}
|
|
if self.cursor_dirty {
|
|
if let Some((bgra, w, h)) = &self.cursor_shape {
|
|
self.cursor
|
|
.as_mut()
|
|
.unwrap()
|
|
.set_shape(&self.device, bgra, *w, *h)?;
|
|
}
|
|
self.cursor_dirty = false;
|
|
}
|
|
let mut rtv: Option<ID3D11RenderTargetView> = None;
|
|
self.device
|
|
.CreateRenderTargetView(gpu, None, Some(&mut rtv))?;
|
|
let rtv = rtv.context("cursor rtv")?;
|
|
let (cx, cy) = self.cursor_pos;
|
|
self.cursor.as_ref().unwrap().draw(
|
|
&self.context,
|
|
&rtv,
|
|
self.width,
|
|
self.height,
|
|
cx,
|
|
cy,
|
|
self.cursor_invert,
|
|
);
|
|
Ok(())
|
|
}
|
|
|
|
unsafe fn recreate_dupl(&mut self) -> Result<()> {
|
|
if self.holding_frame {
|
|
let _ = self.dupl.ReleaseFrame();
|
|
self.holding_frame = false;
|
|
}
|
|
// ACCESS_LOST fires on desktop switches (normal ↔ Winlogon secure: lock/login/UAC) and on the
|
|
// mode change we issue at create. Re-attach to the now-current input desktop AND recreate the
|
|
// D3D11 device on it: a device made on the previous desktop cannot sustain a duplication on the
|
|
// new one (perpetual ACCESS_LOST). The capturer hands the new device out on `FramePayload::D3d11`,
|
|
// so NVENC re-inits when it sees it. Retry while the desktop is mid-reconfigure.
|
|
let deadline = Instant::now() + Duration::from_millis(12000);
|
|
loop {
|
|
// The SudoVDA virtual output's GDI name can CHANGE across a secure-desktop topology
|
|
// rebuild — the observed failure was searching for the stale \\.\DISPLAYn until the
|
|
// deadline and dying ("no DXGI output named ..."). Re-resolve it from the STABLE target
|
|
// id each retry so recovery finds the output under its current name.
|
|
if let Some(n) = crate::vdisplay::sudovda::resolve_gdi_name(self.target_id) {
|
|
self.gdi_name = n;
|
|
}
|
|
attach_input_desktop();
|
|
match reopen_duplication(&self.gdi_name) {
|
|
Ok((dev, ctx, out, dupl)) => {
|
|
// A desktop switch can come back at a different size (e.g. the user session applies
|
|
// its own resolution on login). Adopt it: update dimensions and drop the staging/gpu
|
|
// copies so they reallocate. NVENC re-inits at the new size when it sees the frame.
|
|
let dd: DXGI_OUTDUPL_DESC = dupl.GetDesc();
|
|
let (nw, nh) = (dd.ModeDesc.Width, dd.ModeDesc.Height);
|
|
if nw != self.width || nh != self.height {
|
|
tracing::info!(
|
|
old = format!("{}x{}", self.width, self.height),
|
|
new = format!("{nw}x{nh}"),
|
|
"DXGI duplication size changed across switch"
|
|
);
|
|
self.width = nw;
|
|
self.height = nh;
|
|
self.staging = None;
|
|
}
|
|
self.device = dev;
|
|
self.context = ctx;
|
|
self.output = out;
|
|
self.dupl = dupl;
|
|
self.gpu_copy = None; // stale: belonged to the old device
|
|
self.cursor = None; // shaders/textures belonged to the old device; rebuilt on demand
|
|
self.have_gpu_frame = false;
|
|
self.first_frame = true;
|
|
nudge_cursor_onto(&self.output); // re-kick after recovery
|
|
return Ok(());
|
|
}
|
|
Err(e) if Instant::now() >= deadline => return Err(e),
|
|
Err(_) => std::thread::sleep(Duration::from_millis(120)),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Acquire one frame: `Some` on a fresh image, `None` on timeout (no change → caller reuses last).
|
|
unsafe fn acquire(&mut self) -> Result<Option<CapturedFrame>> {
|
|
if self.holding_frame {
|
|
let _ = self.dupl.ReleaseFrame();
|
|
self.holding_frame = false;
|
|
}
|
|
let mut info = DXGI_OUTDUPL_FRAME_INFO::default();
|
|
let mut res: Option<IDXGIResource> = None;
|
|
let timeout = if self.first_frame { 2000 } else { self.timeout_ms };
|
|
match self.dupl.AcquireNextFrame(timeout, &mut info, &mut res) {
|
|
Ok(()) => {
|
|
if self.first_frame {
|
|
tracing::info!(w = self.width, h = self.height, "DXGI first frame acquired");
|
|
self.first_frame = false;
|
|
}
|
|
self.update_cursor(&info);
|
|
}
|
|
Err(e) if e.code() == DXGI_ERROR_WAIT_TIMEOUT => {
|
|
self.dbg_timeouts += 1;
|
|
if self.dbg_timeouts % 40 == 1 {
|
|
tracing::warn!(
|
|
timeouts = self.dbg_timeouts,
|
|
first_frame = self.first_frame,
|
|
"DXGI AcquireNextFrame timeout (no desktop change yet)"
|
|
);
|
|
}
|
|
return Ok(None);
|
|
}
|
|
// Recoverable losses, ALL handled by rebuilding the duplication (device + re-DuplicateOutput):
|
|
// ACCESS_LOST — desktop switch (normal <-> Winlogon secure: lock/login/UAC) or mode change
|
|
// INVALID_CALL — the secure->user-desktop switch (post-login) leaves the duplication in a
|
|
// state where AcquireNextFrame returns 0x887A0001; recreating recovers it.
|
|
// Previously fatal -> the stream dropped the instant the user logged in.
|
|
// DEVICE_REMOVED/RESET — GPU TDR / driver reset.
|
|
Err(e)
|
|
if e.code() == DXGI_ERROR_ACCESS_LOST
|
|
|| e.code() == DXGI_ERROR_INVALID_CALL
|
|
|| e.code() == DXGI_ERROR_DEVICE_REMOVED
|
|
|| e.code() == DXGI_ERROR_DEVICE_RESET =>
|
|
{
|
|
self.dbg_lost += 1;
|
|
tracing::warn!(
|
|
lost = self.dbg_lost,
|
|
code = format!("{:#x}", e.code().0),
|
|
"DXGI capture lost (desktop switch?) — recovering"
|
|
);
|
|
self.recreate_dupl()?;
|
|
self.first_frame = true;
|
|
return Ok(None);
|
|
}
|
|
Err(e) => return Err(e).context("AcquireNextFrame"),
|
|
}
|
|
self.holding_frame = true;
|
|
let res = res.context("AcquireNextFrame: null resource")?;
|
|
let tex: ID3D11Texture2D = res.cast().context("resource -> Texture2D")?;
|
|
if self.gpu_mode {
|
|
// Zero-copy path: keep the frame on the GPU for NVENC. Copy the transient duplication
|
|
// surface into a reused owned texture, release the duplication frame, hand off the texture.
|
|
self.ensure_gpu_copy()?;
|
|
let gpu = self.gpu_copy.clone().context("gpu copy texture")?;
|
|
self.context.CopyResource(&gpu, &tex);
|
|
let _ = self.dupl.ReleaseFrame();
|
|
self.holding_frame = false;
|
|
self.have_gpu_frame = true;
|
|
self.composite_cursor_gpu(&gpu)?;
|
|
return Ok(Some(CapturedFrame {
|
|
width: self.width,
|
|
height: self.height,
|
|
pts_ns: now_ns(),
|
|
format: PixelFormat::Bgra,
|
|
payload: FramePayload::D3d11(D3d11Frame {
|
|
texture: gpu,
|
|
device: self.device.clone(),
|
|
}),
|
|
}));
|
|
}
|
|
self.ensure_staging()?;
|
|
let staging = self.staging.clone().context("staging texture")?;
|
|
self.context.CopyResource(&staging, &tex);
|
|
let mut map = D3D11_MAPPED_SUBRESOURCE::default();
|
|
self.context
|
|
.Map(&staging, 0, D3D11_MAP_READ, 0, Some(&mut map))
|
|
.context("Map staging")?;
|
|
let (w, h) = (self.width as usize, self.height as usize);
|
|
let pitch = map.RowPitch as usize;
|
|
let src = std::slice::from_raw_parts(map.pData as *const u8, pitch * h);
|
|
let mut tight = depad_bgra(src, pitch, w, h);
|
|
self.context.Unmap(&staging, 0);
|
|
let _ = self.dupl.ReleaseFrame();
|
|
self.holding_frame = false;
|
|
if self.cursor_visible {
|
|
if let Some((bgra, cw, ch)) = &self.cursor_shape {
|
|
blend_cursor_cpu(
|
|
&mut tight,
|
|
self.width,
|
|
self.height,
|
|
bgra,
|
|
*cw,
|
|
*ch,
|
|
self.cursor_pos.0,
|
|
self.cursor_pos.1,
|
|
self.cursor_invert,
|
|
);
|
|
}
|
|
}
|
|
self.last = Some(tight.clone());
|
|
Ok(Some(CapturedFrame {
|
|
width: self.width,
|
|
height: self.height,
|
|
pts_ns: now_ns(),
|
|
format: PixelFormat::Bgra,
|
|
payload: FramePayload::Cpu(tight),
|
|
}))
|
|
}
|
|
}
|
|
|
|
fn now_ns() -> u64 {
|
|
SystemTime::now()
|
|
.duration_since(UNIX_EPOCH)
|
|
.map(|d| d.as_nanos() as u64)
|
|
.unwrap_or(0)
|
|
}
|
|
|
|
impl Capturer for DuplCapturer {
|
|
fn next_frame(&mut self) -> Result<CapturedFrame> {
|
|
// Generous: a secure-desktop switch can take several seconds to settle (re-resolve + recreate
|
|
// the duplication up to 12 s). Better a few seconds of frozen-last-frame than dropping the stream.
|
|
let deadline = Instant::now() + Duration::from_secs(20);
|
|
loop {
|
|
if let Some(f) = unsafe { self.acquire() }? {
|
|
return Ok(f);
|
|
}
|
|
if self.gpu_mode && self.have_gpu_frame {
|
|
if let Some(gpu) = &self.gpu_copy {
|
|
return Ok(CapturedFrame {
|
|
width: self.width,
|
|
height: self.height,
|
|
pts_ns: now_ns(),
|
|
format: PixelFormat::Bgra,
|
|
payload: FramePayload::D3d11(D3d11Frame {
|
|
texture: gpu.clone(),
|
|
device: self.device.clone(),
|
|
}),
|
|
});
|
|
}
|
|
}
|
|
if let Some(b) = &self.last {
|
|
return Ok(CapturedFrame {
|
|
width: self.width,
|
|
height: self.height,
|
|
pts_ns: now_ns(),
|
|
format: PixelFormat::Bgra,
|
|
payload: FramePayload::Cpu(b.clone()),
|
|
});
|
|
}
|
|
if Instant::now() > deadline {
|
|
return Err(anyhow!(
|
|
"no DXGI frame within 20s (SudoVDA monitor not activated by a WDDM GPU?)"
|
|
));
|
|
}
|
|
}
|
|
}
|
|
|
|
fn try_latest(&mut self) -> Result<Option<CapturedFrame>> {
|
|
unsafe { self.acquire() }
|
|
}
|
|
|
|
fn set_active(&self, active: bool) {
|
|
self.active.store(active, Ordering::Relaxed);
|
|
}
|
|
}
|
|
|
|
impl Drop for DuplCapturer {
|
|
fn drop(&mut self) {
|
|
if self.holding_frame {
|
|
unsafe {
|
|
let _ = self.dupl.ReleaseFrame();
|
|
}
|
|
}
|
|
// _keepalive drops after, REMOVEing the SudoVDA monitor.
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn pack_luid_roundtrip() {
|
|
let l = LUID {
|
|
LowPart: 0x1234_5678,
|
|
HighPart: 0x0000_0009,
|
|
};
|
|
assert_eq!(pack_luid(l), (0x9i64 << 32) | 0x1234_5678);
|
|
}
|
|
|
|
#[test]
|
|
fn gdi_name_match() {
|
|
let mut buf = [0u16; 32];
|
|
for (i, c) in r"\\.\DISPLAY3".encode_utf16().enumerate() {
|
|
buf[i] = c;
|
|
}
|
|
assert!(gdi_name_matches(&buf, r"\\.\DISPLAY3"));
|
|
assert!(!gdi_name_matches(&buf, r"\\.\DISPLAY1"));
|
|
}
|
|
|
|
#[test]
|
|
fn depad_removes_row_padding() {
|
|
// 2x2 BGRA, pitch = 12 (row=8 + 4 pad bytes).
|
|
let pitch = 12;
|
|
let mut src = vec![0u8; pitch * 2];
|
|
for y in 0..2 {
|
|
for x in 0..8 {
|
|
src[y * pitch + x] = (y * 8 + x) as u8;
|
|
}
|
|
}
|
|
let out = depad_bgra(&src, pitch, 2, 2);
|
|
assert_eq!(out.len(), 16);
|
|
assert_eq!(&out[0..8], &[0, 1, 2, 3, 4, 5, 6, 7]);
|
|
assert_eq!(&out[8..16], &[8, 9, 10, 11, 12, 13, 14, 15]);
|
|
}
|
|
}
|