]> git.proxmox.com Git - qemu.git/commit
spice-qemu-char: vmc_write: Don't write more bytes then we're asked too
authorHans de Goede <hdegoede@redhat.com>
Fri, 5 Apr 2013 09:30:24 +0000 (11:30 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Tue, 16 Apr 2013 09:52:09 +0000 (11:52 +0200)
commit75c439bc65c07d76f5e74c734ed5432bc6114a3b
treef7566a4e762fdfcabfc71bc25ea88f98bd2d107b
parentb010cec86b9a4a0b63162cd27e37c2d99e90ed66
spice-qemu-char: vmc_write: Don't write more bytes then we're asked too

This one took me eons to debug, but I've finally found it now, oh well.

The usage of the MIN macro in this line:
    last_out = MIN(len, qemu_chr_be_can_write(scd->chr));

Causes qemu_chr_be_can_write to be called *twice*, since the MIN macro
evaluates its arguments twice (bad MIN macro, bad!). And the result of
the call can change between the 2 calls since the guest may have consumed
some data from the virtio ringbuffer between the calls!

When this happens it is possible for qemu_chr_be_can_write to return less
then len in the call made for the comparision, and then to return more then
len in the actual call for the return-value of MIN, after which we will end
up writing len data + some extra garbage, not good.

This patch fixes this by only calling qemu_chr_be_can_write once.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
spice-qemu-char.c