Note: This bug is displayed in read-only format because the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.

Bug 971297

Summary: block: Mirroring to raw block device doesn't zero out unused blocks
Product: Red Hat Enterprise Linux 7 Reporter: Kevin Wolf <kwolf>
Component: qemu-kvmAssignee: Jeff Cody <jcody>
Status: CLOSED NOTABUG QA Contact: Virtualization Bugs <virt-bugs>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: 7.0CC: huding, juzhang, michen, rbalakri, shu, virt-maint, xfu
Target Milestone: rc   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of:
: 971312 1136382 (view as bug list) Environment:
Last Closed: 2015-07-29 20:27:19 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 971312, 1136382    

Description Kevin Wolf 2013-06-06 08:45:01 UTC
Just like qemu-img convert uses bdrv_has_zero_init() in order to check whether
it can assume that not explicitly written clusters are zeroed, mirroring needs
to do the same. Otherwise mirroring to a raw block device with uninitialised
data doesn't yield the correct result.

Manual test case:
$ qemu-img create -f qcow2 /tmp/test.qcow2 64M
$ dd if=/dev/urandom of=/tmp/test.raw bs=1M count=64
$ sudo losetup /dev/loop0 /tmp/test.raw
$ sudo chmod 666 /dev/loop0
$ x86_64-softmmu/qemu-system-x86_64 -hda /tmp/test.qcow2 -monitor stdio
(qemu) drive_mirror ide0-hd0 /dev/loop0 raw
Formatting '/dev/loop0', fmt=raw size=67108864 
(qemu) block_job_complete ide0-hd0
(qemu) quit
$ sudo hexdump -n 512 /dev/loop0

Expected result:
Only zero bytes are on the block device

Actual result:
The random bytes are still there

Comment 2 juzhang 2013-06-06 09:05:41 UTC
Can reproduce by using qemu-kvm-1.5.0-2.

Before do mirror
#hexdump -n 512 /root/zhangjunyi/test.raw 
0000000 2847 67ae c62e b392 554f e6d8 95aa e80a
0000010 a68e c5f3 33d0 b844 6464 a216 7625 1640
0000020 20f2 1045 66e9 cf58 74c6 038d f0c1 cd31
..............................

After mirror
#hexdump -n 512 /root/zhangjunyi/test.raw 
0000000 0000 0000 0000 0000 0000 0000 0000 0000
*
0000200