]> git.proxmox.com Git - mirror_qemu.git/commitdiff
tests/virtio-9p-test: Don't call le*_to_cpus on fields of packed struct
authorPeter Maydell <peter.maydell@linaro.org>
Mon, 27 Mar 2017 17:59:04 +0000 (18:59 +0100)
committerGreg Kurz <groug@kaod.org>
Mon, 27 Mar 2017 19:15:31 +0000 (21:15 +0200)
For a packed struct like 'P9Hdr' the fields within it may not be
aligned as much as the natural alignment for their types.  This means
it is not valid to pass the address of such a field to a function
like le32_to_cpus() which operate on uint32_t* and assume alignment.
Doing this results in a SIGBUS on hosts like SPARC which have strict
alignment requirements.

Use ldl_le_p() instead, which is specified to correctly handle
unaligned pointers.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Greg Kurz <groug@kaod.org>
Signed-off-by: Greg Kurz <groug@kaod.org>
tests/virtio-9p-test.c

index 43a1ad813fdaf41226b614c9865879ea7365984a..ad33d963876fd32576062c01e2975909109f5a17 100644 (file)
@@ -256,8 +256,8 @@ static void v9fs_req_recv(P9Req *req, uint8_t id)
         qvirtio_wait_queue_isr(v9p->dev, v9p->vq, 1000 * 1000);
 
         v9fs_memread(req, &hdr, 7);
-        le32_to_cpus(&hdr.size);
-        le16_to_cpus(&hdr.tag);
+        hdr.size = ldl_le_p(&hdr.size);
+        hdr.tag = lduw_le_p(&hdr.tag);
         if (hdr.size >= 7) {
             break;
         }