Emulate Privileged Access Never (PAN)
An XCCDF Rule
Description
Enabling this option prevents the kernel from accessing user-space memory directly by pointing TTBR0_EL1 to a reserved zeroed area and reserved ASID. The user access routines restore the valid TTBR0_EL1 temporarily. This configuration is available from kernel 4.10, but may be available if backported by distros. The configuration that was used to build kernel is available at/boot/config-*
.
To check the configuration value for CONFIG_ARM64_SW_TTBR0_PAN
, run the following command:
grep CONFIG_ARM64_SW_TTBR0_PAN /boot/config-*
For each kernel installed, a line with value "y" should be returned.
warning alert: Warning
There is no remediation for this besides re-compiling the kernel with the appropriate value for the config.
Rationale
The Privileged Access Never (PAN) is the ARM equivalent of the x86 Supervisor Mode Access Prevention (SMAP), and it prevents privileged acccess to user data unless explicitly enabled.
- ID
- xccdf_org.ssgproject.content_rule_kernel_config_arm64_sw_ttbr0_pan
- Severity
- Medium
- References
- Updated