惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
J
Java Code Geeks
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
腾讯CDC
IT之家
IT之家
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
U
Unit 42
爱范儿
爱范儿
博客园 - 聂微东
F
Fortinet All Blogs
V
Visual Studio Blog
Blog — PlanetScale
Blog — PlanetScale
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
L
LangChain Blog
雷峰网
雷峰网
B
Blog RSS Feed
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Engineering at Meta
Engineering at Meta
H
Hackread – Cybersecurity News, Data Breaches, AI and More

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Part 3: The Foundation — IOMMU and Security Isolation
Deleon Karen · 2026-06-02 · via DEV Community

In the previous "Architecture" chapter, we learned how GPU-P achieves resource sharing through the clever division of labor between the Host and Guest. However, in cloud computing and virtualization environments, simply being "usable" and "shareable" is far from enough. Security is always the Sword of Damocles hanging over the head of virtualization.

If the GPU-P architecture is a building that allows multiple tenants to move in, then IOMMU is the security door customized for each tenant. Today, we will unveil the cornerstone of GPU-P's underlying security isolation.

The Necessity of Isolation: Guarding Against Deadly DMA Attacks

As we all know, GPUs are high-speed peripherals connected to the system via the PCIe bus. In pursuit of ultimate performance, GPUs heavily rely on DMA (Direct Memory Access) technology. With DMA, the GPU can read from and write to the system's main memory (physical memory) directly across the bus without CPU intervention.

In a standalone environment, this is not a problem. But in a virtualized environment (like GPU-P), it becomes a huge security risk:
Suppose a malicious user gains control of a GPU Virtual Function (VF) within a Virtual Machine (Guest). They could craft malicious hardware commands, instructing the GPU's DMA engine to read physical memory that does not belong to that virtual machine. If they were to read the Host's core data, encryption keys, or the memory of other tenant VMs, the consequences would be catastrophic.

To prevent this kind of "unauthorized access," relying solely on software-level interception is insufficient. We must establish a physical barrier at the hardware bus level.

The Role of IOMMU: A "Logical Maze" for Physical Memory

This is where the IOMMU (Input/Output Memory Management Unit) takes the stage.

You can think of the IOMMU as a specialized MMU for peripherals (I/O devices). The CPU relies on the MMU to map virtual addresses to physical addresses, while the IOMMU is responsible for DMA Remapping for peripherals.

In GPU-P, the IOMMU works as follows:

  1. Domain Division: The Host's Dxgkrnl (DirectX Graphics Kernel) creates an independent IOMMU Domain for each logical adapter (the instance assigned to a virtual machine) on the system.
  2. Logical Address Spoofing: The Host operating system no longer exposes real physical addresses to the GPU; instead, it provides logical addresses managed by the IOMMU.
  3. Hardware-Level Interception: When a VM's GPU VF attempts to initiate a DMA read or write via the PCIe bus, the request is intercepted by the IOMMU. The IOMMU checks if this logical address is valid and converts it to the real physical address.
  4. Blocking on Violation: If a malicious Guest tries to access a logical address not assigned to it, the IOMMU cannot complete the translation and will directly block this PCIe transaction at the hardware level, thus protecting the absolute security of the Host's and other VMs' memory.

Silence Protocol: The Danger of Domain Switching

While powerful, the IOMMU has a fatal weakness when switching protection domains (Domain Switch): the attach and detach operations of a domain are not atomic at the hardware level.

Imagine this: Dxgkrnl is in the background altering the IOMMU mapping tables, while the GPU is furiously writing data to memory. Since the mapping table is in an intermediate state, a PCIe translation error is very likely to occur, directly crashing the entire system (Blue Screen/Bug Check).

To resolve this race condition, WDDM introduced the Silence Protocol. The Host graphics driver (KMD) must implement a pair of extremely critical DDIs (Device Driver Interfaces):

  • DxgkDdiBeginExclusiveAccess
  • DxgkDdiEndExclusiveAccess

Execution Flow:

  1. Before an IOMMU domain switch occurs, Dxgkrnl pauses the scheduler, flushes all active workloads, ensuring no new tasks are sent to the hardware.
  2. Dxgkrnl calls DxgkDdiBeginExclusiveAccess, notifying the KMD: "I'm about to touch the IOMMU, tell your hardware to be quiet!"
  3. Upon receiving the instruction, the KMD must ensure the GPU hardware remains absolutely silent during this period—no reading from or writing to system memory, even hardware interrupts can be masked.
  4. Dxgkrnl safely completes the IOMMU domain switch.
  5. Dxgkrnl calls DxgkDdiEndExclusiveAccess, lifting the silence, and the GPU resumes normal operation.

Secure VM: Stringent Admission Criteria

In scenarios with extremely high security requirements (such as Windows Defender Application Guard or advanced security sandboxes), the operating system may launch a Secure VM.

For GPU instances assigned to a Secure VM, WDDM imposes mandatory admission and operational conditions:

  1. Mandatory IOMMU Isolation: If the driver does not support IoMmu isolation in its capability declaration (Caps), the Secure VM will directly refuse to create a GPU instance, resulting in startup failure. Here, there is no compromise on security.
  2. Banning Illegal Escape Calls: In traditional WDDM, a User-Mode Driver (UMD) can send private data packets to the Kernel-Mode Driver (KMD) via Escape calls. Since this is entirely a "black box," a malicious Guest could trigger vulnerabilities like buffer overflows in the Host's KMD by crafting malformed Escape packets.
    • In a Secure VM, conventional Escape calls are completely banned.
    • Only "Known Escapes" with the DriverKnownEscape flag, strictly defined and audited by the system, are permitted. This drastically reduces the attack surface for kernel privilege escalation.

Conclusion

Through the IOMMU's hardware-level DMA interception, the ingenious Silence Protocol, and the stringent communication restrictions for Secure VMs, Microsoft has built an impregnable defense line for GPU-P. It is precisely this foundational cornerstone that gives cloud service providers the confidence to partition the same expensive high-end GPU among multiple, unrelated tenants.

So far, we have understood the operational mechanism of GPU-P from both the macro-architectural and security foundation perspectives. For driver developers, how can existing code be modified to adapt to this complex virtualization mechanism?

In the next chapter, we will enter the practical realm and analyze: Driver Implementation — How Developers Adapt to GPU-P.


Next Chapter Preview: Driver Implementation — How Developers Adapt to GPU-P