#
# (c) Jan Gehring <jan.gehring@gmail.com>
#
# vim: set ts=2 sw=2 tw=0:
# vim: set expandtab:
package Rex::Virtualization::LibVirt::blklist;
use 5.010001;
use strict;
use warnings;
our $VERSION = '1.13.4'; # VERSION
use Rex::Logger;
use Rex::Helper::Run;
use Data::Dumper;
sub execute {
shift;
my $vmname = shift;
my %options = @_;
my $virt_settings = Rex::Config->get("virtualization");
chomp( my $uri =
ref($virt_settings) ? $virt_settings->{connect} : i_run "virsh uri" );
unless ($vmname) {
die("You have to define the vm name!");
}
Rex::Logger::debug("Getting block list of domain: $vmname");
my @blklist = i_run "virsh -c $uri domblklist '$vmname' --details",
fail_ok => 1;
if ( $? != 0 ) {
die("Error running virsh domblklist '$vmname'");
}
my %ret = ();
my ( $k, $v );
shift @blklist;
shift @blklist;
for my $line (@blklist) {
my ( $type, $device, $target, $source ) = split( /\s+/, $line );
$ret{$target} = {
type => $type,
device => $device,
source => $source
};
}
if (%options) {
if ( $options{details} ) {
my $unit = $options{unit} || 1;
for my $target ( keys %ret ) {
my @infos =
i_run "virsh -c $uri domblkinfo '$vmname' '$target' 2>/dev/null",
fail_ok => 1;
if ( $? == 0 ) {
for my $line (@infos) {
my ( $k, $v ) = split( /:\s+/, $line );
$ret{$target}->{$k} = $v / $unit;
}
}
}
}
}
return \%ret;
}
1;