x86: only allow real mode to access 32bit without LMA
commit33dfdb56f2f3c8686d218395b871ec12fd5bf30b
authorAlexander Graf <agraf@suse.de>
Fri, 6 Dec 2013 12:52:24 +0000 (6 13:52 +0100)
committerMichael Tokarev <mjt@tls.msk.ru>
Mon, 23 Dec 2013 12:02:20 +0000 (23 16:02 +0400)
tree2d063efdf7f84c2ce4598b68d267bc8155cf5f29
parent0d9e61c2619eeead4de6afa8fedec2ad9311b642
x86: only allow real mode to access 32bit without LMA

When we're running in non-64bit mode with qemu-system-x86_64 we can
still end up with virtual addresses that are above the 32bit boundary
if a segment offset is set up.

GNU Hurd does exactly that. It sets the segment offset to 0x80000000 and
puts its EIP value to 0x8xxxxxxx to access low memory.

This doesn't hit us when we enable paging, as there we just mask away the
unused bits. But with real mode, we assume that vaddr == paddr which is
wrong in this case. Real hardware wraps the virtual address around at the
32bit boundary. So let's do the same.

This fixes booting GNU Hurd in qemu-system-x86_64 for me.

Reported-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Alexander Graf <agraf@suse.de>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
target-i386/helper.c