diff options
author | Richard Jones <rjones@redhat.com> | 2010-07-22 14:39:36 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2010-07-22 16:51:55 +0100 |
commit | 799d52be4f08f6c70c0e8ba1aa7367ba4cdd78c4 (patch) | |
tree | 0efef0a96ea2e23b5598296d845e6f2d7253774d /src/guestfs.c | |
parent | 2a286f16215ebfac88a32d259f2b68191eb8d27e (diff) | |
download | libguestfs-799d52be4f08f6c70c0e8ba1aa7367ba4cdd78c4.tar.gz libguestfs-799d52be4f08f6c70c0e8ba1aa7367ba4cdd78c4.tar.xz libguestfs-799d52be4f08f6c70c0e8ba1aa7367ba4cdd78c4.zip |
Revert "add_drive_ro adds readonly=on option if available." (RHBZ#617200).
Adding the readonly=on option is not so clever. This causes
qemu to present the disk as read-only to the guest. (The
expected behaviour of snapshots=on,readonly=on was that it
would open the disk O_RDONLY but present a writable disk to
the guest).
Since the guest sees a read-only disk, we are unable to do any
recovery if a filesystem on the disk is inconsistent. This basically
prevents most accesses to live disk images.
What we really want is a qemu option which presents a writable
disk to the guest, but only opens the disk on the host side with
O_RDONLY, to alleviate the udev bug RHBZ#571714.
This reverts commit 676462684e05dd8341dd695762dd99a87d8ec022.
Diffstat (limited to 'src/guestfs.c')
-rw-r--r-- | src/guestfs.c | 22 |
1 files changed, 4 insertions, 18 deletions
diff --git a/src/guestfs.c b/src/guestfs.c index 85a042a0..d6c8d603 100644 --- a/src/guestfs.c +++ b/src/guestfs.c @@ -836,6 +836,9 @@ int guestfs__add_drive_ro_with_if (guestfs_h *g, const char *filename, const char *drive_if) { + size_t len = strlen (filename) + 64; + char buf[len]; + if (strchr (filename, ',') != NULL) { error (g, _("filename cannot contain ',' (comma) character")); return -1; @@ -846,24 +849,7 @@ guestfs__add_drive_ro_with_if (guestfs_h *g, const char *filename, return -1; } - if (qemu_supports (g, NULL) == -1) - return -1; - - /* Only SCSI and virtio drivers support readonly mode. - * This is only supported as a QEMU feature since 2010/01. - */ - int supports_ro = 0; - if ((STREQ (drive_if, "scsi") || STREQ (drive_if, "virtio")) && - qemu_supports (g, "readonly=on")) - supports_ro = 1; - - size_t len = strlen (filename) + 100; - char buf[len]; - - snprintf (buf, len, "file=%s,snapshot=on,%sif=%s", - filename, - supports_ro ? "readonly=on," : "", - drive_if); + snprintf (buf, len, "file=%s,snapshot=on,if=%s", filename, drive_if); return guestfs__config (g, "-drive", buf); } |