ARM TrustZone's Secure/Normal world vs. OS's kernel/user mode or x86's Ring0/1/2/3?

為{幸葍}努か 提交于 2020-12-29 04:53:11

问题


I read document like this TrustZone Security Whitepaper.

It describles that all resources like CPU, memory and others are divided by Secure World and Normal World. Programs in Normal World can not access resources in Secure World. You must call a special instrustion SMC to switch from Normal to Secure world (go through Monitor Mode).

As I know, modern OS like Linux provides Kernel Mode and User Mode. User processes can not access resources located in kernel space, but invoke system calls.

I also know x86's Ring0/1/2/3 can protect resources from invalid access from lower privilege level processes.

My question is what is the difference between ARM TrustZone's Secure/Normal World and kernel/user mode. Or what is the difference between TrustZone and x86's ring0/1/2/3?

Thanks

Edit Question: Replace Protected Mode with Ring0/1/2/3 in my question.


Thanks for your help. I spent some time to understand and read more documents. Summary, TZ provides insulation of resources by NS bit flags on bus, peripheral, and CPU.


回答1:


You've conflated 3 totally different things here.

Kernel mode/user mode is about execution privilege: x86 uses the terminology of "rings", whereas ARM has privilege levels baked into its processor modes - you can draw a rough parallel between ring 3 and USR mode, and ring 0 and SVC mode (obviously architectural differences mean it's nowhere near that straightforward really).

Memory protection is a different concept, involving having hardware bolted to the CPU to restrict its memory and MMIO accesses to within defined mappings, or raise faults otherwise (which then enables further developments like demand-paged virtual memory). In this regard, "Protected mode" vs. "Real mode" on x86 is pretty much just the equivalent of having the MMU/MPU turned on or off. Obviously it makes plenty of sense to couple this idea with the first, to allow the notion of privileged/unprivileged memory, but the x86 architecture and its evolutionary heritage makes that coupling artificially strong - on ARM you still have all your processor modes when the MMU is off.

TrustZone, on the other hand, is about security and authentication at a whole different level - between the system vendor/operator and the user. On x86 systems you typically might have a hardware TPM for things like secure key storage or boot verification - anything the main processor can access cannot be considered secure since the user could replace any software running there (the normal execution privilege mechanism doesn't help since the user can simply switch the whole kernel for a malicious one). The point of TrustZone is hardware support throughout the whole system which enables virtualising that secure processor/memory/peripherals on top of the "normal" system, instead of needing to cram in a whole load of extra hardware for it. For example, you can simply partition off a chunk of RAM to be physically* inaccessible from the normal world, and implement a "TPM" purely as verified secure-world software which even the most privileged normal-world code cannot interfere with.

In x86-world, you should look at Intel's Trusted Execution Technology as the closest relevant thing, which addresses (given external TPM support) some of the use-cases for which TrustZone is employed in ARM SoCs. Note that it's not a direct comparison - the CPU-centric nature of TXT means it's really just a secure boot solution. TrustZone is system-wide and more of a fundamental building block - you can build a secure boot solution and/or a TPM on it, but you can also build things like end-to-end secure content paths which a CPU-centric approach simply cannot.

* note that I mean "physical" from the software point of view - i.e. it is in hardware and there is nothing software can do to get around it if it is properly implemented. TrustZone is explicitly not an actual physical security solution - it does not, and is not intended to, offer any protection against determined people taking the packaging off the chip and probing the silicon directly.




回答2:


This question may already be answered in handling ARM Trust-zone.

My question is what is the difference between ARM TrustZone's Secure/Normal World and kernel/user mode. Or what is the difference between TrustZone and x86's protected mode?

The x86 feature you need to parallel is probably IOMMU. There is a DMA Attack that can side-step a hyper-visor. You may strictly control the peripherals that can be accessed via a hyper-visor. A hyper-visor can be viewed as code that lets an OS run in a lower level mode. Ie, you could run Linux in user mode and many things would function properly. The mmu sub-system needs to be re-written if there is no hardware support.

The out of the DMA attack is to use a peripheral DMA which does not have access checked by an MMU. So, the hyper-visor may allow you to change a frame buffer location. You could then point the frame-buffer to some physical memory containing a DRM key.

The difference between the IOMMU and TrustZone is the position of the protection. The wikipedia drawing does not show the bus controller. With IOMMU, the protection lays in the DMA device. With TrustZone, each DMA master and slave has access rights (like an MMU in a hypervisor). TrustZone is limited to either secure or normal. A secure peripheral can only be accessed by a secure master; a master is either a CPU or a device which does DMA.

Some boot code must configure (and possibly lock) the slave and master permissions. The protection exists in the bus controller. The ARM CPU portion of TrustZone is only whether the CPU will indicate that it is running in secure or the normal world; people read the CPU documentation and assume it is the full story when it is not.

Typically the DMA master (think Ethernet controller, USB controller, LCD controller) have a set of slave registers that the CPU configures. Then these slave registers instruct a DMA machine to do some memory activity on behalf of the CPU. If we have a normal DMA master (say Ethernet), then the peripheral register for that device should also be normal (we cannot setup a TCP/IP transfer of some DRM key). So TrustZone is a mechanism to partition the bus into a secure and normal world. The protection is really done outside the CPU. The ARM CPU support is only to allow code to dynamically switch worlds through the monitior mode.

Aside: Apparently the AMD CPU I just bought contains a Cortex-A5 with TrustZone. I think it is part of the UEFI infrastructure. I like to think of my new CPU as a Quad-Core x86 assisting the ARM ;)



来源:https://stackoverflow.com/questions/27360019/arm-trustzones-secure-normal-world-vs-oss-kernel-user-mode-or-x86s-ring0-1-2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!