All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL v2 00/30] pci, vhost, virtio, iommu: bugfixes
@ 2026-07-27 19:19 Michael S. Tsirkin
  2026-07-27 19:19 ` [PULL v2 01/30] virtio: use masked features with set_features_ex Michael S. Tsirkin
                   ` (30 more replies)
  0 siblings, 31 replies; 34+ messages in thread
From: Michael S. Tsirkin @ 2026-07-27 19:19 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

changes from v1:
- added a patch by Stefan
- attribution tag tweaks

The following changes since commit 300438ffbb8d9430cac2fcc15cba6f482b2c0587:

  Merge tag 'pull-trivial-patches' of https://gitlab.com/mjt0k/qemu into staging (2026-07-24 09:13:49 -0400)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream

for you to fetch changes up to 6682ea3391277e732a6d74c5758206ba834e1615:

  virtio: avoid packed vring virtio_queue_empty() infinite loops (CVE-2026-16457) (2026-07-27 15:14:16 -0400)

----------------------------------------------------------------
pci, vhost, virtio, iommu: bugfixes

Fixes all over the place, including a bunch of CVE fixes.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

----------------------------------------------------------------
Clément MATHIEU--DRIF (1):
      intel_iommu: Check address mask before using it in pasid-based iotlb invalidation

GuoHan Zhao (1):
      hw/virtio/vdpa-dev: pass set_config buffer to vhost backend

Haotian Jiang (1):
      hw/cxl: fix OOB access in cxl_doe_cdat_rsp via entry_handle

Laurent Vivier (4):
      hw/virtio: reject zero-length packed indirect descriptor table
      hw/net/virtio-net: Protect from DMA re-entrancy bugs
      hw/virtio-rng: Fix host use-after-free (CVE-2026-50624)
      backends/rng: cap request size to avoid oversized allocation

Manos Pitsidianakis (2):
      virtio-snd: check rx buffer descriptor size
      virtio-snd: check for overflow before g_malloc0

Michael S. Tsirkin (17):
      virtio: use masked features with set_features_ex
      virtio-net: fix OOB read in RSC receive path
      virtio-net: fix short frame OOB read in receive_filter()
      libvhost-user: protect against OOB writes in vu_set_inflight_fd
      libvhost-user: protect against OOB vring queue access
      vhost: do not crash on ring map failure
      virtio-scsi: fix SCSIRequest leak on a bad request
      virtio-mmio: fix QUEUE_NUM_MAX
      virtio: fix queue size validation against allocated maximum
      virtio: stop migrating num_default, validate vring.num on load
      virtio: fail early on bad config_len in migration
      vhost-user: assert nregions within limit
      virtio-pmem: wait for flush requests on unrealize
      libvhost-user: validate last_batch_head in vu_check_queue_inflights
      libvhost-user: fix heap overflow in vu_check_queue_inflights
      libvduse: validate vq size
      virtio-iommu: fix OOM due to unbounded call_rcu

Peter Maydell (3):
      hw/pci-host/q35.c: Always initialize smram-region even if SMM disabled
      hw/pci-host/q35.c: Factor out creation of SMRAM MRs
      hw/pci-host/q35.c: Avoid early return in mch_write_config()

Stefan Hajnoczi (1):
      virtio: avoid packed vring virtio_queue_empty() infinite loops (CVE-2026-16457)

 include/hw/scsi/scsi.h                    |   1 +
 include/hw/virtio/virtio-bus.h            |   1 +
 include/hw/virtio/virtio-iommu.h          |   1 +
 include/hw/virtio/virtio-mmio.h           |   1 +
 include/hw/virtio/virtio-pmem.h           |   1 +
 include/system/rng.h                      |  14 ++++
 backends/rng.c                            |  21 +++++-
 hw/audio/virtio-snd.c                     |  24 +++++--
 hw/core/machine.c                         |   1 +
 hw/i386/intel_iommu.c                     |   9 +++
 hw/mem/cxl_type3.c                        |   3 +
 hw/net/virtio-net.c                       |  25 ++++++-
 hw/pci-bridge/cxl_upstream.c              |   3 +
 hw/pci-host/q35.c                         | 110 ++++++++++++++++--------------
 hw/scsi/scsi-bus.c                        |   7 ++
 hw/scsi/virtio-scsi.c                     |   2 +
 hw/virtio/vdpa-dev.c                      |   2 +-
 hw/virtio/vhost-user.c                    |   3 +
 hw/virtio/vhost.c                         |   5 +-
 hw/virtio/virtio-iommu.c                  |  29 ++++++++
 hw/virtio/virtio-mmio.c                   |   7 +-
 hw/virtio/virtio-pmem.c                   |  17 ++++-
 hw/virtio/virtio-rng.c                    |   2 +
 hw/virtio/virtio.c                        |  47 +++++++++----
 subprojects/libvduse/libvduse.c           |   5 ++
 subprojects/libvhost-user/libvhost-user.c |  61 ++++++++++++++++-
 26 files changed, 317 insertions(+), 85 deletions(-)



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

end of thread, other threads:[~2026-07-28 11:42 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-27 19:19 [PULL v2 00/30] pci, vhost, virtio, iommu: bugfixes Michael S. Tsirkin
2026-07-27 19:19 ` [PULL v2 01/30] virtio: use masked features with set_features_ex Michael S. Tsirkin
2026-07-28  7:26   ` Paolo Abeni
2026-07-27 19:19 ` [PULL v2 02/30] virtio-net: fix OOB read in RSC receive path Michael S. Tsirkin
2026-07-27 19:19 ` [PULL v2 03/30] virtio-net: fix short frame OOB read in receive_filter() Michael S. Tsirkin
2026-07-27 19:19 ` [PULL v2 04/30] libvhost-user: protect against OOB writes in vu_set_inflight_fd Michael S. Tsirkin
2026-07-27 19:19 ` [PULL v2 05/30] libvhost-user: protect against OOB vring queue access Michael S. Tsirkin
2026-07-27 19:19 ` [PULL v2 06/30] hw/virtio: reject zero-length packed indirect descriptor table Michael S. Tsirkin
2026-07-27 19:19 ` [PULL v2 07/30] vhost: do not crash on ring map failure Michael S. Tsirkin
2026-07-27 19:19 ` [PULL v2 08/30] virtio-scsi: fix SCSIRequest leak on a bad request Michael S. Tsirkin
2026-07-27 19:19 ` [PULL v2 09/30] virtio-mmio: fix QUEUE_NUM_MAX Michael S. Tsirkin
2026-07-28  8:40   ` Michael Tokarev
2026-07-27 19:19 ` [PULL v2 10/30] virtio: fix queue size validation against allocated maximum Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 11/30] virtio: stop migrating num_default, validate vring.num on load Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 12/30] virtio: fail early on bad config_len in migration Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 13/30] vhost-user: assert nregions within limit Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 14/30] virtio-pmem: wait for flush requests on unrealize Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 15/30] libvhost-user: validate last_batch_head in vu_check_queue_inflights Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 16/30] libvhost-user: fix heap overflow " Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 17/30] libvduse: validate vq size Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 18/30] virtio-iommu: fix OOM due to unbounded call_rcu Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 19/30] virtio-snd: check rx buffer descriptor size Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 20/30] virtio-snd: check for overflow before g_malloc0 Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 21/30] hw/pci-host/q35.c: Always initialize smram-region even if SMM disabled Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 22/30] hw/pci-host/q35.c: Factor out creation of SMRAM MRs Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 23/30] hw/pci-host/q35.c: Avoid early return in mch_write_config() Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 24/30] hw/virtio/vdpa-dev: pass set_config buffer to vhost backend Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 25/30] hw/cxl: fix OOB access in cxl_doe_cdat_rsp via entry_handle Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 26/30] intel_iommu: Check address mask before using it in pasid-based iotlb invalidation Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 27/30] hw/net/virtio-net: Protect from DMA re-entrancy bugs Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 28/30] hw/virtio-rng: Fix host use-after-free (CVE-2026-50624) Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 29/30] backends/rng: cap request size to avoid oversized allocation Michael S. Tsirkin
2026-07-27 19:20 ` [PULL v2 30/30] virtio: avoid packed vring virtio_queue_empty() infinite loops (CVE-2026-16457) Michael S. Tsirkin
2026-07-28 11:42 ` [PULL v2 00/30] pci, vhost, virtio, iommu: bugfixes Stefan Hajnoczi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.