* [Qemu-devel] [PATCH] block: do not probe zero-sized disks
@ 2013-01-10 14:39 Paolo Bonzini
2013-01-10 15:17 ` Kevin Wolf
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Paolo Bonzini @ 2013-01-10 14:39 UTC (permalink / raw)
To: qemu-devel; +Cc: kwolf
A blank CD or DVD is visible as a zero-sized disks. Probing such
disks will lead to an EIO and a failure to start the VM. Treating
them as raw is a better solution.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
block.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/block.c b/block.c
index c05875f..b9da10e 100644
--- a/block.c
+++ b/block.c
@@ -532,7 +532,7 @@ static int find_image_format(const char *filename, BlockDriver **pdrv)
}
/* Return the raw BlockDriver * to scsi-generic devices or empty drives */
- if (bs->sg || !bdrv_is_inserted(bs)) {
+ if (bs->sg || !bdrv_is_inserted(bs) || bdrv_getlength(bs) == 0) {
bdrv_delete(bs);
drv = bdrv_find_format("raw");
if (!drv) {
--
1.8.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] block: do not probe zero-sized disks
2013-01-10 14:39 [Qemu-devel] [PATCH] block: do not probe zero-sized disks Paolo Bonzini
@ 2013-01-10 15:17 ` Kevin Wolf
2013-01-10 17:17 ` Eric Blake
2013-01-11 9:33 ` Stefan Hajnoczi
2 siblings, 0 replies; 4+ messages in thread
From: Kevin Wolf @ 2013-01-10 15:17 UTC (permalink / raw)
To: Paolo Bonzini; +Cc: qemu-devel
Am 10.01.2013 15:39, schrieb Paolo Bonzini:
> A blank CD or DVD is visible as a zero-sized disks. Probing such
> disks will lead to an EIO and a failure to start the VM. Treating
> them as raw is a better solution.
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
> block.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/block.c b/block.c
> index c05875f..b9da10e 100644
> --- a/block.c
> +++ b/block.c
> @@ -532,7 +532,7 @@ static int find_image_format(const char *filename, BlockDriver **pdrv)
> }
>
> /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
> - if (bs->sg || !bdrv_is_inserted(bs)) {
> + if (bs->sg || !bdrv_is_inserted(bs) || bdrv_getlength(bs) == 0) {
> bdrv_delete(bs);
> drv = bdrv_find_format("raw");
> if (!drv) {
>
Thanks, rebased and applied to the block branch.
Kevin
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] block: do not probe zero-sized disks
2013-01-10 14:39 [Qemu-devel] [PATCH] block: do not probe zero-sized disks Paolo Bonzini
2013-01-10 15:17 ` Kevin Wolf
@ 2013-01-10 17:17 ` Eric Blake
2013-01-11 9:33 ` Stefan Hajnoczi
2 siblings, 0 replies; 4+ messages in thread
From: Eric Blake @ 2013-01-10 17:17 UTC (permalink / raw)
To: Paolo Bonzini; +Cc: kwolf, qemu-devel
[-- Attachment #1: Type: text/plain, Size: 1170 bytes --]
On 01/10/2013 07:39 AM, Paolo Bonzini wrote:
> A blank CD or DVD is visible as a zero-sized disks. Probing such
> disks will lead to an EIO and a failure to start the VM. Treating
> them as raw is a better solution.
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
> block.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/block.c b/block.c
> index c05875f..b9da10e 100644
> --- a/block.c
> +++ b/block.c
> @@ -532,7 +532,7 @@ static int find_image_format(const char *filename, BlockDriver **pdrv)
> }
>
> /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
> - if (bs->sg || !bdrv_is_inserted(bs)) {
> + if (bs->sg || !bdrv_is_inserted(bs) || bdrv_getlength(bs) == 0) {
Do we need to extend this to all files with size smaller than the length
of the header used in probing to determine a non-raw file? Or is the
case of someone passing a 1-byte file as a backing file of a device too
unlikely, where refusing to start the VM is okay for that case?
--
Eric Blake eblake redhat com +1-919-301-3266
Libvirt virtualization library http://libvirt.org
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 619 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] block: do not probe zero-sized disks
2013-01-10 14:39 [Qemu-devel] [PATCH] block: do not probe zero-sized disks Paolo Bonzini
2013-01-10 15:17 ` Kevin Wolf
2013-01-10 17:17 ` Eric Blake
@ 2013-01-11 9:33 ` Stefan Hajnoczi
2 siblings, 0 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2013-01-11 9:33 UTC (permalink / raw)
To: Paolo Bonzini; +Cc: kwolf, qemu-devel
On Thu, Jan 10, 2013 at 03:39:27PM +0100, Paolo Bonzini wrote:
> A blank CD or DVD is visible as a zero-sized disks. Probing such
> disks will lead to an EIO and a failure to start the VM. Treating
> them as raw is a better solution.
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
> block.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/block.c b/block.c
> index c05875f..b9da10e 100644
> --- a/block.c
> +++ b/block.c
> @@ -532,7 +532,7 @@ static int find_image_format(const char *filename, BlockDriver **pdrv)
> }
>
> /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
> - if (bs->sg || !bdrv_is_inserted(bs)) {
> + if (bs->sg || !bdrv_is_inserted(bs) || bdrv_getlength(bs) == 0) {
Looks good but I wouldn't understand the reason for the zero size check
when reading the code. Please add a comment so no one changes/removes
this code in the future.
Stefan
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-01-11 9:33 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-10 14:39 [Qemu-devel] [PATCH] block: do not probe zero-sized disks Paolo Bonzini
2013-01-10 15:17 ` Kevin Wolf
2013-01-10 17:17 ` Eric Blake
2013-01-11 9:33 ` Stefan Hajnoczi
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).