Richard W.M. Jones
2020-Sep-01 13:54 UTC
[Libguestfs] [PATCH v2v] v2v: Allow output to block devices (RHBZ#1868690).
We previously implicitly supported writing to block devices instead of local files, but there were several problems: * Block devices could be deleted, especially if virt-v2v failed during a conversion. * Block devices could be overwritten by a file with the same name, although I believe this is just an observed consequence of the previous point, or at least I was not able to reproduce this until virt-v2v failed for another reason and then I noticed that because the block device was deleted, the next run overwrote it with a file. * It was not documented anywhere how to do it. This commit makes the small code change needed to allow virt-v2v to write to a block device, only for existing outputs which write to local files (ie. using TargetFile). Also it avoids deleting block devices accidentally on failure. Note this commit intentionally does not prevent you from writing qcow2 to a block device. RHV uses this so it is a thing that people do. --- docs/virt-v2v.pod | 32 +++++++++++++++++++++++++++++ v2v/v2v.ml | 51 ++++++++++++++++++++++++++++------------------- 2 files changed, 62 insertions(+), 21 deletions(-) diff --git a/docs/virt-v2v.pod b/docs/virt-v2v.pod index a00fa8afa..fd0833492 100644 --- a/docs/virt-v2v.pod +++ b/docs/virt-v2v.pod @@ -1412,8 +1412,40 @@ require either a special user and/or for you to source a script that sets authentication environment variables. Consult the Glance documentation. +=item Writing to block devices + +This normally requires root. See the next section. + =back +=head2 Writing to block devices + +Some output modes write to local files. In general these modes also +let you write to block devices, but before you run virt-v2v you may +have to arrange for symbolic links to the desired block devices in the +output directory. + +For example if using I<-o local -os /dir> then virt-v2v would normally +create files called: + + /dir/name-sda # first disk + /dir/name-sdb # second disk + ... + /dir/name.xml # metadata + +If you wish the disks to be written to block devices then you would +need to create F</dir/I<name>-sda> (etc) as symlinks to the block +devices: + + # lvcreate -L 10G -n VolumeForDiskA VG + # lvcreate -L 6G -n VolumeForDiskB VG + # ln -sf /dev/VG/VolumeForDiskA /dir/name-sda + # ln -sf /dev/VG/VolumeForDiskB /dir/name-sdb + +Note that you must create block devices of the correct size, and you +need to use I<-of raw> since other output formats would not normally +make sense on a block device. + =head2 Minimal XML for -i libvirtxml option When using the I<-i libvirtxml> option, you have to supply some diff --git a/v2v/v2v.ml b/v2v/v2v.ml index 73edff2c4..a70310891 100644 --- a/v2v/v2v.ml +++ b/v2v/v2v.ml @@ -683,7 +683,10 @@ and copy_targets cmdline targets input output fun t -> match t.target_file with | TargetURI _ -> () - | TargetFile s -> try unlink s with _ -> () + | TargetFile filename -> + if not (is_block_device filename) then ( + try unlink filename with _ -> () + ) ) targets ) ); @@ -713,27 +716,33 @@ and copy_targets cmdline targets input output (match t.target_file with | TargetFile filename -> - (* It turns out that libguestfs's disk creation code is - * considerably more flexible and easier to use than - * qemu-img, so create the disk explicitly using libguestfs - * then pass the 'qemu-img convert -n' option so qemu reuses - * the disk. - * - * Also we allow the output mode to actually create the disk - * image. This lets the output mode set ownership and - * permissions correctly if required. + (* As a special case, allow output to a block device or + * symlink to a block device. In this case we don't + * create/overwrite the block device. (RHBZ#1868690). *) - (* What output preallocation mode should we use? *) - let preallocation - match t.target_format, cmdline.output_alloc with - | ("raw"|"qcow2"), Sparse -> Some "sparse" - | ("raw"|"qcow2"), Preallocated -> Some "full" - | _ -> None (* ignore -oa flag for other formats *) in - let compat - match t.target_format with "qcow2" -> Some "1.1" | _ -> None in - output#disk_create filename t.target_format - t.target_overlay.ov_virtual_size - ?preallocation ?compat + if not (is_block_device filename) then ( + (* It turns out that libguestfs's disk creation code is + * considerably more flexible and easier to use than + * qemu-img, so create the disk explicitly using libguestfs + * then pass the 'qemu-img convert -n' option so qemu reuses + * the disk. + * + * Also we allow the output mode to actually create the disk + * image. This lets the output mode set ownership and + * permissions correctly if required. + *) + (* What output preallocation mode should we use? *) + let preallocation + match t.target_format, cmdline.output_alloc with + | ("raw"|"qcow2"), Sparse -> Some "sparse" + | ("raw"|"qcow2"), Preallocated -> Some "full" + | _ -> None (* ignore -oa flag for other formats *) in + let compat + match t.target_format with "qcow2" -> Some "1.1" | _ -> None in + output#disk_create filename t.target_format + t.target_overlay.ov_virtual_size + ?preallocation ?compat + ) | TargetURI _ -> (* XXX For the moment we assume that qemu URI outputs -- 2.27.0
Nir Soffer
2020-Sep-01 17:55 UTC
Re: [Libguestfs] [PATCH v2v] v2v: Allow output to block devices (RHBZ#1868690).
On Tue, Sep 1, 2020 at 4:56 PM Richard W.M. Jones <rjones@redhat.com> wrote:> > We previously implicitly supported writing to block devices instead of > local files, but there were several problems: > > * Block devices could be deleted, especially if virt-v2v failed during > a conversion. > > * Block devices could be overwritten by a file with the same name, > although I believe this is just an observed consequence of the > previous point, or at least I was not able to reproduce this until > virt-v2v failed for another reason and then I noticed that because > the block device was deleted, the next run overwrote it with a file. > > * It was not documented anywhere how to do it. > > This commit makes the small code change needed to allow virt-v2v to > write to a block device, only for existing outputs which write to > local files (ie. using TargetFile). Also it avoids deleting block > devices accidentally on failure. > > Note this commit intentionally does not prevent you from writing qcow2 > to a block device. RHV uses this so it is a thing that people do. > --- > docs/virt-v2v.pod | 32 +++++++++++++++++++++++++++++ > v2v/v2v.ml | 51 ++++++++++++++++++++++++++++------------------- > 2 files changed, 62 insertions(+), 21 deletions(-) > > diff --git a/docs/virt-v2v.pod b/docs/virt-v2v.pod > index a00fa8afa..fd0833492 100644 > --- a/docs/virt-v2v.pod > +++ b/docs/virt-v2v.pod > @@ -1412,8 +1412,40 @@ require either a special user and/or for you to source a script that > sets authentication environment variables. Consult the Glance > documentation. > > +=item Writing to block devices > + > +This normally requires root. See the next section. > + > =back > > +=head2 Writing to block devices > + > +Some output modes write to local files. In general these modes also > +let you write to block devices, but before you run virt-v2v you may > +have to arrange for symbolic links to the desired block devices in the > +output directory. > + > +For example if using I<-o local -os /dir> then virt-v2v would normally > +create files called: > + > + /dir/name-sda # first disk > + /dir/name-sdb # second disk > + ... > + /dir/name.xml # metadata > + > +If you wish the disks to be written to block devices then you would > +need to create F</dir/I<name>-sda> (etc) as symlinks to the block > +devices: > + > + # lvcreate -L 10G -n VolumeForDiskA VG > + # lvcreate -L 6G -n VolumeForDiskB VG > + # ln -sf /dev/VG/VolumeForDiskA /dir/name-sda > + # ln -sf /dev/VG/VolumeForDiskB /dir/name-sdb > + > +Note that you must create block devices of the correct size, and you > +need to use I<-of raw> since other output formats would not normally > +make sense on a block device.qcow2 on block device is useful normally, for example for supporting incremental backup of the disk. Also using qcow2 avoids the horrible issue of lvm on the host activating logical volumes inside the block device while the guest is using the devices. So the statement "would not normally make sense" is too extreme. Maybe something like: Typically l<of raw> is used for block devices but other formats such as qcow2 can be useful in some cases.> + > =head2 Minimal XML for -i libvirtxml option > > When using the I<-i libvirtxml> option, you have to supply some > diff --git a/v2v/v2v.ml b/v2v/v2v.ml > index 73edff2c4..a70310891 100644 > --- a/v2v/v2v.ml > +++ b/v2v/v2v.ml > @@ -683,7 +683,10 @@ and copy_targets cmdline targets input output > fun t -> > match t.target_file with > | TargetURI _ -> () > - | TargetFile s -> try unlink s with _ -> () > + | TargetFile filename -> > + if not (is_block_device filename) then ( > + try unlink filename with _ -> () > + ) > ) targets > ) > ); > @@ -713,27 +716,33 @@ and copy_targets cmdline targets input output > > (match t.target_file with > | TargetFile filename -> > - (* It turns out that libguestfs's disk creation code is > - * considerably more flexible and easier to use than > - * qemu-img, so create the disk explicitly using libguestfs > - * then pass the 'qemu-img convert -n' option so qemu reuses > - * the disk. > - * > - * Also we allow the output mode to actually create the disk > - * image. This lets the output mode set ownership and > - * permissions correctly if required. > + (* As a special case, allow output to a block device or > + * symlink to a block device. In this case we don't > + * create/overwrite the block device. (RHBZ#1868690). > *) > - (* What output preallocation mode should we use? *) > - let preallocation > - match t.target_format, cmdline.output_alloc with > - | ("raw"|"qcow2"), Sparse -> Some "sparse" > - | ("raw"|"qcow2"), Preallocated -> Some "full" > - | _ -> None (* ignore -oa flag for other formats *) in > - let compat > - match t.target_format with "qcow2" -> Some "1.1" | _ -> None in > - output#disk_create filename t.target_format > - t.target_overlay.ov_virtual_size > - ?preallocation ?compat > + if not (is_block_device filename) then ( > + (* It turns out that libguestfs's disk creation code is > + * considerably more flexible and easier to use than > + * qemu-img, so create the disk explicitly using libguestfs > + * then pass the 'qemu-img convert -n' option so qemu reuses > + * the disk.How would -n work if you want to create qcow2 format?> + * > + * Also we allow the output mode to actually create the disk > + * image. This lets the output mode set ownership and > + * permissions correctly if required. > + *) > + (* What output preallocation mode should we use? *) > + let preallocation > + match t.target_format, cmdline.output_alloc with > + | ("raw"|"qcow2"), Sparse -> Some "sparse" > + | ("raw"|"qcow2"), Preallocated -> Some "full" > + | _ -> None (* ignore -oa flag for other formats *) in > + let compat > + match t.target_format with "qcow2" -> Some "1.1" | _ -> None in > + output#disk_create filename t.target_format > + t.target_overlay.ov_virtual_size > + ?preallocation ?compat > + ) > > | TargetURI _ -> > (* XXX For the moment we assume that qemu URI outputs > -- > 2.27.0 > > _______________________________________________ > Libguestfs mailing list > Libguestfs@redhat.com > https://www.redhat.com/mailman/listinfo/libguestfs >
Richard W.M. Jones
2020-Sep-01 18:37 UTC
Re: [Libguestfs] [PATCH v2v] v2v: Allow output to block devices (RHBZ#1868690).
On Tue, Sep 01, 2020 at 08:55:38PM +0300, Nir Soffer wrote: ...> > Note this commit intentionally does not prevent you from writing qcow2 > > to a block device. RHV uses this so it is a thing that people do....> > +Note that you must create block devices of the correct size, and you > > +need to use I<-of raw> since other output formats would not normally > > +make sense on a block device. > > qcow2 on block device is useful normally, for example for supporting > incremental backup of the disk. Also using qcow2 avoids the horrible issue > of lvm on the host activating logical volumes inside the block device while > the guest is using the devices. > > So the statement "would not normally make sense" is too extreme. > > Maybe something like: > > Typically l<of raw> is used for block devices but other formats such as > qcow2 can be useful in some cases.Sure, I will adjust this. I knew that RHV was using it.> > @@ -713,27 +716,33 @@ and copy_targets cmdline targets input output > > > > (match t.target_file with > > | TargetFile filename -> > > - (* It turns out that libguestfs's disk creation code is > > - * considerably more flexible and easier to use than > > - * qemu-img, so create the disk explicitly using libguestfs > > - * then pass the 'qemu-img convert -n' option so qemu reuses > > - * the disk. > > - * > > - * Also we allow the output mode to actually create the disk > > - * image. This lets the output mode set ownership and > > - * permissions correctly if required. > > + (* As a special case, allow output to a block device or > > + * symlink to a block device. In this case we don't > > + * create/overwrite the block device. (RHBZ#1868690). > > *) > > - (* What output preallocation mode should we use? *) > > - let preallocation > > - match t.target_format, cmdline.output_alloc with > > - | ("raw"|"qcow2"), Sparse -> Some "sparse" > > - | ("raw"|"qcow2"), Preallocated -> Some "full" > > - | _ -> None (* ignore -oa flag for other formats *) in > > - let compat > > - match t.target_format with "qcow2" -> Some "1.1" | _ -> None in > > - output#disk_create filename t.target_format > > - t.target_overlay.ov_virtual_size > > - ?preallocation ?compat > > + if not (is_block_device filename) then ( > > + (* It turns out that libguestfs's disk creation code is > > + * considerably more flexible and easier to use than > > + * qemu-img, so create the disk explicitly using libguestfs > > + * then pass the 'qemu-img convert -n' option so qemu reuses > > + * the disk. > > How would -n work if you want to create qcow2 format?I'm completely sure what the question means, but virt-v2v currently does this: qemu-img create -f FORMAT filename qemu-img convert -n overlay filename The new code doesn't change that for files, but the proposal does change it for devices to only this command: qemu-img convert -n overlay device I don't think that the format makes any difference AFAIK. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://rwmj.wordpress.com virt-df lists disk usage of guests without needing to install any software inside the virtual machine. Supports Linux and Windows. http://people.redhat.com/~rjones/virt-df/
Possibly Parallel Threads
- [PATCH v2v] v2v: Allow output to block devices (RHBZ#1868690).
- Re: [PATCH v2v] v2v: Allow output to block devices (RHBZ#1868690).
- Re: [PATCH v2v] v2v: Allow output to block devices (RHBZ#1868690).
- Re: [PATCH v2v] v2v: Allow output to block devices (RHBZ#1868690).
- [PATCH] v2v: Allow output modes to rewrite disk copying