]> rtime.felk.cvut.cz Git - lisovros/qemu_apohw.git/commitdiff
linux-user: Fix trampoline code for CRIS
authorStefan Weil <sw@weilnetz.de>
Sat, 1 Feb 2014 08:41:09 +0000 (09:41 +0100)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Fri, 21 Feb 2014 06:34:41 +0000 (00:34 -0600)
__put_user can write bytes, words (2 bytes) or longwords (4 bytes).
Here obviously words should have been written, but bytes were written,
so values like 0x9c5f were truncated to 0x5f.

Fix this by changing retcode from uint8_t to to uint16_t in
target_signal_frame and also in the unused rt_signal_frame.

This problem was reported by static code analysis (smatch).

Cc: qemu-stable@nongnu.org
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Acked-by: Riku Voipio <riku.voipio@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Tested-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
(cherry picked from commit 8cfc114a2f293c40077d1bdb7500b29db359ca22)

Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
linux-user/signal.c

index 7751c47ef14acb80ceab9e83e7ca1e5d17b4f9e2..544e77eac26c9615a9ef745a7c3e935fc0e07c57 100644 (file)
@@ -3653,7 +3653,7 @@ struct target_sigcontext {
 struct target_signal_frame {
         struct target_sigcontext sc;
         uint32_t extramask[TARGET_NSIG_WORDS - 1];
-        uint8_t retcode[8];       /* Trampoline code. */
+        uint16_t retcode[4];      /* Trampoline code. */
 };
 
 struct rt_signal_frame {
@@ -3661,7 +3661,7 @@ struct rt_signal_frame {
         void *puc;
         siginfo_t info;
         struct ucontext uc;
-        uint8_t retcode[8];       /* Trampoline code. */
+        uint16_t retcode[4];      /* Trampoline code. */
 };
 
 static void setup_sigcontext(struct target_sigcontext *sc, CPUCRISState *env)
@@ -3739,8 +3739,8 @@ static void setup_frame(int sig, struct target_sigaction *ka,
         */
        err |= __put_user(0x9c5f, frame->retcode+0);
        err |= __put_user(TARGET_NR_sigreturn, 
-                         frame->retcode+2);
-       err |= __put_user(0xe93d, frame->retcode+4);
+                         frame->retcode + 1);
+       err |= __put_user(0xe93d, frame->retcode + 2);
 
        /* Save the mask.  */
        err |= __put_user(set->sig[0], &frame->sc.oldmask);