]> git.proxmox.com Git - mirror_qemu.git/commit
vfio/pci: Fix buffer overrun when writing the VF token
authorCédric Le Goater <clg@redhat.com>
Thu, 26 Oct 2023 07:06:35 +0000 (09:06 +0200)
committerCédric Le Goater <clg@redhat.com>
Fri, 3 Nov 2023 08:20:31 +0000 (09:20 +0100)
commitf8d6f3b16c37bd516a026e92a31dade5d761d3a6
tree4c17f93b4d64d68d3aa72728889017623ac56c79
parent721da0396cfa0a4859cefb57e32cc79d19d80f54
vfio/pci: Fix buffer overrun when writing the VF token

qemu_uuid_unparse() includes a trailing NUL when writing the uuid
string and the buffer size should be UUID_FMT_LEN + 1 bytes. Use the
recently added UUID_STR_LEN which defines the correct size.

Fixes: CID 1522913
Fixes: 2dca1b37a760 ("vfio/pci: add support for VF token")
Cc: Alex Williamson <alex.williamson@redhat.com>
Reviewed-by: Alex Williamson <alex.williamson@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: "Denis V. Lunev" <den@openvz.org>
Signed-off-by: Cédric Le Goater <clg@redhat.com>
hw/vfio/pci.c