[libvirt] [PATCH 06/10] Add a generic internal API for handling any FD based stream

Daniel P. Berrange berrange at redhat.com
Mon Nov 1 16:12:00 UTC 2010


To avoid the need for duplicating implementations of virStream
drivers, provide a generic implementation that can handle any
FD based stream. This code is copied from the existing impl
in the QEMU driver, with the locking moved into the stream
impl, and addition of a read callback

The FD stream code will refuse to operate on regular files or
block devices, since those can't report EAGAIN properly when
they would block on I/O

* include/libvirt/virterror.h, include/libvirt/virterror.h: Add
  VIR_FROM_STREAM error domain
* src/qemu/qemu_driver.c: Remove code obsoleted by the new
  generic streams driver.
* src/fdstream.h, src/fdstream.c, src/fdstream.c,
  src/libvirt_private.syms: Generic reusable FD based streams
---
 include/libvirt/virterror.h |    3 +-
 src/Makefile.am             |    1 +
 src/fdstream.c              |  472 +++++++++++++++++++++++++++++++++++++++++++
 src/fdstream.h              |   44 ++++
 src/libvirt_private.syms    |    7 +
 src/qemu/qemu_driver.c      |  284 +-------------------------
 src/util/virterror.c        |    3 +
 7 files changed, 534 insertions(+), 280 deletions(-)
 create mode 100644 src/fdstream.c
 create mode 100644 src/fdstream.h

diff --git a/include/libvirt/virterror.h b/include/libvirt/virterror.h
index 94d686c..abf6945 100644
--- a/include/libvirt/virterror.h
+++ b/include/libvirt/virterror.h
@@ -73,7 +73,8 @@ typedef enum {
     VIR_FROM_NWFILTER,  /* Error from network filter driver */
     VIR_FROM_HOOK,      /* Error from Synchronous hooks */
     VIR_FROM_DOMAIN_SNAPSHOT, /* Error from domain snapshot */
-    VIR_FROM_AUDIT      /* Error from auditing subsystem */
+    VIR_FROM_AUDIT,     /* Error from auditing subsystem */
+    VIR_FROM_STREAMS,   /* Error from I/O streams */
 } virErrorDomain;
 
 
diff --git a/src/Makefile.am b/src/Makefile.am
index 4a11c37..2022b85 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -94,6 +94,7 @@ DRIVER_SOURCES =						\
 		driver.c driver.h				\
 		internal.h					\
 		datatypes.c datatypes.h				\
+		fdstream.c fdstream.h                 \
 		$(NODE_INFO_SOURCES)				\
 		libvirt.c libvirt_internal.h
 
diff --git a/src/fdstream.c b/src/fdstream.c
new file mode 100644
index 0000000..1ad2454
--- /dev/null
+++ b/src/fdstream.c
@@ -0,0 +1,472 @@
+/*
+ * fdstream.h: generic streams impl for file descriptors
+ *
+ * Copyright (C) 2009-2010 Red Hat, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
+ *
+ */
+
+#include <config.h>
+
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <fcntl.h>
+#include <unistd.h>
+#include <sys/socket.h>
+#include <sys/un.h>
+#include <netinet/in.h>
+#include <netinet/tcp.h>
+
+#include "fdstream.h"
+#include "virterror_internal.h"
+#include "datatypes.h"
+#include "memory.h"
+#include "event.h"
+#include "util.h"
+
+#define VIR_FROM_THIS VIR_FROM_STREAMS
+#define streamsReportError(code, ...)                                \
+    virReportErrorHelper(NULL, VIR_FROM_THIS, code, __FILE__,        \
+                         __FUNCTION__, __LINE__, __VA_ARGS__)
+
+/* Tunnelled migration stream support */
+struct virFDStreamData {
+    int fd;
+
+    int watch;
+    unsigned int cbRemoved;
+    unsigned int dispatching;
+    virStreamEventCallback cb;
+    void *opaque;
+    virFreeCallback ff;
+
+    virMutex lock;
+};
+
+static int virFDStreamRemoveCallback(virStreamPtr stream)
+{
+    struct virFDStreamData *fdst = stream->privateData;
+    int ret = -1;
+
+    if (!fdst) {
+        streamsReportError(VIR_ERR_INTERNAL_ERROR,
+                           "%s", _("stream is not open"));
+        return -1;
+    }
+
+    virMutexLock(&fdst->lock);
+    if (fdst->watch == 0) {
+        streamsReportError(VIR_ERR_INTERNAL_ERROR,
+                           "%s", _("stream does not have a callback registered"));
+        goto cleanup;
+    }
+
+    virEventRemoveHandle(fdst->watch);
+    if (fdst->dispatching)
+        fdst->cbRemoved = 1;
+    else if (fdst->ff)
+        (fdst->ff)(fdst->opaque);
+
+    fdst->watch = 0;
+    fdst->ff = NULL;
+    fdst->cb = NULL;
+    fdst->opaque = NULL;
+
+    ret = 0;
+
+cleanup:
+    virMutexUnlock(&fdst->lock);
+    return ret;
+}
+
+static int virFDStreamUpdateCallback(virStreamPtr stream, int events)
+{
+    struct virFDStreamData *fdst = stream->privateData;
+    int ret = -1;
+
+    if (!fdst) {
+        streamsReportError(VIR_ERR_INTERNAL_ERROR,
+                           "%s", _("stream is not open"));
+        return -1;
+    }
+
+    virMutexLock(&fdst->lock);
+    if (fdst->watch == 0) {
+        streamsReportError(VIR_ERR_INTERNAL_ERROR,
+                           "%s", _("stream does not have a callback registered"));
+        goto cleanup;
+    }
+
+    virEventUpdateHandle(fdst->watch, events);
+
+    ret = 0;
+
+cleanup:
+    virMutexUnlock(&fdst->lock);
+    return ret;
+}
+
+static void virFDStreamEvent(int watch ATTRIBUTE_UNUSED,
+                               int fd ATTRIBUTE_UNUSED,
+                               int events,
+                               void *opaque)
+{
+    virStreamPtr stream = opaque;
+    struct virFDStreamData *fdst = stream->privateData;
+    virStreamEventCallback cb;
+    void *cbopaque;
+    virFreeCallback ff;
+
+    if (!fdst)
+        return;
+
+    virMutexLock(&fdst->lock);
+    if (!fdst->cb) {
+        virMutexUnlock(&fdst->lock);
+        return;
+    }
+
+    cb = fdst->cb;
+    cbopaque = fdst->opaque;
+    ff = fdst->ff;
+    fdst->dispatching = 1;
+    virMutexUnlock(&fdst->lock);
+
+    cb(stream, events, cbopaque);
+
+    virMutexLock(&fdst->lock);
+    fdst->dispatching = 0;
+    if (fdst->cbRemoved && ff)
+        (ff)(cbopaque);
+    virMutexUnlock(&fdst->lock);
+}
+
+static int
+virFDStreamAddCallback(virStreamPtr st,
+                         int events,
+                         virStreamEventCallback cb,
+                         void *opaque,
+                         virFreeCallback ff)
+{
+    struct virFDStreamData *fdst = st->privateData;
+    int ret = -1;
+
+    if (!fdst) {
+        streamsReportError(VIR_ERR_INTERNAL_ERROR,
+                           "%s", _("stream is not open"));
+        return -1;
+    }
+
+    virMutexLock(&fdst->lock);
+    if (fdst->watch != 0) {
+        streamsReportError(VIR_ERR_INTERNAL_ERROR,
+                           "%s", _("stream already has a callback registered"));
+        goto cleanup;
+    }
+
+    if ((fdst->watch = virEventAddHandle(fdst->fd,
+                                           events,
+                                           virFDStreamEvent,
+                                           st,
+                                           NULL)) < 0) {
+        streamsReportError(VIR_ERR_INTERNAL_ERROR,
+                           "%s", _("cannot register file watch on stream"));
+        goto cleanup;
+    }
+
+    fdst->cbRemoved = 0;
+    fdst->cb = cb;
+    fdst->opaque = opaque;
+    fdst->ff = ff;
+    virStreamRef(st);
+
+    ret = 0;
+
+cleanup:
+    virMutexUnlock(&fdst->lock);
+    return ret;
+}
+
+static void virFDStreamFree(struct virFDStreamData *fdst)
+{
+    if (fdst->fd != -1)
+        close(fdst->fd);
+    VIR_FREE(fdst);
+}
+
+
+static int
+virFDStreamClose(virStreamPtr st)
+{
+    struct virFDStreamData *fdst = st->privateData;
+
+    if (!fdst)
+        return 0;
+
+    virMutexLock(&fdst->lock);
+
+    virFDStreamFree(fdst);
+
+    st->privateData = NULL;
+
+    virMutexUnlock(&fdst->lock);
+
+    return 0;
+}
+
+static int virFDStreamWrite(virStreamPtr st, const char *bytes, size_t nbytes)
+{
+    struct virFDStreamData *fdst = st->privateData;
+    int ret;
+
+    if (!fdst) {
+        streamsReportError(VIR_ERR_INTERNAL_ERROR,
+                           "%s", _("stream is not open"));
+        return -1;
+    }
+
+    virMutexLock(&fdst->lock);
+
+retry:
+    ret = write(fdst->fd, bytes, nbytes);
+    if (ret < 0) {
+        if (errno == EAGAIN || errno == EWOULDBLOCK) {
+            ret = -2;
+        } else if (errno == EINTR) {
+            goto retry;
+        } else {
+            ret = -1;
+            virReportSystemError(errno, "%s",
+                                 _("cannot write to stream"));
+        }
+    }
+
+    virMutexUnlock(&fdst->lock);
+    return ret;
+}
+
+
+static int virFDStreamRead(virStreamPtr st, char *bytes, size_t nbytes)
+{
+    struct virFDStreamData *fdst = st->privateData;
+    int ret;
+
+    if (!fdst) {
+        streamsReportError(VIR_ERR_INTERNAL_ERROR,
+                           "%s", _("stream is not open"));
+        return -1;
+    }
+
+    virMutexLock(&fdst->lock);
+
+retry:
+    ret = read(fdst->fd, bytes, nbytes);
+    if (ret < 0) {
+        if (errno == EAGAIN || errno == EWOULDBLOCK) {
+            ret = -2;
+        } else if (errno == EINTR) {
+            goto retry;
+        } else {
+            ret = -1;
+            virReportSystemError(errno, "%s",
+                                 _("cannot read from stream"));
+        }
+    }
+
+    virMutexUnlock(&fdst->lock);
+    return ret;
+}
+
+
+static virStreamDriver virFDStreamDrv = {
+    .streamSend = virFDStreamWrite,
+    .streamRecv = virFDStreamRead,
+    .streamFinish = virFDStreamClose,
+    .streamAbort = virFDStreamClose,
+    .streamAddCallback = virFDStreamAddCallback,
+    .streamUpdateCallback = virFDStreamUpdateCallback,
+    .streamRemoveCallback = virFDStreamRemoveCallback
+};
+
+int virFDStreamOpen(virStreamPtr st,
+                    int fd)
+{
+    struct virFDStreamData *fdst;
+
+    if ((st->flags & VIR_STREAM_NONBLOCK) &&
+        virSetNonBlock(fdst->fd) < 0)
+        return -1;
+
+    if (VIR_ALLOC(fdst) < 0) {
+        virReportOOMError();
+        return -1;
+    }
+
+    fdst->fd = fd;
+    if (virMutexInit(&fdst->lock) < 0) {
+        VIR_FREE(fdst);
+        streamsReportError(VIR_ERR_INTERNAL_ERROR, "%s",
+                           _("Unable to initialize mutex"));
+        return -1;
+    }
+
+    st->driver = &virFDStreamDrv;
+    st->privateData = fdst;
+
+    return 0;
+}
+
+
+int virFDStreamConnectUNIX(virStreamPtr st,
+                           const char *path,
+                           bool abstract)
+{
+    struct sockaddr_un sa;
+    int i = 0;
+    int timeout = 3;
+    int ret;
+
+    int fd = socket(AF_UNIX, SOCK_STREAM, 0);
+    if (fd < 0) {
+        virReportSystemError(errno, "%s", _("Unable to open UNIX socket"));
+        goto error;
+    }
+
+    memset(&sa, 0, sizeof(sa));
+    sa.sun_family = AF_UNIX;
+    if (abstract) {
+        if (virStrcpy(sa.sun_path+1, path, sizeof(sa.sun_path)-1) == NULL)
+            goto error;
+        sa.sun_path[0] = '\0';
+    } else {
+        if (virStrcpy(sa.sun_path, path, sizeof(sa.sun_path)) == NULL)
+            goto error;
+    }
+
+    do {
+        ret = connect(fd, (struct sockaddr *)&sa, sizeof(sa));
+        if (ret == 0)
+            break;
+
+        if (errno == ENOENT || errno == ECONNREFUSED) {
+            /* ENOENT       : Socket may not have shown up yet
+             * ECONNREFUSED : Leftover socket hasn't been removed yet */
+            continue;
+        }
+
+        goto error;
+    } while ((++i <= timeout*5) && (usleep(.2 * 1000000) <= 0));
+
+    if (virFDStreamOpen(st, fd) < 0)
+        goto error;
+    return 0;
+
+error:
+    close(fd);
+    return -1;
+}
+
+int virFDStreamOpenFile(virStreamPtr st,
+                        const char *path,
+                        int flags)
+{
+    int fd = open(path, flags);
+    struct stat sb;
+
+    if (fd < 0) {
+        virReportSystemError(errno,
+                             _("Unable to open stream for '%s'"),
+                             path);
+        return -1;
+    }
+
+    if (fstat(fd, &sb) < 0) {
+        virReportSystemError(errno,
+                             _("Unable to access stream for '%s'"),
+                             path);
+        goto error;
+    }
+
+    /* Thanks to the POSIX i/o model, we can't reliably get
+     * non-blocking I/O on block devs/regular files. To
+     * support those we need to fork a helper process todo
+     * the I/O so we just have a fifo. Or use AIO :-(
+     */
+    if ((st->flags & VIR_STREAM_NONBLOCK) &&
+        (!S_ISCHR(sb.st_mode) &&
+         !S_ISFIFO(sb.st_mode))) {
+        streamsReportError(VIR_ERR_INTERNAL_ERROR,
+                           _("Non-blocking I/O is not supported on %s"),
+                           path);
+        goto error;
+    }
+
+    if (virFDStreamOpen(st, fd) < 0)
+        goto error;
+
+    return 0;
+
+error:
+    close(fd);
+    return -1;
+}
+
+int virFDStreamCreateFile(virStreamPtr st,
+                          const char *path,
+                          int flags,
+                          mode_t mode)
+{
+    int fd = open(path, flags, mode);
+    struct stat sb;
+
+    if (fd < 0) {
+        virReportSystemError(errno,
+                             _("Unable to open stream for '%s'"),
+                             path);
+        return -1;
+    }
+
+    if (fstat(fd, &sb) < 0) {
+        virReportSystemError(errno,
+                             _("Unable to access stream for '%s'"),
+                             path);
+        goto error;
+    }
+
+    /* Thanks to the POSIX i/o model, we can't reliably get
+     * non-blocking I/O on block devs/regular files. To
+     * support those we need to fork a helper process todo
+     * the I/O so we just have a fifo. Or use AIO :-(
+     */
+    if ((st->flags & VIR_STREAM_NONBLOCK) &&
+        (!S_ISCHR(sb.st_mode) &&
+         !S_ISFIFO(sb.st_mode))) {
+        streamsReportError(VIR_ERR_INTERNAL_ERROR,
+                           _("Non-blocking I/O is not supported on %s"),
+                           path);
+        goto error;
+    }
+
+    if (virFDStreamOpen(st, fd) < 0)
+        goto error;
+
+    return 0;
+
+error:
+    close(fd);
+    return -1;
+}
+
diff --git a/src/fdstream.h b/src/fdstream.h
new file mode 100644
index 0000000..f8d22d5
--- /dev/null
+++ b/src/fdstream.h
@@ -0,0 +1,44 @@
+/*
+ * fdstream.h: generic streams impl for file descriptors
+ *
+ * Copyright (C) 2009-2010 Red Hat, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
+ *
+ */
+
+
+#ifndef __VIR_FDSTREAM_H_
+# define __VIR_FDSTREAM_H_
+
+# include "internal.h"
+# include <stdbool.h>
+
+int virFDStreamOpen(virStreamPtr st,
+                    int fd);
+
+int virFDStreamConnectUNIX(virStreamPtr st,
+                           const char *path,
+                           bool abstract);
+
+int virFDStreamOpenFile(virStreamPtr st,
+                        const char *path,
+                        int flags);
+int virFDStreamCreateFile(virStreamPtr st,
+                          const char *path,
+                          int flags,
+                          mode_t mode);
+
+#endif /* __VIR_FDSTREAM_H_ */
diff --git a/src/libvirt_private.syms b/src/libvirt_private.syms
index cf64bd3..fc9021a 100644
--- a/src/libvirt_private.syms
+++ b/src/libvirt_private.syms
@@ -335,6 +335,13 @@ virEventUpdateTimeout;
 virClose;
 
 
+# fdstream.h
+virFDStreamOpen;
+virFDStreamConnectUNIX;
+virFDStreamOpenFile;
+virFDStreamCreateFile;
+
+
 # hash.h
 virHashAddEntry;
 virHashCreate;
diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c
index b753ed3..2c07ac7 100644
--- a/src/qemu/qemu_driver.c
+++ b/src/qemu/qemu_driver.c
@@ -81,6 +81,7 @@
 #include "hooks.h"
 #include "storage_file.h"
 #include "virtaudit.h"
+#include "fdstream.h"
 
 
 #define VIR_FROM_THIS VIR_FROM_QEMU
@@ -10746,279 +10747,6 @@ qemuDomainIsMigratable(virDomainDefPtr def)
     return true;
 }
 
-
-/* Tunnelled migration stream support */
-struct qemuStreamMigFile {
-    int fd;
-
-    int watch;
-    unsigned int cbRemoved;
-    unsigned int dispatching;
-    virStreamEventCallback cb;
-    void *opaque;
-    virFreeCallback ff;
-};
-
-static int qemuStreamMigRemoveCallback(virStreamPtr stream)
-{
-    struct qemud_driver *driver = stream->conn->privateData;
-    struct qemuStreamMigFile *qemust = stream->privateData;
-    int ret = -1;
-
-    if (!qemust) {
-        qemuReportError(VIR_ERR_INTERNAL_ERROR,
-                        "%s", _("stream is not open"));
-        return -1;
-    }
-
-    qemuDriverLock(driver);
-    if (qemust->watch == 0) {
-        qemuReportError(VIR_ERR_INTERNAL_ERROR,
-                        "%s", _("stream does not have a callback registered"));
-        goto cleanup;
-    }
-
-    virEventRemoveHandle(qemust->watch);
-    if (qemust->dispatching)
-        qemust->cbRemoved = 1;
-    else if (qemust->ff)
-        (qemust->ff)(qemust->opaque);
-
-    qemust->watch = 0;
-    qemust->ff = NULL;
-    qemust->cb = NULL;
-    qemust->opaque = NULL;
-
-    ret = 0;
-
-cleanup:
-    qemuDriverUnlock(driver);
-    return ret;
-}
-
-static int qemuStreamMigUpdateCallback(virStreamPtr stream, int events)
-{
-    struct qemud_driver *driver = stream->conn->privateData;
-    struct qemuStreamMigFile *qemust = stream->privateData;
-    int ret = -1;
-
-    if (!qemust) {
-        qemuReportError(VIR_ERR_INTERNAL_ERROR,
-                        "%s", _("stream is not open"));
-        return -1;
-    }
-
-    qemuDriverLock(driver);
-    if (qemust->watch == 0) {
-        qemuReportError(VIR_ERR_INTERNAL_ERROR,
-                        "%s", _("stream does not have a callback registered"));
-        goto cleanup;
-    }
-
-    virEventUpdateHandle(qemust->watch, events);
-
-    ret = 0;
-
-cleanup:
-    qemuDriverUnlock(driver);
-    return ret;
-}
-
-static void qemuStreamMigEvent(int watch ATTRIBUTE_UNUSED,
-                               int fd ATTRIBUTE_UNUSED,
-                               int events,
-                               void *opaque)
-{
-    virStreamPtr stream = opaque;
-    struct qemud_driver *driver = stream->conn->privateData;
-    struct qemuStreamMigFile *qemust = stream->privateData;
-    virStreamEventCallback cb;
-    void *cbopaque;
-    virFreeCallback ff;
-
-    qemuDriverLock(driver);
-    if (!qemust || !qemust->cb) {
-        qemuDriverUnlock(driver);
-        return;
-    }
-
-    cb = qemust->cb;
-    cbopaque = qemust->opaque;
-    ff = qemust->ff;
-    qemust->dispatching = 1;
-    qemuDriverUnlock(driver);
-
-    cb(stream, events, cbopaque);
-
-    qemuDriverLock(driver);
-    qemust->dispatching = 0;
-    if (qemust->cbRemoved && ff)
-        (ff)(cbopaque);
-    qemuDriverUnlock(driver);
-}
-
-static int
-qemuStreamMigAddCallback(virStreamPtr st,
-                         int events,
-                         virStreamEventCallback cb,
-                         void *opaque,
-                         virFreeCallback ff)
-{
-    struct qemud_driver *driver = st->conn->privateData;
-    struct qemuStreamMigFile *qemust = st->privateData;
-    int ret = -1;
-
-    if (!qemust) {
-        qemuReportError(VIR_ERR_INTERNAL_ERROR,
-                        "%s", _("stream is not open"));
-        return -1;
-    }
-
-    qemuDriverLock(driver);
-    if (qemust->watch != 0) {
-        qemuReportError(VIR_ERR_INTERNAL_ERROR,
-                        "%s", _("stream already has a callback registered"));
-        goto cleanup;
-    }
-
-    if ((qemust->watch = virEventAddHandle(qemust->fd,
-                                           events,
-                                           qemuStreamMigEvent,
-                                           st,
-                                           NULL)) < 0) {
-        qemuReportError(VIR_ERR_INTERNAL_ERROR,
-                        "%s", _("cannot register file watch on stream"));
-        goto cleanup;
-    }
-
-    qemust->cbRemoved = 0;
-    qemust->cb = cb;
-    qemust->opaque = opaque;
-    qemust->ff = ff;
-    virStreamRef(st);
-
-    ret = 0;
-
-cleanup:
-    qemuDriverUnlock(driver);
-    return ret;
-}
-
-static void qemuStreamMigFree(struct qemuStreamMigFile *qemust)
-{
-    if (qemust->fd != -1)
-        close(qemust->fd);
-    VIR_FREE(qemust);
-}
-
-static struct qemuStreamMigFile *qemuStreamMigOpen(virStreamPtr st,
-                                                   const char *unixfile)
-{
-    struct qemuStreamMigFile *qemust = NULL;
-    struct sockaddr_un sa_qemu;
-    int i = 0;
-    int timeout = 3;
-    int ret;
-
-    if (VIR_ALLOC(qemust) < 0) {
-        virReportOOMError();
-        return NULL;
-    }
-
-    qemust->fd = socket(AF_UNIX, SOCK_STREAM, 0);
-    if (qemust->fd < 0)
-        goto cleanup;
-
-    memset(&sa_qemu, 0, sizeof(sa_qemu));
-    sa_qemu.sun_family = AF_UNIX;
-    if (virStrcpy(sa_qemu.sun_path, unixfile, sizeof(sa_qemu.sun_path)) == NULL)
-        goto cleanup;
-
-    do {
-        ret = connect(qemust->fd, (struct sockaddr *)&sa_qemu, sizeof(sa_qemu));
-        if (ret == 0)
-            break;
-
-        if (errno == ENOENT || errno == ECONNREFUSED) {
-            /* ENOENT       : Socket may not have shown up yet
-             * ECONNREFUSED : Leftover socket hasn't been removed yet */
-            continue;
-        }
-
-        goto cleanup;
-    } while ((++i <= timeout*5) && (usleep(.2 * 1000000) <= 0));
-
-    if ((st->flags & VIR_STREAM_NONBLOCK) && virSetNonBlock(qemust->fd) < 0)
-        goto cleanup;
-
-    return qemust;
-
-cleanup:
-    qemuStreamMigFree(qemust);
-    return NULL;
-}
-
-static int
-qemuStreamMigClose(virStreamPtr st)
-{
-    struct qemud_driver *driver = st->conn->privateData;
-    struct qemuStreamMigFile *qemust = st->privateData;
-
-    if (!qemust)
-        return 0;
-
-    qemuDriverLock(driver);
-
-    qemuStreamMigFree(qemust);
-
-    st->privateData = NULL;
-
-    qemuDriverUnlock(driver);
-
-    return 0;
-}
-
-static int qemuStreamMigWrite(virStreamPtr st, const char *bytes, size_t nbytes)
-{
-    struct qemud_driver *driver = st->conn->privateData;
-    struct qemuStreamMigFile *qemust = st->privateData;
-    int ret;
-
-    if (!qemust) {
-        qemuReportError(VIR_ERR_INTERNAL_ERROR,
-                        "%s", _("stream is not open"));
-        return -1;
-    }
-
-    qemuDriverLock(driver);
-
-retry:
-    ret = write(qemust->fd, bytes, nbytes);
-    if (ret < 0) {
-        if (errno == EAGAIN || errno == EWOULDBLOCK) {
-            ret = -2;
-        } else if (errno == EINTR) {
-            goto retry;
-        } else {
-            ret = -1;
-            virReportSystemError(errno, "%s",
-                                 _("cannot write to stream"));
-        }
-    }
-
-    qemuDriverUnlock(driver);
-    return ret;
-}
-
-static virStreamDriver qemuStreamMigDrv = {
-    .streamSend = qemuStreamMigWrite,
-    .streamFinish = qemuStreamMigClose,
-    .streamAbort = qemuStreamMigClose,
-    .streamAddCallback = qemuStreamMigAddCallback,
-    .streamUpdateCallback = qemuStreamMigUpdateCallback,
-    .streamRemoveCallback = qemuStreamMigRemoveCallback
-};
-
 /* Prepare is the first step, and it runs on the destination host.
  *
  * This version starts an empty VM listening on a localhost TCP port, and
@@ -11041,7 +10769,6 @@ qemudDomainMigratePrepareTunnel(virConnectPtr dconn,
     int internalret;
     char *unixfile = NULL;
     unsigned long long qemuCmdFlags;
-    struct qemuStreamMigFile *qemust = NULL;
     qemuDomainObjPrivatePtr priv = NULL;
     struct timeval now;
 
@@ -11151,8 +10878,9 @@ qemudDomainMigratePrepareTunnel(virConnectPtr dconn,
         goto endjob;
     }
 
-    qemust = qemuStreamMigOpen(st, unixfile);
-    if (qemust == NULL) {
+    if (virFDStreamConnectUNIX(st,
+                               unixfile,
+                               false) < 0) {
         qemuDomainStartAudit(vm, "migrated", false);
         qemudShutdownVMDaemon(driver, vm, 0);
         if (!vm->persistent) {
@@ -11166,10 +10894,8 @@ qemudDomainMigratePrepareTunnel(virConnectPtr dconn,
         goto endjob;
     }
 
-    st->driver = &qemuStreamMigDrv;
-    st->privateData = qemust;
-
     qemuDomainStartAudit(vm, "migrated", true);
+
     event = virDomainEventNewFromObj(vm,
                                      VIR_DOMAIN_EVENT_STARTED,
                                      VIR_DOMAIN_EVENT_STARTED_MIGRATED);
diff --git a/src/util/virterror.c b/src/util/virterror.c
index 70749a7..4214d6b 100644
--- a/src/util/virterror.c
+++ b/src/util/virterror.c
@@ -190,6 +190,9 @@ static const char *virErrorDomainName(virErrorDomain domain) {
         case VIR_FROM_AUDIT:
             dom = "Audit";
             break;
+        case VIR_FROM_STREAMS:
+            dom = "Streams ";
+            break;
     }
     return(dom);
 }
-- 
1.7.2.3




More information about the libvir-list mailing list