qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] Re: [BUG] Regression: readonly raw images no longer work


From: Paolo Bonzini
Subject: [Qemu-devel] Re: [BUG] Regression: readonly raw images no longer work
Date: Sat, 13 Feb 2010 23:38:12 +0100
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.7) Gecko/20100120 Fedora/3.0.1-1.fc12 Lightning/1.0b2pre Thunderbird/3.0.1

On 02/13/2010 10:40 PM, Stefan Weil wrote:
This command used to work, but fails now:

$ i386-softmmu/qemu -snapshot /dev/sda
qemu: could not open disk image /dev/sda: Permission denied

$ ls -l /dev/sda
brw-rw-r-- 1 root disk 8, 0 13. Feb 08:55 /dev/sda

The original file of a snapshot needs only read access,
but QEMU tries read/write access and fails.

Variants of above command using -hda or -drive
also fail with the same error message.

I did not test whether the regression affects other
kinds of images, too. Maybe only raw images trigger
no longer work.

Caused by

commit 03cbdac7efc20994d0a87015e24e835d0139df7b
Author: Naphtali Sprei <address@hidden>  2010-01-17 15:48:15
Committer: Anthony Liguori <address@hidden>  2010-01-20 15:25:22
Follows: v0.12.0-rc0

    Disable fall-back to read-only when cannot open drive's file for
    read-write

    Signed-off-by: Naphtali Sprei <address@hidden>
    Signed-off-by: Anthony Liguori <address@hidden>

... because before that it was working like this:

open("/dev/sda", O_RDWR|O_SYNC|O_CLOEXEC) = -1 EACCES
open("/dev/sda", O_RDONLY|O_SYNC|O_CLOEXEC) = 10

BTW, because of other bugs in the middle of the history you need a command line "-hda /dev/null -drive file=/dev/sda,snapshot=on" to bisect it.

Paolo





reply via email to

[Prev in Thread] Current Thread [Next in Thread]