summaryrefslogtreecommitdiffstats
path: root/pick-guests.pl.in
blob: 1ec2c2aa54dd4996bb928722a78b985496bf2a7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/perl -w
# @configure_input@
# Copyright (C) 2009-2012 Red Hat Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

# Pick guests at random on the local machine which are accessible.
# This is used by 'make check-valgrind-local-guests'.

use strict;

use Sys::Guestfs;
use Sys::Virt;
use List::Util qw(shuffle);

die "$0 nr-guests\n" unless @ARGV == 1;
my $n = $ARGV[0];

my $vmm = Sys::Virt->new (uri => '@libvirt_ro_uri@');
my @domains = ($vmm->list_domains, $vmm->list_defined_domains);

# Only guests which are accessible by the current (non-root) user.  On
# the machine where I run these tests, I have added my user account to
# the 'disk' group, so that most guests are accessible.  However
# because libvirt changes the permissions on guest disks, a guest
# which has been run on the machine becomes inaccessible, hence the
# need for this code - RWMJ.
my @accessible;
foreach my $dom (@domains) {
    my $name = $dom->get_name;
    my $g = Sys::Guestfs->new;
    eval {
        $g->add_domain ($name, readonly => 1,
                        libvirturi => '@libvirt_ro_uri@');
        # $g->launch (); - don't actually need to do this
    };
    push @accessible, $name unless $@;
}

# Randomize the list of guests.
@accessible = shuffle (@accessible);

$n = @accessible if @accessible < $n;

# Return the first n guests from the list.
for (my $i = 0; $i < $n; ++$i) {
    print " " if $i > 0;
    print $accessible[$i];
}
print "\n";