linux-user/ppc: Fix msr updates for signal handling
authorRichard Henderson <richard.henderson@linaro.org>
Tue, 23 Mar 2021 18:43:39 +0000 (12:43 -0600)
committerDavid Gibson <david@gibson.dropbear.id.au>
Tue, 4 May 2021 01:41:25 +0000 (11:41 +1000)
commit75da499733696889453b3fda9ae0f0f5c28fcd6b
tree52d79d1212ab217d85909f61af076957004b00f0
parentd764184ddb22a7a41a293e54c26cfe1717167a3f
linux-user/ppc: Fix msr updates for signal handling

In save_user_regs, there are two bugs where we OR in a bit number
instead of the bit, clobbering the low bits of MSR.  However:

The MSR_VR and MSR_SPE bits control the availability of the insns.
If the bits were not already set in MSR, then any attempt to access
those registers would result in SIGILL.

For linux-user, we always initialize MSR to the capabilities
of the cpu.  We *could* add checks vs MSR where we currently
check insn_flags and insn_flags2, but we know they match.

Also, there's a stray cut-and-paste comment in restore.

Then, do not force little-endian binaries into big-endian mode.

Finally, use ppc_store_msr for the update to affect hflags.
Which is the reason none of these bugs were previously noticed.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20210323184340.619757-10-richard.henderson@linaro.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
linux-user/ppc/cpu_loop.c
linux-user/ppc/signal.c