mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -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
|
@ -101,6 +101,15 @@ ivshmem_server_send_initial_info(IvshmemServer *server, IvshmemServerPeer *peer)
|
|||
{
|
||||
int ret;
|
||||
|
||||
/* send our protocol version first */
|
||||
ret = ivshmem_server_send_one_msg(peer->sock_fd, IVSHMEM_PROTOCOL_VERSION,
|
||||
-1);
|
||||
if (ret < 0) {
|
||||
IVSHMEM_SERVER_DEBUG(server, "cannot send version: %s\n",
|
||||
strerror(errno));
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* send the peer id to the client */
|
||||
ret = ivshmem_server_send_one_msg(peer->sock_fd, peer->id, -1);
|
||||
if (ret < 0) {
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
|
||||
#include "qemu/event_notifier.h"
|
||||
#include "qemu/queue.h"
|
||||
#include "hw/misc/ivshmem.h"
|
||||
|
||||
/**
|
||||
* Maximum number of notification vectors supported by the server
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue