From: Anthony PERARD <anthony.perard@citrix.com>
To: xen-devel@lists.xenproject.org
Cc: Anthony PERARD <anthony.perard@citrix.com>,
Wei Liu <wei.liu2@citrix.com>,
Ian Jackson <ian.jackson@eu.citrix.com>
Subject: [PATCH] libxl: Handle deprecation of QEMU's -usbdevice
Date: Thu, 19 Jul 2018 18:29:29 +0100 [thread overview]
Message-ID: <20180719172929.20866-1-anthony.perard@citrix.com> (raw)
-usbdevice is deprecated as of QEMU 2.10.
This patch replace the few options documented in xl.cfg(5) by the
recommanded syntax. And if the option isn't recognize, simply use
-usbdevice with a warning, the options isn't entirely removed from QEMU
upstream.
Also, remove from the manual the sentence inviting to read QEMU's
documentation.
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
---
docs/man/xl.cfg.pod.5.in | 3 --
tools/libxl/libxl_dm.c | 66 +++++++++++++++++++++++++++++++++++++---
2 files changed, 61 insertions(+), 8 deletions(-)
diff --git a/docs/man/xl.cfg.pod.5.in b/docs/man/xl.cfg.pod.5.in
index 099a28dc7a..74375e0225 100644
--- a/docs/man/xl.cfg.pod.5.in
+++ b/docs/man/xl.cfg.pod.5.in
@@ -2468,9 +2468,6 @@ write "host:8.2".
The form usbdevice=DEVICE is also accepted for backwards compatibility.
-More valid options can be found in the "usbdevice" section of the QEMU
-documentation.
-
=item B<vendor_device="VENDOR_DEVICE">
Selects which variant of the QEMU xen-pvdevice should be used for this
diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c
index bd187463ec..36a778f200 100644
--- a/tools/libxl/libxl_dm.c
+++ b/tools/libxl/libxl_dm.c
@@ -910,6 +910,62 @@ static char *qemu_disk_ide_drive_string(libxl__gc *gc, const char *target_path,
return drive;
}
+static int qemu_set_usbdevice_arg(libxl__gc *gc, int domid,
+ flexarray_t *dm_args,
+ char *usbdevice)
+{
+ /*
+ * -usbdevice is deprecated since QEMU 2.10, replace it by an equivalent if
+ * the option is recognized, otherwise use the deprecated -usbdevice and
+ * hope QEMU didn't remove it yet.
+ */
+
+ if (!strcmp(usbdevice, "tablet")) {
+ flexarray_append_pair(dm_args, "-device", "usb-tablet");
+ return 0;
+ } else if (!strncmp(usbdevice, "host:", 5)) {
+ const char *params;
+ const char *p;
+
+ params = strchr(usbdevice, ':');
+ if (!params)
+ goto out;
+
+ params++;
+
+ flexarray_append(dm_args, "-device");
+
+ p = strchr(params, '.');
+ if (p) {
+ uint32_t bus_num = strtoul(params, NULL, 0);
+ uint32_t addr = strtoul(p + 1, NULL, 0);
+ flexarray_append(dm_args,
+ GCSPRINTF("usb-host,hostbus=%d,hostaddr=%d",
+ bus_num, addr));
+ return 0;
+ } else {
+ p = strchr(params, ':');
+ if (p) {
+ uint32_t vendor_id = strtoul(params, NULL, 16);
+ uint32_t product_id = strtoul(p + 1, NULL, 16);
+ flexarray_append(dm_args,
+ GCSPRINTF("usb-host,vendorid=0x%x,productid=0x%x",
+ vendor_id, product_id));
+ return 0;
+ }
+ }
+ } else {
+ /* fallback */
+ LOGD(WARN, domid, "Attempt to use deprecated -usbdevice QEMU option");
+ flexarray_append_pair(dm_args, "-usbdevice", usbdevice);
+ return 0;
+ }
+
+out:
+ LOGD(ERROR, domid, "Failed to parse usbdevice= option '%s'", usbdevice);
+ return ERROR_INVAL;
+}
+
static int libxl__build_device_model_args_new(libxl__gc *gc,
const char *dm, int guest_domid,
const libxl_domain_config *guest_config,
@@ -1171,16 +1227,16 @@ static int libxl__build_device_model_args_new(libxl__gc *gc,
}
flexarray_append(dm_args, "-usb");
if (b_info->u.hvm.usbdevice) {
- flexarray_vappend(dm_args,
- "-usbdevice", b_info->u.hvm.usbdevice, NULL);
+ if (qemu_set_usbdevice_arg(gc, guest_domid, dm_args,
+ b_info->u.hvm.usbdevice))
+ return ERROR_INVAL;
} else if (b_info->u.hvm.usbdevice_list) {
char **p;
for (p = b_info->u.hvm.usbdevice_list;
*p;
p++) {
- flexarray_vappend(dm_args,
- "-usbdevice",
- *p, NULL);
+ if (qemu_set_usbdevice_arg(gc, guest_domid, dm_args, *p))
+ return ERROR_INVAL;
}
}
} else if (b_info->u.hvm.usbversion) {
--
Anthony PERARD
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel
next reply other threads:[~2018-07-19 17:30 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-19 17:29 Anthony PERARD [this message]
2018-07-25 8:38 ` [PATCH] libxl: Handle deprecation of QEMU's -usbdevice Wei Liu
2018-07-25 10:43 ` Anthony PERARD
2018-08-20 14:32 ` Wei Liu
2018-08-20 14:58 ` Anthony PERARD
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180719172929.20866-1-anthony.perard@citrix.com \
--to=anthony.perard@citrix.com \
--cc=ian.jackson@eu.citrix.com \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).