| Sys-Virt documentation | view source | Contained in the Sys-Virt distribution. |
Sys::Virt - Represent and manage a libvirt hypervisor connection
my $vmm = Sys::Virt->new(address => $addr);
my @domains = $vmm->list_domains();
foreach my $dom (@domains) {
print "Domain ", $dom->get_id, " ", $dom->get_name, "\n";
}
The Sys::Virt module provides a Perl XS binding to the libvirt virtual machine management APIs. This allows machines running within arbitrary virtualization containers to be managed with a consistent API.
Any operations in the Sys::Virt API which have failure scenarios will result in an instance of the Sys::Virt::Error module being thrown. To catch these errors, simply wrap the method in an eval block. For details of the information contained in the error objects, consult the Sys::Virt::Error manual page.
Attach to the virtual machine monitor with the address of address. The
uri parameter may be omitted, in which case the default connection made
will be to the local Xen hypervisor. Some example URIs include:
Xen on the local machine
Dummy "in memory" driver for test suites
System-wide driver for QEMU / KVM virtualization
Per-user driver for QEMU virtualization
System-wide QEMU driver on somehost using TLS security
Xen driver on somehost using TCP / SASL security
For further details consult http://libvirt.org/uri.html
If the optional readonly parameter is supplied, then an unprivileged
connection to the VMM will be attempted. If it is not supplied, then it
defaults to making a fully privileged connection to the VMM. If the
calling application is not running as root, it may be necessary to
provide authentication callbacks.
If the optional auth parameter is set to a non-zero value,
authentication will be enabled during connection, using the
default set of credential gathering callbacks. The default
callbacks prompt for credentials on the console, so are not
suitable for graphical applications. For such apps a custom
implementation should be supplied. The credlist parameter
should be an array reference listing the set of credential
types that will be supported. The credential constants in
this module can be used as values in this list. The callback
parameter should be a subroutine reference containing the
code necessary to gather the credentials. When invoked it
will be supplied with a single parameter, a array reference
of requested credentials. The elements of the array are
hash references, with keys type giving the type of
credential, prompt giving a user descriptive user
prompt, challenge giving name of the credential
required. The answer should be collected from the user, and
returned by setting the result key. This key may already
be set with a default result if applicable
As a simple example returning hardcoded credentials
my $address = "qemu+tcp://192.168.122.1/system";
my $username = "test";
my $password = "123456";
my $con = Sys::Virt->new(address => $address,
auth => 1,
credlist => [
Sys::Virt::CRED_AUTHNAME,
Sys::Virt::CRED_PASSPHRASE,
],
callback =>
sub {
my $creds = shift;
foreach my $cred (@{$creds}) {
if ($cred->{type} == Sys::Virt::CRED_AUTHNAME) {
$cred->{result} = $username;
}
if ($cred->{type} == Sys::Virt::CRED_PASSPHRASE) {
$cred->{result} = $password;
}
}
return 0;
});
Create a new stream, with the given flags
Create a new domain based on the XML description passed into the $xml
parameter. The returned object is an instance of the Sys::Virt::Domain
class. This method is not available with unprivileged connections to
the VMM. The $flags parameter accepts one of the DOMAIN CREATION
constants documented in Sys::Virt::Domain, and defaults to 0 if omitted.
Defines, but does not start, a new domain based on the XML description
passed into the $xml parameter. The returned object is an instance
of the Sys::Virt::Domain class. This method is not available with
unprivileged connections to the VMM. The defined domain can be later started
by calling the create method on the returned Sys::Virt::Domain
object.
Create a new network based on the XML description passed into the $xml
parameter. The returned object is an instance of the Sys::Virt::Network
class. This method is not available with unprivileged connections to
the VMM.
Defines, but does not start, a new network based on the XML description
passed into the $xml parameter. The returned object is an instance
of the Sys::Virt::Network class. This method is not available with
unprivileged connections to the VMM. The defined network can be later started
by calling the create method on the returned Sys::Virt::Network
object.
Create a new storage pool based on the XML description passed into the $xml
parameter. The returned object is an instance of the Sys::Virt::StoragePool
class. This method is not available with unprivileged connections to
the VMM.
Defines, but does not start, a new storage pol based on the XML description
passed into the $xml parameter. The returned object is an instance
of the Sys::Virt::StoragePool class. This method is not available with
unprivileged connections to the VMM. The defined pool can be later started
by calling the create method on the returned Sys::Virt::StoragePool
object.
Create a new interface based on the XML description passed into the $xml
parameter. The returned object is an instance of the Sys::Virt::Interface
class. This method is not available with unprivileged connections to
the VMM.
Defines, but does not start, a new interface based on the XML description
passed into the $xml parameter. The returned object is an instance
of the Sys::Virt::Interface class. This method is not available with
unprivileged connections to the VMM. The defined interface can be later started
by calling the create method on the returned Sys::Virt::Interface
object.
Create a new virtual node device based on the XML description passed into the
$xml parameter. The returned object is an instance of the Sys::Virt::NodeDevice
class. This method is not available with unprivileged connections to
the VMM.
Return a list of all domains currently known to the VMM. The elements in the returned list are instances of the Sys::Virt::Domain class.
Return the number of running domains known to the VMM. This can be
used as the maxids parameter to list_domain_ids.
Return a list of all domain IDs currently known to the VMM. The IDs can
be used with the get_domain_by_id method.
Return a list of all domains defined, but not currently running, on the VMM. The elements in the returned list are instances of the Sys::Virt::Domain class.
Return the number of running domains known to the VMM. This can be
used as the maxnames parameter to list_defined_domain_names.
Return a list of names of all domains defined, but not currently running, on
the VMM. The names can be used with the get_domain_by_name method.
Return a list of all networks currently known to the VMM. The elements in the returned list are instances of the Sys::Virt::Network class.
Return the number of running networks known to the VMM. This can be
used as the maxids parameter to list_network_ids.
Return a list of all network names currently known to the VMM. The names can
be used with the get_network_by_name method.
Return a list of all networks defined, but not currently running, on the VMM. The elements in the returned list are instances of the Sys::Virt::Network class.
Return the number of running networks known to the host. This can be
used as the maxnames parameter to list_defined_network_names.
Return a list of names of all networks defined, but not currently running, on
the host. The names can be used with the get_network_by_name method.
Return a list of all storage pools currently known to the host. The elements in the returned list are instances of the Sys::Virt::StoragePool class.
Return the number of running storage pools known to the VMM. This can be
used as the maxids parameter to list_storage_pool_names.
Return a list of all storage pool names currently known to the VMM. The IDs can
be used with the get_network_by_id method.
Return a list of all storage pools defined, but not currently running, on the host. The elements in the returned list are instances of the Sys::Virt::StoragePool class.
Return the number of running networks known to the host. This can be
used as the maxnames parameter to list_defined_storage_pool_names.
Return a list of names of all storage pools defined, but not currently running, on
the host. The names can be used with the get_storage_pool_by_name method.
Return a list of all devices currently known to the host OS. The elements
in the returned list are instances of the Sys::Virt::NodeDevice class.
The optional capability parameter allows the list to be restricted to
only devices with a particular capability type.
Return the number of host devices known to the VMM. This can be
used as the maxids parameter to list_node_device_names.
The capability parameter allows the list to be restricted to
only devices with a particular capability type, and should be left
as undef if the full list is required. The optional <flags>
parameter is currently unused and defaults to 0 if omitted.
Return a list of all host device names currently known to the VMM. The names can
be used with the get_node_device_by_name method.
The capability parameter allows the list to be restricted to
only devices with a particular capability type, and should be left
as undef if the full list is required. The optional <flags>
parameter is currently unused and defaults to 0 if omitted.
Return a list of all network interfaces currently known to the VMM. The elements in the returned list are instances of the Sys::Virt::Interface class.
Return the number of running interfaces known to the VMM. This can be
used as the maxnames parameter to list_interface_names.
Return a list of all interface names currently known to the VMM. The names can
be used with the get_interface_by_name method.
Return a list of all network interfaces currently known to the VMM. The elements in the returned list are instances of the Sys::Virt::Interface class.
Return the number of inactive interfaces known to the VMM. This can be
used as the maxnames parameter to list_defined_interface_names.
Return a list of inactive interface names currently known to the VMM. The names can
be used with the get_interface_by_name method.
Return a list of all secrets currently known to the VMM. The elements in the returned list are instances of the Sys::Virt::Secret class.
Return the number of secrets known to the VMM. This can be
used as the maxuuids parameter to list_secrets.
Return a list of all secret uuids currently known to the VMM. The uuids can
be used with the get_secret_by_uuid method.
Return a list of all nwfilters currently known to the VMM. The elements in the returned list are instances of the Sys::Virt::NWFilter class.
Return the number of running nwfilters known to the VMM. This can be
used as the maxids parameter to list_nwfilter_names.
Return a list of all nwfilter names currently known to the VMM. The names can
be used with the get_nwfilter_by_name method.
Return the domain with a name of $name. The returned object is
an instance of the Sys::Virt::Domain class.
Return the domain with a local id of $id. The returned object is
an instance of the Sys::Virt::Domain class.
Return the domain with a globally unique id of $uuid. The returned object is
an instance of the Sys::Virt::Domain class.
Return the network with a name of $name. The returned object is
an instance of the Sys::Virt::Network class.
Return the network with a globally unique id of $uuid. The returned object is
an instance of the Sys::Virt::Network class.
Return the storage pool with a name of $name. The returned object is
an instance of the Sys::Virt::StoragePool class.
Return the storage pool with a globally unique id of $uuid. The returned object is
an instance of the Sys::Virt::StoragePool class.
Return the storage volume with a location of $path. The returned object is
an instance of the Sys::Virt::StorageVol class.
Return the storage volume with a globally unique id of $key. The returned object is
an instance of the Sys::Virt::StorageVol class.
Return the node device with a name of $name. The returned object is
an instance of the Sys::Virt::NodeDevice class.
Return the interface with a name of $name. The returned object is
an instance of the Sys::Virt::Interface class.
Return the interface with a MAC address of $mac. The returned object is
an instance of the Sys::Virt::Interface class.
Return the secret with a globally unique id of $uuid. The returned object is
an instance of the Sys::Virt::Secret class.
Return the secret with a usage type of $usageType, identified
by $usageID. The returned object is an instance of the
Sys::Virt::Secret class.
Return the domain with a name of $name. The returned object is
an instance of the Sys::Virt::NWFilter class.
Return the nwfilter with a globally unique id of $uuid. The returned object is
an instance of the Sys::Virt::NWFilter class.
Probe for available storage pool sources for the pool of type $type.
The $srcspec parameter can be undef, or a parameter to refine the
discovery process, for example a server hostname for NFS discovery. The
$flags parameter is optional, and if omitted defaults to zero. The
returned scalar is an XML document describing the discovered storage
pool sources.
Recreate a domain from the saved state file given in the $savefile parameter.
Return the maximum number of vcpus that can be configured for a domain
of type $domtype
Return the name of the host with which this connection is associated.
Return the URI associated with the open connection. This may be different from the URI used when initially connecting to libvirt, when 'auto-probing' or drivers occurrs.
Return an XML documenting representing the host system information, typically obtained from SMBIOS tables.
Return the type of virtualization backend accessed by this VMM object. Currently
the only supported type is Xen.
Convert the native hypervisor configuration $config which is in format
<$format> into libvirrt domain XML. Valid values of $format vary between
hypervisor drivers.
Convert the libvirt domain XML configuration $xml to a native hypervisor
configuration in format $format
Return the complete version number as a string encoded in the
formula (major * 1000000) + (minor * 1000) + micro.
Return the major version number of the libvirt library.
Return the minor version number of the libvirt library.
Return the micro version number of the libvirt library.
Return the version number of the API associated with
the active connection. This differs from get_version
in that if the connection is to a remote libvirtd
daemon, it will return the API version of the remote
libvirt, rather than the local client.
Returns a true value if the current connection is secure against network interception. This implies either use of UNIX sockets, or encryption with a TCP stream.
Returns a true value if the current connection data stream is encrypted.
Returns a hash reference summarising the capabilities of the host node. The elements of the hash are as follows:
Register a callback to received notificaitons of domain state change
events. Only a single callback can be registered with each connection
instance. The callback will be invoked with four parameters, an
instance of Sys::Virt for the connection, an instance of Sys::Virt::Domain
for the domain changing state, and a event and detail arguments,
corresponding to the event constants defined in the Sys::Virt::Domain
module. Before discarding the connection object, the callback must be
deregistered, otherwise the connection object memory will never be
released in garbage collection.
Unregister a callback, allowing the connection object to be garbage collected.
Register a callback to received notifications of domain events.
The $dom parameter can be undef to request events on all
known domains, or a specific Sys::Virt::Domain object to
filter events. The $eventID parameter is one of the EVENT ID
constants described later in this document. The $callback is
a subroutine reference that will receive the events.
All callbacks receive a Sys::Virt connection as the first parameter
and a Sys::Virt::Domain object indiciating the domain on which the
event occurred as the second parameter. Subsequent parameters vary
according to the event type
Extra event and detail parameters defining the lifecycle
transition that occurred.
No extra parameters
The utcoffset gives the offset from UTC in seconds
The action defines the action that is taken as a result
of the watchdog triggering. One of the WATCHDOG constants
described later
The srcPath is the file on the host which had the error.
The devAlias is the unique device alias from the guest
configuration associated with srcPath. The action is
the action taken as a result of the error, one of the
IO ERROR constants described later
The phase is the stage of the connection, one of the GRAPHICS
PHASE constants described later. The local and remote
parameters follow with the details of the local and remote
network addresses. The authScheme describes how the user
was authenticated (if at all). Finally identities is an
array ref containing authenticated identities for the user,
if any.
The return value is a unique callback ID that must be used when unregistering the event.
Unregister a callback, associated with the $callbackID previously
obtained from domain_event_register_any.
Given an array ref whose elements are XML documents describing host CPUs,
compute the baseline CPU model that is operable across all hosts. The
XML for the baseline CPU model is returned. The optional $flags
parameter is currently unused and defaults to 0.
The amount of physical memory in the host
The model of the CPU, eg x86_64
The total number of logical CPUs
The peak MHZ of the CPU
The number of NUMA cells
The number of CPU sockets
The number of cores per socket
The number of threads per core
Returns a hash reference summarising the security model of the
host node. There are two keys in the hash, model specifying
the name of the security model (eg 'selinux') and doi
specifying the 'domain of interpretation' for security labels.
Returns an XML document describing the hypervisor capabilities
Checks whether the CPU definition in $xml is compatible with the
current hypervisor connection. This can be used to determine whether
it is safe to migrate a guest to this host. The returned result is
one of the constants listed later
Returns the current free memory on the host
Returns the free memory on each NUMA cell between $start and $end.
The following sets of constants are useful when dealing with APIs in this package
When providing authentication callbacks, the following constants indicate the type of credential being requested
Identity to act as
Identity to authorize as
Client supplies a nonce
Authentication realm
Challenge response non-secret
Challenge response secret
Passphrase secret
RFC 1766 language code
Externally provided credential
This host is missing one or more CPU features in the CPU description
The host has an identical CPU description
The host offers a superset of the CPU descriptoon
Hopefully none, but the XS code needs to be audited to ensure it is not leaking memory.
Daniel P. Berrange <berrange@redhat.com>
Copyright (C) 2006-2009 Red Hat Copyright (C) 2006-2009 Daniel P. Berrange
This program is free software; you can redistribute it and/or modify it under the terms of either 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), or, the Artistic License, as specified in the Perl README file.
Sys::Virt::Domain, Sys::Virt::Network, Sys::Virt::StoragePool,
Sys::Virt::StorageVol, Sys::Virt::Error, http://libvirt.org
| Sys-Virt documentation | view source | Contained in the Sys-Virt distribution. |