mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
ivshmem: add check on protocol version in QEMU
Send a protocol version as the first message from server, clients must close communication if they don't support this protocol version. Older QEMUs should be fine with this change in the protocol since they overrides their own vm_id on reception of an id associated to no eventfd. Signed-off-by: David Marchand <david.marchand@6wind.com> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> [use fifo_update_and_get()] Reviewed-by: Claudio Fontana <claudio.fontana@huawei.com>
This commit is contained in:
parent
8c4ef202b9
commit
5105b1d8c2
7 changed files with 81 additions and 8 deletions
|
@ -206,10 +206,17 @@ ivshmem_client_connect(IvshmemClient *client)
|
|||
goto err_close;
|
||||
}
|
||||
|
||||
/* first, we expect our index + a fd == -1 */
|
||||
/* first, we expect a protocol version */
|
||||
if (ivshmem_client_read_one_msg(client, &tmp, &fd) < 0 ||
|
||||
(tmp != IVSHMEM_PROTOCOL_VERSION) || fd != -1) {
|
||||
IVSHMEM_CLIENT_DEBUG(client, "cannot read from server\n");
|
||||
goto err_close;
|
||||
}
|
||||
|
||||
/* then, we expect our index + a fd == -1 */
|
||||
if (ivshmem_client_read_one_msg(client, &client->local.id, &fd) < 0 ||
|
||||
client->local.id < 0 || fd != -1) {
|
||||
IVSHMEM_CLIENT_DEBUG(client, "cannot read from server\n");
|
||||
IVSHMEM_CLIENT_DEBUG(client, "cannot read from server (2)\n");
|
||||
goto err_close;
|
||||
}
|
||||
IVSHMEM_CLIENT_DEBUG(client, "our_id=%ld\n", client->local.id);
|
||||
|
@ -221,7 +228,7 @@ ivshmem_client_connect(IvshmemClient *client)
|
|||
if (fd >= 0) {
|
||||
close(fd);
|
||||
}
|
||||
IVSHMEM_CLIENT_DEBUG(client, "cannot read from server (2)\n");
|
||||
IVSHMEM_CLIENT_DEBUG(client, "cannot read from server (3)\n");
|
||||
goto err_close;
|
||||
}
|
||||
client->shm_fd = fd;
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
#include <sys/select.h>
|
||||
|
||||
#include "qemu/queue.h"
|
||||
#include "hw/misc/ivshmem.h"
|
||||
|
||||
/**
|
||||
* Maximum number of notification vectors supported by the client
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue