linux-user: fix segmentation fault passing with h2g(x) != x
authorAlexander Graf <agraf@suse.de>
Sat, 6 Jul 2013 12:17:49 +0000 (14:17 +0200)
committerRiku Voipio <riku.voipio@linaro.org>
Tue, 23 Jul 2013 14:28:28 +0000 (17:28 +0300)
commit732f9e89a1c737f738c445ff24929a1bc137d1a9
tree59c38eafdb70fd6f6eb444c775b842af8185ffdf
parent82f05b69e6b701157b4a2e7d76ae6cf5542d66c9
linux-user: fix segmentation fault passing with h2g(x) != x

When forwarding a segmentation fault into the guest process, we were passing
the host's address directly into the guest process's signal descriptor.

That obviously confused the guest process, since it didn't know what to make
of the (usually 32-bit truncated) address. Passing in h2g(address) makes the
guest process a lot happier.

To make the code more obvious, introduce a h2g_nocheck() macro that does the
same as h2g(), but allows us to convert addresses that may be outside of guest
mapped range into the guest's view of address space.

This fixes java running in arm-linux-user for me.

Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
include/exec/cpu-all.h
user-exec.c