public inbox for qemu-devel@nongnu.org
 help / color / mirror / Atom feed
* [RFC PATCH 0/8] Add vhost-vdpa and Shadow Virtqueue tests
@ 2026-03-05 16:39 Eugenio Pérez
  2026-03-05 16:39 ` [RFC PATCH 1/8] tests: vhost-vdpa: add initial VDUSE-based vhost-vdpa tests Eugenio Pérez
                   ` (7 more replies)
  0 siblings, 8 replies; 10+ messages in thread
From: Eugenio Pérez @ 2026-03-05 16:39 UTC (permalink / raw)
  To: qemu-devel
  Cc: Maxime Coquelin, Lei Yang, Paolo Bonzini, Michael S. Tsirkin,
	Stefano Garzarella, Koushik Dutta, Fabiano Rosas, Jason Wang,
	Laurent Vivier

Based on vhost-user tests, the qos register itself as a VDUSE device and
receives the events from QEMU.

The test infrastructure creates a thread that acts as a VDUSE device, while the
regular test thread is managing QEMU.

This enables automated testing of vhost-vdpa code paths that previously
required manual testing.

Changes from vhost-user test:
* Automatic cleanup of many things.
* Handle the vduse fd and timeout.
* VDPA device cannot be removed before deleting QEMU, killing QEMU in
  vhost_vdpa_test_cleanup.
* Read in enable callbacks, and the actual test_read_guest_mem is just waiting.
* Add vhost_vdpa_thread to abstract fd monitoring
* Use QemuMutex and QemuConf for scoped cleanup

RFC: I'm not sure if this is the right place to add the tests in meson. Also, a
few things are just with asserts() or g_spawn(), instead of more elegant code.
I can clean them if this result useful.

Also, I don't know how to include the libvduse.a library as meson complains
it's out of the tests/ directory, so I'm including the .c directly.  Ugly but
it works for now.

The test verifies SVQ correctly handles batched pushes where multiple elements
are filled before flushing the used ring.

With this test, gcov reported coverage is:
                   Total  Hit
Lines:     83.9 %    347  291
Functions: 90.3 %     31   28
Branches:  59.2 %    157   93

Apart from impossible banches like scoped cleanups, the missing blocks
are:
* Full queue situations, or use a full queue at once with IN_ORDER.
* Event idx.
* All SVQ CVQ handling.
* Hard to reproduce casuistics like a linear buffer in GPA that is
  split into more than one buffer in HVA, and then SVQ is saturated.
* Buggy input (no descriptors, used descriptors that are not available,
  moving indexes more than vq size).
* Unbinding device call notifier from QEMU vhost system.
* Malicious inputs.

This builds on top of
https://mail.gnu.org/archive/html/qemu-devel/2026-03/msg01366.html

Eugenio Pérez (8):
  tests: vhost-vdpa: add initial VDUSE-based vhost-vdpa tests
  tests: vhost-vdpa: parameterize VDUSE operations
  tests: vhost-vdpa: add TX packet transmission test
  tests: vhost-vdpa: test SVQ cleanup of pending buffers
  tests: vhost-vdpa: add descriptor chain tests
  tests: vhost-vdpa: test out-of-order descriptor completion
  tests: vhost-vdpa: introduce TestParameters struct
  tests: vhost-vdpa: add VIRTIO_F_IN_ORDER feature tests

 tests/qtest/meson.build       |   3 +
 tests/qtest/vhost-vdpa-test.c | 805 ++++++++++++++++++++++++++++++++++
 2 files changed, 808 insertions(+)
 create mode 100644 tests/qtest/vhost-vdpa-test.c

-- 
2.53.0



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

end of thread, other threads:[~2026-03-25 21:02 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-05 16:39 [RFC PATCH 0/8] Add vhost-vdpa and Shadow Virtqueue tests Eugenio Pérez
2026-03-05 16:39 ` [RFC PATCH 1/8] tests: vhost-vdpa: add initial VDUSE-based vhost-vdpa tests Eugenio Pérez
2026-03-25 21:02   ` Fabiano Rosas
2026-03-05 16:39 ` [RFC PATCH 2/8] tests: vhost-vdpa: parameterize VDUSE operations Eugenio Pérez
2026-03-05 16:39 ` [RFC PATCH 3/8] tests: vhost-vdpa: add TX packet transmission test Eugenio Pérez
2026-03-05 16:39 ` [RFC PATCH 4/8] tests: vhost-vdpa: test SVQ cleanup of pending buffers Eugenio Pérez
2026-03-05 16:39 ` [RFC PATCH 5/8] tests: vhost-vdpa: add descriptor chain tests Eugenio Pérez
2026-03-05 16:39 ` [RFC PATCH 6/8] tests: vhost-vdpa: test out-of-order descriptor completion Eugenio Pérez
2026-03-05 16:39 ` [RFC PATCH 7/8] tests: vhost-vdpa: introduce TestParameters struct Eugenio Pérez
2026-03-05 16:39 ` [RFC PATCH 8/8] tests: vhost-vdpa: add VIRTIO_F_IN_ORDER feature tests Eugenio Pérez

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox