From: Christian Schoenebeck <qemu_oss@crudebyte.com>
To: qemu-devel@nongnu.org
Cc: qemu-stable@nongnu.org, Greg Kurz <groug@kaod.org>,
Peter Maydell <peter.maydell@linaro.org>,
Feifan Qian <bea1e@proton.me>,
Stefano Stabellini <sstabellini@kernel.org>
Subject: [PULL 00/23] 9p queue 2026-06-29
Date: Mon, 29 Jun 2026 15:28:39 +0200 [thread overview]
Message-ID: <cover.1782739719.git.qemu_oss@crudebyte.com> (raw)
The following changes since commit 20553466cc47af6a8c95f665b601fce3c852e503:
Merge tag 'pbouvier/pr/docs-20260626' of https://gitlab.com/p-b-o/qemu into staging (2026-06-27 23:28:35 -0400)
are available in the Git repository at:
https://github.com/cschoenebeck/qemu.git tags/pull-9p-20260629
for you to fetch changes up to 75893c058b21d87d1ec66bbd4e8bf84e1fd616d1:
hw/9pfs/local: harden local_fid_fd() on FID types (2026-06-29 15:10:32 +0200)
----------------------------------------------------------------
9pfs changes:
- Fix DoS via Treaddir (CVE-2026-9238).
- Add xattr FID limit (CVE-2026-8348).
- Fix union V9fsFidOpenState type confusion.
----------------------------------------------------------------
Christian Schoenebeck (23):
hw/9pfs: add msize_limit transport callback
9pfs/virtio: implement msize_limit callback
9pfs/xen: implement msize_limit callback
hw/9pfs: cap negotiated msize to transport limit
hw/9pfs: add response_buffer_size transport callback
9pfs/virtio: implement response_buffer_size callback
9pfs/xen: implement response_buffer_size callback
hw/9pfs: cap Treaddir allocation (CVE-2026-9238)
hw/9pfs: add xattr FID limit to prevent memory exhaustion
hw/9pfs: add max_xattr option
qemu-options: document 9pfs max_xattr option
tests/9p: add Tread / Rread test client functions
tests/9p: add Tclunk / Rclunk test client functions
tests/9p: add Txattrcreate / Rxattrcreate test client functions
hw/9pfs: enable xattr (mockup) support for synth fs driver
hw/9pfs: add xattr count query interface to fs synth driver
tests/9p: increase P9_MAX_SIZE for test client
tests/9p: add virtio_9p_add_synth_driver_args() test client function
tests/9p: add 3 xattr FID limit test cases (synth fs driver)
tests/9p: add 3 xattr FID limit test cases (local fs driver)
hw/9pfs: fix invalid union access by v9fs_co_fsync()
hw/9pfs: fix invalid union access by v9fs_co_fstat()
hw/9pfs/local: harden local_fid_fd() on FID types
fsdev/file-op-9p.h | 11 ++
fsdev/qemu-fsdev-opts.c | 6 +
fsdev/qemu-fsdev.c | 2 +-
hw/9pfs/9p-local.c | 14 +-
hw/9pfs/9p-synth.c | 51 ++++++-
hw/9pfs/9p.c | 113 ++++++++++++++-
hw/9pfs/9p.h | 2 +
hw/9pfs/virtio-9p-device.c | 17 +++
hw/9pfs/xen-9p-backend.c | 31 ++++
qemu-options.hx | 28 ++--
system/vl.c | 7 +-
tests/qtest/libqos/virtio-9p-client.c | 124 ++++++++++++++++
tests/qtest/libqos/virtio-9p-client.h | 88 +++++++++++-
tests/qtest/libqos/virtio-9p.c | 6 +
tests/qtest/libqos/virtio-9p.h | 6 +
tests/qtest/virtio-9p-test.c | 262 +++++++++++++++++++++++++++++++++-
16 files changed, 746 insertions(+), 22 deletions(-)
next reply other threads:[~2026-06-29 13:38 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-29 13:28 Christian Schoenebeck [this message]
2026-06-29 13:28 ` [PULL 02/23] 9pfs/virtio: implement msize_limit callback Christian Schoenebeck
2026-06-29 13:28 ` [PULL 14/23] tests/9p: add Txattrcreate / Rxattrcreate test client functions Christian Schoenebeck
2026-06-29 13:28 ` [PULL 15/23] hw/9pfs: enable xattr (mockup) support for synth fs driver Christian Schoenebeck
2026-06-29 13:28 ` [PULL 09/23] hw/9pfs: add xattr FID limit to prevent memory exhaustion Christian Schoenebeck
2026-06-29 13:28 ` [PULL 05/23] hw/9pfs: add response_buffer_size transport callback Christian Schoenebeck
2026-06-29 13:28 ` [PULL 23/23] hw/9pfs/local: harden local_fid_fd() on FID types Christian Schoenebeck
2026-06-29 13:28 ` [PULL 19/23] tests/9p: add 3 xattr FID limit test cases (synth fs driver) Christian Schoenebeck
2026-06-29 13:28 ` [PULL 11/23] qemu-options: document 9pfs max_xattr option Christian Schoenebeck
2026-06-29 13:28 ` [PULL 07/23] 9pfs/xen: implement response_buffer_size callback Christian Schoenebeck
2026-06-29 13:28 ` [PULL 12/23] tests/9p: add Tread / Rread test client functions Christian Schoenebeck
2026-06-29 13:28 ` [PULL 22/23] hw/9pfs: fix invalid union access by v9fs_co_fstat() Christian Schoenebeck
2026-06-29 13:28 ` [PULL 13/23] tests/9p: add Tclunk / Rclunk test client functions Christian Schoenebeck
2026-06-29 13:28 ` [PULL 01/23] hw/9pfs: add msize_limit transport callback Christian Schoenebeck
2026-06-29 13:28 ` [PULL 17/23] tests/9p: increase P9_MAX_SIZE for test client Christian Schoenebeck
2026-06-29 13:28 ` [PULL 10/23] hw/9pfs: add max_xattr option Christian Schoenebeck
2026-06-29 13:28 ` [PULL 06/23] 9pfs/virtio: implement response_buffer_size callback Christian Schoenebeck
2026-06-29 13:28 ` [PULL 18/23] tests/9p: add virtio_9p_add_synth_driver_args() test client function Christian Schoenebeck
2026-06-29 13:28 ` [PULL 21/23] hw/9pfs: fix invalid union access by v9fs_co_fsync() Christian Schoenebeck
2026-06-29 13:28 ` [PULL 20/23] tests/9p: add 3 xattr FID limit test cases (local fs driver) Christian Schoenebeck
2026-06-29 13:28 ` [PULL 03/23] 9pfs/xen: implement msize_limit callback Christian Schoenebeck
2026-06-29 13:28 ` [PULL 08/23] hw/9pfs: cap Treaddir allocation (CVE-2026-9238) Christian Schoenebeck
2026-06-29 13:28 ` [PULL 16/23] hw/9pfs: add xattr count query interface to fs synth driver Christian Schoenebeck
2026-06-29 13:28 ` [PULL 04/23] hw/9pfs: cap negotiated msize to transport limit Christian Schoenebeck
2026-06-29 18:28 ` [PULL 00/23] 9p queue 2026-06-29 Stefan Hajnoczi
2026-06-30 7:28 ` Pierrick Bouvier
2026-07-01 16:20 ` Christian Schoenebeck
2026-07-02 18:21 ` Pierrick Bouvier
2026-07-03 14:36 ` Christian Schoenebeck
2026-07-03 17:20 ` Pierrick Bouvier
2026-07-01 10:15 ` Michael Tokarev
2026-07-01 17:21 ` Christian Schoenebeck
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1782739719.git.qemu_oss@crudebyte.com \
--to=qemu_oss@crudebyte.com \
--cc=bea1e@proton.me \
--cc=groug@kaod.org \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-stable@nongnu.org \
--cc=sstabellini@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.