Libvirt provides a portable, long term stable C API for managing the virtualization technologies provided by many operating systems. It includes support for QEMU, KVM, Xen, LXC, bhyve, Virtuozzo, VMware vCenter and ESX, VMware Desktop, Hyper-V, VirtualBox and the POWER Hypervisor.
Go to file
Andrea Bolognani 69a8c64f4b tests: Add negative test for Intel IOMMU
Make sure validation is working as intended by trying to use
Intel IOMMU with the i440fx machine type, though we know it's
a q35-only feature, and expecting an error to be returned.

Signed-off-by: Andrea Bolognani <abologna@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
2019-05-22 14:54:32 +02:00
.gnulib@8089c00979 maint: update gnulib for syntax-check on BSD 2019-01-07 13:54:07 -06:00
build-aux build-aux: header-ifdef: Handle #pragma once 2019-04-04 18:42:09 -04:00
docs docs: hacking: Discourage use of the ternary operator and ban it's abuse 2019-05-22 14:46:29 +02:00
examples examples: Fix installation on Windows 2019-05-17 16:05:51 +02:00
gnulib maint: Fix VPATH build 2019-01-07 21:56:16 -06:00
include/libvirt qemu: Add entry for balloon stats stat-htlb-pgalloc and stat-htlb-pgfail 2019-05-20 11:18:25 +02:00
m4 m4: Drop needless string checks 2019-05-17 15:08:59 +02:00
po po: refresh translations from zanata 2019-01-14 18:10:21 +00:00
src qemu: monitor: Use VIR_AUTOPTR in qemuMonitorJSON(Drive/Blockdev)Mirror 2019-05-21 14:22:07 +02:00
tests tests: Add negative test for Intel IOMMU 2019-05-22 14:54:32 +02:00
tools qemu: Add entry for balloon stats stat-htlb-pgalloc and stat-htlb-pgfail 2019-05-20 11:18:25 +02:00
.color_coded.in
.ctags ctags: Generate tags for headers, i.e. function prototypes 2018-09-18 14:21:33 +02:00
.dir-locals.el
.gitignore tests: add targets for building libvirt inside Docker containers 2019-04-11 18:38:56 +01:00
.gitlab-ci.yml tests: perform cross compiler builds on GitLab CI 2019-05-09 11:34:53 +01:00
.gitmodules
.gitpublish git: add config file telling git-publish how to send patches 2018-04-23 11:36:09 +01:00
.mailmap AUTHORS: Add Katerina Koukiou 2018-07-17 17:01:19 +02:00
.travis.yml travis: put macOS script inline in the macOS matrix entry 2019-04-11 18:38:56 +01:00
.ycm_extra_conf.py.in
ABOUT-NLS
AUTHORS.in AUTHORS: Add Katerina Koukiou 2018-07-17 17:01:19 +02:00
autogen.sh
bootstrap maint: update gnulib for syntax-check on BSD 2019-01-07 13:54:07 -06:00
bootstrap.conf maint: Stop generating ChangeLog from git 2019-04-03 09:45:25 +02:00
cfg.mk snapshot: Make virDomainSnapshotDef a virObject 2019-05-09 10:02:53 -05:00
ChangeLog maint: Stop generating ChangeLog from git 2019-04-03 09:45:25 +02:00
config-post.h build: remove WITH_YAJL2 2019-04-03 13:30:47 +02:00
configure.ac docs: Install documentation under $(docdir) 2019-05-13 12:02:13 +02:00
COPYING
COPYING.LESSER
libvirt-admin.pc.in Add libvirt-admin library 2015-06-16 13:46:20 +02:00
libvirt-lxc.pc.in
libvirt-qemu.pc.in
libvirt.pc.in
libvirt.spec.in rpm: remove dependancy from qemu to network/storage drivers 2019-05-20 12:27:37 +01:00
Makefile.am Don't include Makefile.ci in Makefile.am 2019-05-10 09:12:52 +02:00
Makefile.ci Add support for podman in Makefile.ci 2019-05-10 14:13:06 +02:00
Makefile.nonreentrant
mingw-libvirt.spec.in spec: Bump minimum supported Fedora version to 29 2019-05-09 15:08:03 +02:00
README
README-hacking docs: update all GIT repo examples to use https:// protocol 2018-03-21 14:48:01 +00:00
README.md
run.in run: Don't export unnecessary paths 2019-03-15 11:50:23 +01:00

Build Status CII Best Practices

Libvirt API for virtualization

Libvirt provides a portable, long term stable C API for managing the virtualization technologies provided by many operating systems. It includes support for QEMU, KVM, Xen, LXC, bhyve, Virtuozzo, VMware vCenter and ESX, VMware Desktop, Hyper-V, VirtualBox and the POWER Hypervisor.

For some of these hypervisors, it provides a stateful management daemon which runs on the virtualization host allowing access to the API both by non-privileged local users and remote users.

Layered packages provide bindings of the libvirt C API into other languages including Python, Perl, PHP, Go, Java, OCaml, as well as mappings into object systems such as GObject, CIM and SNMP.

Further information about the libvirt project can be found on the website:

https://libvirt.org

License

The libvirt C API is distributed under the terms of GNU Lesser General Public License, version 2.1 (or later). Some parts of the code that are not part of the C library may have the more restrictive GNU General Public License, version 2.1 (or later). See the files COPYING.LESSER and COPYING for full license terms & conditions.

Installation

Libvirt uses the GNU Autotools build system, so in general can be built and installed with the usual commands. For example, to build in a manner that is suitable for installing as root, use:

$ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
$ make
$ sudo make install

While to build & install as an unprivileged user

$ ./configure --prefix=$HOME/usr
$ make
$ make install

The libvirt code relies on a large number of 3rd party libraries. These will be detected during execution of the configure script and a summary printed which lists any missing (optional) dependencies.

Contributing

The libvirt project welcomes contributions in many ways. For most components the best way to contribute is to send patches to the primary development mailing list. Further guidance on this can be found on the website:

https://libvirt.org/contribute.html

Contact

The libvirt project has two primary mailing lists:

Further details on contacting the project are available on the website:

https://libvirt.org/contact.html