]> xenbits.xensource.com Git - libvirt.git/commitdiff
Fix bug of attaching redirdev device
authorOsier Yang <osier@yunify.com>
Mon, 22 Feb 2016 16:44:09 +0000 (00:44 +0800)
committerMichal Privoznik <mprivozn@redhat.com>
Thu, 25 Feb 2016 08:17:41 +0000 (09:17 +0100)
RHBZ: https://bugzilla.redhat.com/show_bug.cgi?id=1298070

The corresponding chardev must be attached first, otherwise the
the qemu command line won't be complete (missing the host part),

src/qemu/qemu_hotplug.c

index ee305e7f528f3759a61599c7655114d457164f29..dc7626869332b641ea9106e6bf81ea69eb99d846 100644 (file)
@@ -1378,45 +1378,56 @@ int qemuDomainAttachRedirdevDevice(virQEMUDriverPtr driver,
                                    virDomainObjPtr vm,
                                    virDomainRedirdevDefPtr redirdev)
 {
-    int ret;
+    int ret = -1;
     qemuDomainObjPrivatePtr priv = vm->privateData;
     virDomainDefPtr def = vm->def;
+    char *charAlias = NULL;
     char *devstr = NULL;
 
     if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_DEVICE)) {
         virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                        _("redirected devices are not supported by this QEMU"));
-        goto error;
+        return ret;
     }
 
     if (qemuAssignDeviceRedirdevAlias(vm->def, redirdev, -1) < 0)
-        goto error;
+        goto cleanup;
+
+    if (virAsprintf(&charAlias, "char%s", redirdev->info.alias) < 0)
+        goto cleanup;
+
     if (!(devstr = qemuBuildRedirdevDevStr(def, redirdev, priv->qemuCaps)))
-        goto error;
+        goto cleanup;
 
     if (VIR_REALLOC_N(vm->def->redirdevs, vm->def->nredirdevs+1) < 0)
-        goto error;
+        goto cleanup;
 
     qemuDomainObjEnterMonitor(driver, vm);
-    ret = qemuMonitorAddDevice(priv->mon, devstr);
+    if (qemuMonitorAttachCharDev(priv->mon,
+                                 charAlias,
+                                 &(redirdev->source.chr)) < 0) {
+        ignore_value(qemuDomainObjExitMonitor(driver, vm));
+        goto audit;
+    }
 
-    if (qemuDomainObjExitMonitor(driver, vm) < 0)
-        goto error;
+    if (qemuMonitorAddDevice(priv->mon, devstr) < 0) {
+        /* detach associated chardev on error */
+        qemuMonitorDetachCharDev(priv->mon, charAlias);
+        ignore_value(qemuDomainObjExitMonitor(driver, vm));
+        goto audit;
+    }
 
-    virDomainAuditRedirdev(vm, redirdev, "attach", ret == 0);
-    if (ret < 0)
-        goto error;
+    if (qemuDomainObjExitMonitor(driver, vm) < 0)
+        goto audit;
 
     vm->def->redirdevs[vm->def->nredirdevs++] = redirdev;
-
-    VIR_FREE(devstr);
-
-    return 0;
-
- error:
+    ret = 0;
+ audit:
+    virDomainAuditRedirdev(vm, redirdev, "attach", ret == 0);
+ cleanup:
+    VIR_FREE(charAlias);
     VIR_FREE(devstr);
-    return -1;
-
+    return ret;
 }
 
 static int