SKAS or TT mode
Which mode do you run UML in
SKAS or TT
Adam
3 Replies
I just read on a site that alot of people run UML in TT mode and it is alot slower than the SKAS mode.
Adam
Separate Kernel Address Space, or SKAS mode separates kernel and user-space into two processes on the host per UML (plus an ubd driver asynchronous IO thread and write SIGIO emulation thread). Thus, the user-space process can't access the kernel process's memory, which increases security for one thing).
Here are some snippets from Jeff's SKAS
> In short, the changes cause the UML kernel to run in an entirely different host address space from its processes. This solves the security and honeypot fingerprinting problems by making the UML kernel totally inaccessible to UML processes. Their address spaces are identical to what they would be on the host. This also provides a noticable speedup by eliminating the signal delivery that used to happen for every UML system call.
-Chris