qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/2] Final s390x patches for 2018
@ 2018-12-20 16:44 Cornelia Huck
  2018-12-20 16:44 ` [Qemu-devel] [PULL 1/2] hw/s390/ccw.c: Don't take address of packed members Cornelia Huck
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Cornelia Huck @ 2018-12-20 16:44 UTC (permalink / raw)
  To: Peter Maydell; +Cc: qemu-s390x, qemu-devel, Cornelia Huck

The following changes since commit b72566a4ffaddbc0c0c1f6f5ee91b42ab13ff429:

  Merge remote-tracking branch 'remotes/vivier2/tags/trivial-patches-pull-request' into staging (2018-12-19 15:31:02 +0000)

are available in the Git repository at:

  https://github.com/cohuck/qemu tags/s390x-20181220

for you to fetch changes up to aba7a5a2de3dba5917024df25441f715b9249e31:

  hw/s390x: Fix bad mask in time2tod() (2018-12-20 17:07:24 +0100)

----------------------------------------------------------------
Two s390x bugfixes.

----------------------------------------------------------------

Peter Maydell (1):
  hw/s390/ccw.c: Don't take address of packed members

Thomas Huth (1):
  hw/s390x: Fix bad mask in time2tod()

 hw/s390x/css.c         | 32 ++++++++++++++++++++++++++------
 include/hw/s390x/tod.h |  2 +-
 2 files changed, 27 insertions(+), 7 deletions(-)

-- 
2.17.2

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Qemu-devel] [PULL 1/2] hw/s390/ccw.c: Don't take address of packed members
  2018-12-20 16:44 [Qemu-devel] [PULL 0/2] Final s390x patches for 2018 Cornelia Huck
@ 2018-12-20 16:44 ` Cornelia Huck
  2018-12-20 16:44 ` [Qemu-devel] [PULL 2/2] hw/s390x: Fix bad mask in time2tod() Cornelia Huck
  2018-12-21 14:05 ` [Qemu-devel] [PULL 0/2] Final s390x patches for 2018 Peter Maydell
  2 siblings, 0 replies; 4+ messages in thread
From: Cornelia Huck @ 2018-12-20 16:44 UTC (permalink / raw)
  To: Peter Maydell; +Cc: qemu-s390x, qemu-devel, Cornelia Huck

From: Peter Maydell <peter.maydell@linaro.org>

Taking the address of a field in a packed struct is a bad idea, because
it might not be actually aligned enough for that pointer type (and
thus cause a crash on dereference on some host architectures). Newer
versions of clang warn about this.

Avoid the problem by using local copies of the PMCW and SCSW
struct fields in copy_schib_from_guest() and copy_schib_to_guest().

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20181213120252.21697-1-peter.maydell@linaro.org>
Reviewed-by: Farhan Ali <alifm@linux.ibm.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
---
 hw/s390x/css.c | 32 ++++++++++++++++++++++++++------
 1 file changed, 26 insertions(+), 6 deletions(-)

diff --git a/hw/s390x/css.c b/hw/s390x/css.c
index 04ec5cc970..f92b046cd3 100644
--- a/hw/s390x/css.c
+++ b/hw/s390x/css.c
@@ -1290,9 +1290,19 @@ void copy_scsw_to_guest(SCSW *dest, const SCSW *src)
 static void copy_schib_to_guest(SCHIB *dest, const SCHIB *src)
 {
     int i;
-
-    copy_pmcw_to_guest(&dest->pmcw, &src->pmcw);
-    copy_scsw_to_guest(&dest->scsw, &src->scsw);
+    /*
+     * We copy the PMCW and SCSW in and out of local variables to
+     * avoid taking the address of members of a packed struct.
+     */
+    PMCW src_pmcw, dest_pmcw;
+    SCSW src_scsw, dest_scsw;
+
+    src_pmcw = src->pmcw;
+    copy_pmcw_to_guest(&dest_pmcw, &src_pmcw);
+    dest->pmcw = dest_pmcw;
+    src_scsw = src->scsw;
+    copy_scsw_to_guest(&dest_scsw, &src_scsw);
+    dest->scsw = dest_scsw;
     dest->mba = cpu_to_be64(src->mba);
     for (i = 0; i < ARRAY_SIZE(dest->mda); i++) {
         dest->mda[i] = src->mda[i];
@@ -1339,9 +1349,19 @@ static void copy_scsw_from_guest(SCSW *dest, const SCSW *src)
 static void copy_schib_from_guest(SCHIB *dest, const SCHIB *src)
 {
     int i;
-
-    copy_pmcw_from_guest(&dest->pmcw, &src->pmcw);
-    copy_scsw_from_guest(&dest->scsw, &src->scsw);
+    /*
+     * We copy the PMCW and SCSW in and out of local variables to
+     * avoid taking the address of members of a packed struct.
+     */
+    PMCW src_pmcw, dest_pmcw;
+    SCSW src_scsw, dest_scsw;
+
+    src_pmcw = src->pmcw;
+    copy_pmcw_from_guest(&dest_pmcw, &src_pmcw);
+    dest->pmcw = dest_pmcw;
+    src_scsw = src->scsw;
+    copy_scsw_from_guest(&dest_scsw, &src_scsw);
+    dest->scsw = dest_scsw;
     dest->mba = be64_to_cpu(src->mba);
     for (i = 0; i < ARRAY_SIZE(dest->mda); i++) {
         dest->mda[i] = src->mda[i];
-- 
2.17.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Qemu-devel] [PULL 2/2] hw/s390x: Fix bad mask in time2tod()
  2018-12-20 16:44 [Qemu-devel] [PULL 0/2] Final s390x patches for 2018 Cornelia Huck
  2018-12-20 16:44 ` [Qemu-devel] [PULL 1/2] hw/s390/ccw.c: Don't take address of packed members Cornelia Huck
@ 2018-12-20 16:44 ` Cornelia Huck
  2018-12-21 14:05 ` [Qemu-devel] [PULL 0/2] Final s390x patches for 2018 Peter Maydell
  2 siblings, 0 replies; 4+ messages in thread
From: Cornelia Huck @ 2018-12-20 16:44 UTC (permalink / raw)
  To: Peter Maydell
  Cc: qemu-s390x, qemu-devel, Thomas Huth, qemu-stable, Cornelia Huck

From: Thomas Huth <thuth@redhat.com>

Since "s390x/tcg: avoid overflows in time2tod/tod2time", the
time2tod() function tries to deal with the 9 uppermost bits in the
time value, but uses the wrong mask for this: 0xff80000000000000 should
be used instead of 0xff10000000000000 here.

Fixes: 14055ce53c2d901d826ffad7fb7d6bb8ab46bdfd
Cc: qemu-stable@nongnu.org
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-Id: <1544792887-14575-1-git-send-email-thuth@redhat.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
[CH: tweaked commit message]
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
---
 include/hw/s390x/tod.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/hw/s390x/tod.h b/include/hw/s390x/tod.h
index cbd7552e7a..47ef9de869 100644
--- a/include/hw/s390x/tod.h
+++ b/include/hw/s390x/tod.h
@@ -56,7 +56,7 @@ typedef struct S390TODClass {
 /* Converts ns to s390's clock format */
 static inline uint64_t time2tod(uint64_t ns)
 {
-    return (ns << 9) / 125 + (((ns & 0xff10000000000000ull) / 125) << 9);
+    return (ns << 9) / 125 + (((ns & 0xff80000000000000ull) / 125) << 9);
 }
 
 /* Converts s390's clock format to ns */
-- 
2.17.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PULL 0/2] Final s390x patches for 2018
  2018-12-20 16:44 [Qemu-devel] [PULL 0/2] Final s390x patches for 2018 Cornelia Huck
  2018-12-20 16:44 ` [Qemu-devel] [PULL 1/2] hw/s390/ccw.c: Don't take address of packed members Cornelia Huck
  2018-12-20 16:44 ` [Qemu-devel] [PULL 2/2] hw/s390x: Fix bad mask in time2tod() Cornelia Huck
@ 2018-12-21 14:05 ` Peter Maydell
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Maydell @ 2018-12-21 14:05 UTC (permalink / raw)
  To: Cornelia Huck; +Cc: qemu-s390x, QEMU Developers

On Thu, 20 Dec 2018 at 16:44, Cornelia Huck <cohuck@redhat.com> wrote:
>
> The following changes since commit b72566a4ffaddbc0c0c1f6f5ee91b42ab13ff429:
>
>   Merge remote-tracking branch 'remotes/vivier2/tags/trivial-patches-pull-request' into staging (2018-12-19 15:31:02 +0000)
>
> are available in the Git repository at:
>
>   https://github.com/cohuck/qemu tags/s390x-20181220
>
> for you to fetch changes up to aba7a5a2de3dba5917024df25441f715b9249e31:
>
>   hw/s390x: Fix bad mask in time2tod() (2018-12-20 17:07:24 +0100)
>
> ----------------------------------------------------------------
> Two s390x bugfixes.
>
> ----------------------------------------------------------------
>
> Peter Maydell (1):
>   hw/s390/ccw.c: Don't take address of packed members
>
> Thomas Huth (1):
>   hw/s390x: Fix bad mask in time2tod()
>
>  hw/s390x/css.c         | 32 ++++++++++++++++++++++++++------
>  include/hw/s390x/tod.h |  2 +-
>  2 files changed, 27 insertions(+), 7 deletions(-)
>

Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.0
for any user-visible changes.

-- PMM

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-12-21 14:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-20 16:44 [Qemu-devel] [PULL 0/2] Final s390x patches for 2018 Cornelia Huck
2018-12-20 16:44 ` [Qemu-devel] [PULL 1/2] hw/s390/ccw.c: Don't take address of packed members Cornelia Huck
2018-12-20 16:44 ` [Qemu-devel] [PULL 2/2] hw/s390x: Fix bad mask in time2tod() Cornelia Huck
2018-12-21 14:05 ` [Qemu-devel] [PULL 0/2] Final s390x patches for 2018 Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).