mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
pc, pci, virtio: new features, cleanups, fixes
Beginning of reconnect support for vhost-user. Misc cleanups and fixes. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAABAgAGBQJXY0Q3AAoJECgfDbjSjVRpkVcH/2gTHRE9yUoWe6ROvPV67BKx 8Iy9GzJ3BMO3RolVZEA5KXIevn5TG+pV274BZEuXMD3AL/molv279p0o/gvBYoqq V0jNH2MO+MV6D9OzhUXcgWSejvybF5W07ojPDU/hlgtFXPZFbJDyt95MWaLiilOg cCtTuRqgrrRaypcnnk/CIDbC+Ek2kAYdgQHQbfj9ihle3TWO8R0bSXnFqSaqCIkM 4slMlv8y82fODeiO83nkpfAP1NCnfnRC8r8Gv7hbEUTlZQntavx5DuYdiIx6nsJE W0g+Gpe1o0+jRuMnucGIUZvqzZ0e/I0wZuV16Nsfx+Rbd5+4CzTxZda5Qb05v7I= =BHbJ -----END PGP SIGNATURE----- Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging pc, pci, virtio: new features, cleanups, fixes Beginning of reconnect support for vhost-user. Misc cleanups and fixes. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> # gpg: Signature made Fri 17 Jun 2016 01:28:39 BST # gpg: using RSA key 0x281F0DB8D28D5469 # gpg: Good signature from "Michael S. Tsirkin <mst@kernel.org>" # gpg: aka "Michael S. Tsirkin <mst@redhat.com>" # Primary key fingerprint: 0270 606B 6F3C DF3D 0B17 0970 C350 3912 AFBE 8E67 # Subkey fingerprint: 5D09 FD08 71C8 F85B 94CA 8A0D 281F 0DB8 D28D 5469 * remotes/mst/tags/for_upstream: MAINTAINERS: add Marcel to PCI msi_init: change return value to 0 on success fix some coding style problems pci core: assert ENOSPC when add capability test: start vhost-user reconnect test tests: append i386 tests vhost-net: save & restore vring enable state vhost-net: save & restore vhost-user acked features vhost-net: do not crash if backend is not present vhost-user: disconnect on start failure qemu-char: add qemu_chr_disconnect to close a fd accepted by listen fd tests/vhost-user-bridge: workaround stale vring base tests/vhost-user-bridge: add client mode vhost-user: add ability to know vhost-user backend disconnection pci: fix pci_requester_id() Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Conflicts: tests/Makefile.include
This commit is contained in:
commit
7263a903c3
20 changed files with 391 additions and 46 deletions
|
@ -945,6 +945,13 @@ vubr_set_vring_addr_exec(VubrDev *dev, VhostUserMsg *vmsg)
|
|||
DPRINT(" vring_avail at %p\n", vq->avail);
|
||||
|
||||
vq->last_used_index = vq->used->idx;
|
||||
|
||||
if (vq->last_avail_index != vq->used->idx) {
|
||||
DPRINT("Last avail index != used index: %d != %d, resuming",
|
||||
vq->last_avail_index, vq->used->idx);
|
||||
vq->last_avail_index = vq->used->idx;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -1203,12 +1210,13 @@ vubr_accept_cb(int sock, void *ctx)
|
|||
}
|
||||
|
||||
static VubrDev *
|
||||
vubr_new(const char *path)
|
||||
vubr_new(const char *path, bool client)
|
||||
{
|
||||
VubrDev *dev = (VubrDev *) calloc(1, sizeof(VubrDev));
|
||||
dev->nregions = 0;
|
||||
int i;
|
||||
struct sockaddr_un un;
|
||||
CallbackFunc cb;
|
||||
size_t len;
|
||||
|
||||
for (i = 0; i < MAX_NR_VIRTQUEUE; i++) {
|
||||
|
@ -1237,21 +1245,30 @@ vubr_new(const char *path)
|
|||
un.sun_family = AF_UNIX;
|
||||
strcpy(un.sun_path, path);
|
||||
len = sizeof(un.sun_family) + strlen(path);
|
||||
unlink(path);
|
||||
|
||||
if (bind(dev->sock, (struct sockaddr *) &un, len) == -1) {
|
||||
vubr_die("bind");
|
||||
}
|
||||
if (!client) {
|
||||
unlink(path);
|
||||
|
||||
if (listen(dev->sock, 1) == -1) {
|
||||
vubr_die("listen");
|
||||
if (bind(dev->sock, (struct sockaddr *) &un, len) == -1) {
|
||||
vubr_die("bind");
|
||||
}
|
||||
|
||||
if (listen(dev->sock, 1) == -1) {
|
||||
vubr_die("listen");
|
||||
}
|
||||
cb = vubr_accept_cb;
|
||||
|
||||
DPRINT("Waiting for connections on UNIX socket %s ...\n", path);
|
||||
} else {
|
||||
if (connect(dev->sock, (struct sockaddr *)&un, len) == -1) {
|
||||
vubr_die("connect");
|
||||
}
|
||||
cb = vubr_receive_cb;
|
||||
}
|
||||
|
||||
dispatcher_init(&dev->dispatcher);
|
||||
dispatcher_add(&dev->dispatcher, dev->sock, (void *)dev,
|
||||
vubr_accept_cb);
|
||||
dispatcher_add(&dev->dispatcher, dev->sock, (void *)dev, cb);
|
||||
|
||||
DPRINT("Waiting for connections on UNIX socket %s ...\n", path);
|
||||
return dev;
|
||||
}
|
||||
|
||||
|
@ -1368,8 +1385,9 @@ main(int argc, char *argv[])
|
|||
{
|
||||
VubrDev *dev;
|
||||
int opt;
|
||||
bool client = false;
|
||||
|
||||
while ((opt = getopt(argc, argv, "l:r:u:")) != -1) {
|
||||
while ((opt = getopt(argc, argv, "l:r:u:c")) != -1) {
|
||||
|
||||
switch (opt) {
|
||||
case 'l':
|
||||
|
@ -1385,16 +1403,20 @@ main(int argc, char *argv[])
|
|||
case 'u':
|
||||
ud_socket_path = strdup(optarg);
|
||||
break;
|
||||
case 'c':
|
||||
client = true;
|
||||
break;
|
||||
default:
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
|
||||
DPRINT("ud socket: %s\n", ud_socket_path);
|
||||
DPRINT("ud socket: %s (%s)\n", ud_socket_path,
|
||||
client ? "client" : "server");
|
||||
DPRINT("local: %s:%s\n", lhost, lport);
|
||||
DPRINT("remote: %s:%s\n", rhost, rport);
|
||||
|
||||
dev = vubr_new(ud_socket_path);
|
||||
dev = vubr_new(ud_socket_path, client);
|
||||
if (!dev) {
|
||||
return 1;
|
||||
}
|
||||
|
@ -1405,13 +1427,14 @@ main(int argc, char *argv[])
|
|||
|
||||
out:
|
||||
fprintf(stderr, "Usage: %s ", argv[0]);
|
||||
fprintf(stderr, "[-u ud_socket_path] [-l lhost:lport] [-r rhost:rport]\n");
|
||||
fprintf(stderr, "[-c] [-u ud_socket_path] [-l lhost:lport] [-r rhost:rport]\n");
|
||||
fprintf(stderr, "\t-u path to unix doman socket. default: %s\n",
|
||||
DEFAULT_UD_SOCKET);
|
||||
fprintf(stderr, "\t-l local host and port. default: %s:%s\n",
|
||||
DEFAULT_LHOST, DEFAULT_LPORT);
|
||||
fprintf(stderr, "\t-r remote host and port. default: %s:%s\n",
|
||||
DEFAULT_RHOST, DEFAULT_RPORT);
|
||||
fprintf(stderr, "\t-c client mode\n");
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue