Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make PANDA changes to QEMU patchfiles instead of source #32

Closed
peterclemenko opened this issue Nov 23, 2014 · 3 comments
Closed

Make PANDA changes to QEMU patchfiles instead of source #32

peterclemenko opened this issue Nov 23, 2014 · 3 comments

Comments

@peterclemenko
Copy link

Moving the PANDA changes to QEMU to patchfiles would make it easier to update QEMU used by PANDA when needed, which will allow for more and better functionality in analysis.

Examples of new functionality that has been added to QEMU that isn't in PANDA includes things such as USB and PCI Passthrough support. Both of these things can be very useful when analyzing more advanced applications.

@peterclemenko
Copy link
Author

Also, if I can get a QEMU version tag that PANDA currently uses, I might be willing to help sift through and do the diffs myself. For my purposes, I really need to update QEMU, and the current implementation is going be a pain to upgrade.

@phulin
Copy link
Contributor

phulin commented Nov 23, 2014

The current version is 1.0.1.

On Saturday, November 22, 2014, aoighost notifications@github.com wrote:

Also, if I can get a QEMU version tag that PANDA currently uses, I might
be willing to help sift through and do the diffs myself. For my purposes, I
really need to update QEMU, and the current implementation is going be a
pain to upgrade.


Reply to this email directly or view it on GitHub
https://github.com/moyix/panda/issues/32#issuecomment-64105713.

Sent using a stone tablet and chisel. Please excuse the brevity.

@phulin
Copy link
Contributor

phulin commented Mar 16, 2015

Closing since I don't think this is easily fixable. We have some long-term plans to update the version of qemu, but record/replay is very finicky and very strongly tied to qemu internals. For reference, upgrading RR from 0.9.4 to 1.0.1 was about a summer's worth of full-time work for one person.

@phulin phulin closed this as completed Mar 16, 2015
@Archstacker Archstacker mentioned this issue Dec 7, 2015
AndrewFasano pushed a commit that referenced this issue Oct 16, 2023
Both virtio-blk and virtio-scsi use virtio_queue_empty() as the
loop condition in VQ handlers (virtio_blk_handle_vq,
virtio_scsi_handle_cmd_vq). When a device is marked broken in
virtqueue_pop, for example if a vIOMMU address translation failed, we
want to break out of the loop.

This fixes a hanging problem when booting a CentOS 3.10.0-862.el7.x86_64
kernel with ATS enabled:

  $ qemu-system-x86_64 \
    ... \
    -device intel-iommu,intremap=on,caching-mode=on,eim=on,device-iotlb=on \
    -device virtio-scsi-pci,iommu_platform=on,ats=on,id=scsi0,bus=pci.4,addr=0x0

The dead loop happens immediately when the kernel boots and initializes
the device, where virtio_scsi_data_plane_handle_cmd will not return:

    > ...
    > #13 0x00005586602b7793 in virtio_scsi_handle_cmd_vq
    > #14 0x00005586602b8d66 in virtio_scsi_data_plane_handle_cmd
    > #15 0x00005586602ddab7 in virtio_queue_notify_aio_vq
    > #16 0x00005586602dfc9f in virtio_queue_host_notifier_aio_poll
    > #17 0x00005586607885da in run_poll_handlers_once
    > #18 0x000055866078880e in try_poll_mode
    > #19 0x00005586607888eb in aio_poll
    > #20 0x0000558660784561 in aio_wait_bh_oneshot
    > #21 0x00005586602b9582 in virtio_scsi_dataplane_stop
    > #22 0x00005586605a7110 in virtio_bus_stop_ioeventfd
    > #23 0x00005586605a9426 in virtio_pci_stop_ioeventfd
    > #24 0x00005586605ab808 in virtio_pci_common_write
    > #25 0x0000558660242396 in memory_region_write_accessor
    > #26 0x00005586602425ab in access_with_adjusted_size
    > #27 0x0000558660245281 in memory_region_dispatch_write
    > #28 0x00005586601e008e in flatview_write_continue
    > #29 0x00005586601e01d8 in flatview_write
    > #30 0x00005586601e04de in address_space_write
    > #31 0x00005586601e052f in address_space_rw
    > #32 0x00005586602607f2 in kvm_cpu_exec
    > #33 0x0000558660227148 in qemu_kvm_cpu_thread_fn
    > #34 0x000055866078bde7 in qemu_thread_start
    > #35 0x00007f5784906594 in start_thread
    > #36 0x00007f5784639e6f in clone

With this patch, virtio_queue_empty will now return 1 as soon as the
vdev is marked as broken, after a "virtio: zero sized buffers are not
allowed" error.

To be consistent, update virtio_queue_empty_rcu as well.

Signed-off-by: Fam Zheng <famz@redhat.com>
Message-Id: <20180910145616.8598-2-famz@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants