A Linux HVM domain ignores PV block devices with type cdrom. The
Windows PV drivers also ignore device-type != "disk". Therefore QEMU's
emulated CD-ROM support is used. This allows ejection and other CD-ROM
features to work.
With a stubdom, QEMU is running in the stubdom. A PV disk is still
connected into the stubdom, and then QEMU can emulate the CD-ROM into
the guest. Phy support has been enhanced to provide a placeholder file
forempty disks, so it is usable as a CDROM backend as well. Allow Phy
to pass the check as well.
(Bypassing just for a linux-based stubdom doesn't work because
libxl__device_disk_setdefault() gets called early in domain creation
before xenstore is populated with relevant information for the stubdom
type. The build information isn't readily available and won't exist in
some call trees, so it isn't usable either.)
Let disk_try_backend() allow format empty for Phy cdrom drives.
Signed-off-by: Jason Andryuk <jandryuk@gmail.com>
Reviewed-by: Anthony PERARD <anthony.perard@citrix.com>
switch (backend) {
case LIBXL_DISK_BACKEND_PHY:
- if (a->disk->format != LIBXL_DISK_FORMAT_RAW) {
- goto bad_format;
- }
-
if (libxl_defbool_val(a->disk->colo_enable))
goto bad_colo;
+ if (a->disk->is_cdrom && a->disk->format == LIBXL_DISK_FORMAT_EMPTY) {
+ LOG(DEBUG, "Disk vdev=%s is an empty cdrom", a->disk->vdev);
+ return backend;
+ }
+
+ if (a->disk->format != LIBXL_DISK_FORMAT_RAW)
+ goto bad_format;
+
if (a->disk->backend_domid != LIBXL_TOOLSTACK_DOMID) {
LOG(DEBUG, "Disk vdev=%s, is using a storage driver domain, "
"skipping physical device check", a->disk->vdev);
return ERROR_FAIL;
}
- /* Force Qdisk backend for CDROM devices of guests with a device model. */
+ /* Only allow Qdisk or Phy for CDROM devices. */
if (disk->is_cdrom != 0 &&
libxl__domain_type(gc, domid) == LIBXL_DOMAIN_TYPE_HVM) {
+ if (disk->backend == LIBXL_DISK_BACKEND_UNKNOWN)
+ disk->backend = LIBXL_DISK_BACKEND_QDISK;
+
if (!(disk->backend == LIBXL_DISK_BACKEND_QDISK ||
- disk->backend == LIBXL_DISK_BACKEND_UNKNOWN)) {
- LOGD(ERROR, domid, "Backend for CD devices on HVM guests must be Qdisk");
+ disk->backend == LIBXL_DISK_BACKEND_PHY)) {
+ LOGD(ERROR, domid,
+ "Backend for CD devices on HVM guests must be Qdisk or Phy");
return ERROR_FAIL;
}
- disk->backend = LIBXL_DISK_BACKEND_QDISK;
}
if (disk->is_cdrom &&