|
|
|
|
|
by akiselev
3387 days ago
|
|
Linux namespaces/containers create a memory page table completely separate from the host's so barring vulnerabilities in the container implementation that allow mapping host physical memory to guest virtual, isolation is strictly enforced by the memory controller in the hardware. Without an exploit, the worst case scenario is leaking shared library read-only sections across containers (since the physical memory might be shared for a smaller container footprint, although i don't know if LXC supports that yet). |
|
Each _process_ has its own memory page table. Containers are built out of processes, so they inherit this attribute.
Namespaces have nothing to do with it.