qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/20] SCSI, build system patches for 2022-07-13
@ 2022-07-14  9:01 Paolo Bonzini
  2022-07-14  9:01 ` [PULL 01/20] scsi/lsi53c895a: really fix use-after-free in lsi_do_msgout (CVE-2022-0216) Paolo Bonzini
                   ` (20 more replies)
  0 siblings, 21 replies; 23+ messages in thread
From: Paolo Bonzini @ 2022-07-14  9:01 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 8e3d85d36b77f11ad7bded3a2d48c1f0cc334f82:

  Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu into staging (2022-07-12 14:12:15 +0100)

are available in the Git repository at:

  https://gitlab.com/bonzini/qemu.git tags/for-upstream

for you to fetch changes up to c0b3607d5938f5ee7fd16ff1e102afe938fd4b39:

  pc-bios/s390-ccw: add -Wno-array-bounds (2022-07-13 16:58:58 +0200)

----------------------------------------------------------------
* SCSI fuzzing fix (Mauro)
* pre-install data files in the build directory (Akihiko)
* SCSI fixes for Mac OS (Mark)

----------------------------------------------------------------
Akihiko Odaki (4):
      cutils: Introduce bundle mechanism
      datadir: Use bundle mechanism
      module: Use bundle mechanism
      meson: Prefix each element of firmware path

Mark Cave-Ayland (14):
      scsi-disk: add new quirks bitmap to SCSIDiskState
      scsi-disk: add MODE_PAGE_APPLE_VENDOR quirk for Macintosh
      q800: implement compat_props to enable quirk_mode_page_apple_vendor for scsi-cd devices
      scsi-disk: add SCSI_DISK_QUIRK_MODE_SENSE_ROM_USE_DBD quirk for Macintosh
      q800: implement compat_props to enable quirk_mode_sense_rom_use_dbd for scsi-cd devices
      scsi-disk: add SCSI_DISK_QUIRK_MODE_PAGE_VENDOR_SPECIFIC_APPLE quirk for Macintosh
      q800: implement compat_props to enable quirk_mode_page_vendor_specific_apple for scsi devices
      scsi-disk: add FORMAT UNIT command
      scsi-disk: add SCSI_DISK_QUIRK_MODE_PAGE_TRUNCATED quirk for Macintosh
      q800: implement compat_props to enable quirk_mode_page_truncated for scsi-cd devices
      scsi-disk: allow the MODE_PAGE_R_W_ERROR AWRE bit to be changeable for CDROM drives
      scsi-disk: allow MODE SELECT block descriptor to set the block size
      q800: add default vendor and product information for scsi-hd devices
      q800: add default vendor and product information for scsi-cd devices

Mauro Matteo Cascella (1):
      scsi/lsi53c895a: really fix use-after-free in lsi_do_msgout (CVE-2022-0216)

Paolo Bonzini (1):
      pc-bios/s390-ccw: add -Wno-array-bounds

 .travis.yml                        |  2 +-
 Makefile                           |  2 +-
 configure                          | 15 ++++++
 docs/about/build-platforms.rst     |  2 +-
 hw/m68k/q800.c                     | 16 +++++++
 hw/scsi/lsi53c895a.c               |  3 +-
 hw/scsi/scsi-disk.c                | 96 +++++++++++++++++++++++++++++++++++---
 hw/scsi/trace-events               |  3 ++
 include/hw/scsi/scsi.h             |  6 +++
 include/qemu/cutils.h              | 18 +++++--
 include/scsi/constants.h           |  2 +
 meson.build                        | 15 +++++-
 meson_options.txt                  |  2 +-
 pc-bios/keymaps/meson.build        | 21 +++------
 pc-bios/meson.build                | 13 ++----
 pc-bios/s390-ccw/Makefile          |  1 +
 scripts/meson-buildoptions.py      |  7 ++-
 scripts/meson-buildoptions.sh      |  4 +-
 scripts/oss-fuzz/build.sh          |  8 ++--
 scripts/symlink-install-tree.py    | 33 +++++++++++++
 softmmu/datadir.c                  | 30 +++---------
 tests/qtest/fuzz-lsi53c895a-test.c | 76 ++++++++++++++++++++++++++++++
 tests/qtest/fuzz/fuzz.c            | 18 -------
 util/cutils.c                      | 66 ++++++++++++++++++--------
 util/meson.build                   |  1 +
 util/module.c                      |  1 -
 26 files changed, 348 insertions(+), 113 deletions(-)
 create mode 100644 scripts/symlink-install-tree.py
-- 
2.36.1



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

end of thread, other threads:[~2022-07-18 12:50 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-14  9:01 [PULL 00/20] SCSI, build system patches for 2022-07-13 Paolo Bonzini
2022-07-14  9:01 ` [PULL 01/20] scsi/lsi53c895a: really fix use-after-free in lsi_do_msgout (CVE-2022-0216) Paolo Bonzini
2022-07-14  9:01 ` [PULL 02/20] cutils: Introduce bundle mechanism Paolo Bonzini
2022-07-14  9:01 ` [PULL 03/20] datadir: Use " Paolo Bonzini
2022-07-14  9:01 ` [PULL 04/20] module: " Paolo Bonzini
2022-07-14  9:01 ` [PULL 05/20] meson: Prefix each element of firmware path Paolo Bonzini
2022-07-18 12:48   ` Thomas Huth
2022-07-14  9:01 ` [PULL 06/20] scsi-disk: add new quirks bitmap to SCSIDiskState Paolo Bonzini
2022-07-14  9:01 ` [PULL 07/20] scsi-disk: add MODE_PAGE_APPLE_VENDOR quirk for Macintosh Paolo Bonzini
2022-07-14  9:01 ` [PULL 08/20] q800: implement compat_props to enable quirk_mode_page_apple_vendor for scsi-cd devices Paolo Bonzini
2022-07-14  9:02 ` [PULL 09/20] scsi-disk: add SCSI_DISK_QUIRK_MODE_SENSE_ROM_USE_DBD quirk for Macintosh Paolo Bonzini
2022-07-14  9:02 ` [PULL 10/20] q800: implement compat_props to enable quirk_mode_sense_rom_use_dbd for scsi-cd devices Paolo Bonzini
2022-07-14  9:02 ` [PULL 11/20] scsi-disk: add SCSI_DISK_QUIRK_MODE_PAGE_VENDOR_SPECIFIC_APPLE quirk for Macintosh Paolo Bonzini
2022-07-14  9:02 ` [PULL 12/20] q800: implement compat_props to enable quirk_mode_page_vendor_specific_apple for scsi devices Paolo Bonzini
2022-07-14  9:02 ` [PULL 13/20] scsi-disk: add FORMAT UNIT command Paolo Bonzini
2022-07-14  9:02 ` [PULL 14/20] scsi-disk: add SCSI_DISK_QUIRK_MODE_PAGE_TRUNCATED quirk for Macintosh Paolo Bonzini
2022-07-14  9:02 ` [PULL 15/20] q800: implement compat_props to enable quirk_mode_page_truncated for scsi-cd devices Paolo Bonzini
2022-07-14  9:02 ` [PULL 16/20] scsi-disk: allow the MODE_PAGE_R_W_ERROR AWRE bit to be changeable for CDROM drives Paolo Bonzini
2022-07-14  9:02 ` [PULL 17/20] scsi-disk: allow MODE SELECT block descriptor to set the block size Paolo Bonzini
2022-07-14  9:02 ` [PULL 18/20] q800: add default vendor and product information for scsi-hd devices Paolo Bonzini
2022-07-14  9:02 ` [PULL 19/20] q800: add default vendor and product information for scsi-cd devices Paolo Bonzini
2022-07-14  9:02 ` [PULL 20/20] pc-bios/s390-ccw: add -Wno-array-bounds Paolo Bonzini
2022-07-15 10:10 ` [PULL 00/20] SCSI, build system patches for 2022-07-13 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).