Hardware-based Process Isolation
Definition
Preventing one process from writing to the memory space of another process through hardware based address manager implementations.
Synonyms: Virtualization .How it works
Process isolation, in this context, is address space separation controlled by a security function that limits the communication between processes so that one process cannot directly modify the executing code of another process. For example with virtual address space:
- Process A address space is different from process B address space, which prevents process A from writing to process B
Hardware process isolation is commonly implemented through Direct Memory Access (DMA) which collaborates with a Memory Management Unit (MMU), or Input-Output Memory Management Unit (IOMMU). These hardware controls are deployed directly on processors to aid hosts or enclaves in process isolation.
- DMA - Direct memory access allows memory access to occur independently of the program currently run by the microprocessor. DMA allows for I/O devices to directly read from and write to memory, or it can be used to efficiently copy blocks of memory. During DMA transfers, the microprocessor can execute an unrelated program.
- MMU - A memory management unit acts as an access control and is responsible for performing the translation of virtual memory addresses to physical memory addresses. The MMU allocates each process its own virtual memory space.
- IOMMU - An input-output memory management unit is used to allocate each I/O device its own virtual address space to the underlying physical addresses. IOMMU allows devices that do not support long memory addresses to address the entire memory space.
Considerations
- Private hosts may be vulnerable to DMA attack if they have a PCI or PCI Express port that connects attached devices directly to physical address space.
Implementations:
- Intel Virtualization Technology for Directed I/O (Intel VT-d)
- Firecracker
References
The following references were used to develop the Hardware-based Process Isolation knowledge-base article.
(Note: the consideration of references does not imply specific functionality exists in an offering.)