I came across the LDTR ARMv8 instruction today for the first time.
I read its description on the ARMv8 DB manual section C3.2.5 "Load/Store unprivileged", and from what I understood it basically allows EL1 to make memory accesses with EL0 restrictions.
What is the application for this feature?
Is this something along the lines of making it harder to create an attack that uses a kernel bug to make the kernel write data to the wrong address?
How does LDTR know which page table translations to use, considering that there are generally multiple process running at the same time? Or do those restrictions refer to other types of permissions unrelated to that which is specified on page tables?