Codebase list libvirt / upstream/4.7.0 docs / architecture.html
upstream/4.7.0

Tree @upstream/4.7.0 (Download .tar.gz)

architecture.html @upstream/4.7.0raw · history · blame

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
  <!--
        This file is autogenerated from architecture.html.in
        Do not edit this file. Changes will be lost.
      -->
  <!--
        This page was generated at Tue Aug 28 09:04:26 UTC 2018.
      -->
  <head>
    <meta charset="UTF-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1"/>
    <link rel="stylesheet" type="text/css" href="main.css"/>
    <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/>
    <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/>
    <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/>
    <link rel="manifest" href="/manifest.json"/>
    <meta name="theme-color" content="#ffffff"/>
    <title>libvirt: libvirt architecture</title>
    <meta name="description" content="libvirt, virtualization, virtualization API"/>
    <script type="text/javascript">
      <!--
          
      function init() {
          window.addEventListener('scroll', function(e){
              var distanceY = window.pageYOffset || document.documentElement.scrollTop,
              shrinkOn = 94
              home = document.getElementById("home");
              links = document.getElementById("jumplinks");
              search = document.getElementById("search");
              body = document.getElementById("body");
              if (distanceY > shrinkOn) {
                  if (home.className != "navhide") {
                      body.className = "navhide"
                      home.className = "navhide"
                      links.className = "navhide"
                      search.className = "navhide"
                  }
              } else {
                  if (home.className == "navhide") {
                      body.className = ""
                      home.className = ""
                      links.className = ""
                      search.className = ""
                  }
              }
          });
      }
      window.onload = init();
           
          -->
    </script>
  </head>
  <body>
    <div id="body">
      <div id="content">
        <h1>libvirt architecture</h1>
        <p>
      Currently libvirt supports 2 kind of virtualization, and its
      internal structure is based on a driver model which simplifies
      adding new
      engines:
    </p>
        <ul>
          <li>
            <a href="#Xen">Xen support</a>
          </li>
          <li>
            <a href="#QEMU">QEMU and KVM support</a>
          </li>
          <li>
            <a href="#drivers">Driver based architecture</a>
          </li>
        </ul>
        <h2>
          <a id="Xen">Xen support</a>
          <a class="headerlink" href="#Xen" title="Permalink to this headline"></a>
        </h2>
        <p>When running in a Xen environment, programs using libvirt have to execute
in "Domain 0", which is the primary Linux OS loaded on the machine. That OS
kernel provides most if not all of the actual drivers used by the set of
domains. It also runs the Xen Store, a database of information shared by the
hypervisor, the backend drivers, any running domains, and libxl (aka libxenlight).
libxl provides a set of APIs for creating and managing domains, which can be used
by applications such as the xl tool provided by Xen or libvirt. The hypervisor,
drivers, kernels and daemons communicate though a shared system bus
implemented in the hypervisor. The figure below tries to provide a view of
this environment:</p>
        <img src="architecture.gif" alt="The Xen architecture"/>
        <p>The library will interact with libxl for all management operations
on a Xen system.</p>
        <p>Note that the libvirt libxl driver only supports root access.</p>
        <h2>
          <a id="QEMU">QEMU and KVM support</a>
          <a class="headerlink" href="#QEMU" title="Permalink to this headline"></a>
        </h2>
        <p>The model for QEMU and KVM is completely similar, basically KVM is based
on QEMU for the process controlling a new domain, only small details differs
between the two. In both case the libvirt API is provided by a controlling
process forked by libvirt in the background and which launch and control the
QEMU or KVM process. That program called libvirt_qemud talks though a specific
protocol to the library, and connects to the console of the QEMU process in
order to control and report on its status. Libvirt tries to expose all the
emulations models of QEMU, the selection is done when creating the new
domain, by specifying the architecture and machine type targeted.</p>
        <p>The code controlling the QEMU process is available in the
<code>qemud/</code> directory.</p>
        <h2>
          <a id="drivers">Driver based architecture</a>
          <a class="headerlink" href="#drivers" title="Permalink to this headline"></a>
        </h2>
        <p>As the previous section explains, libvirt can communicate using different
channels with the current hypervisor, and should also be able to use
different kind of hypervisor. To simplify the internal design, code, ease
maintenance and simplify the support of other virtualization engine the
internals have been structured as one core component, the libvirt.c module
acting as a front-end for the library API and a set of hypervisor drivers
defining a common set of routines. That way the Xen Daemon access, the Xen
Store one, the Hypervisor hypercall are all isolated in separate C modules
implementing at least a subset of the common operations defined by the
drivers present in driver.h:</p>
        <ul>
          <li>xend_internal: implements the driver functions though the Xen
  Daemon</li>
          <li>xs_internal: implements the subset of the driver available though the
    Xen Store</li>
          <li>xen_internal: provide the implementation of the functions possible via
    direct hypervisor access</li>
          <li>proxy_internal: provide read-only Xen access via a proxy, the proxy code
    is in the <code>proxy/</code> directory.</li>
          <li>xm_internal: provide support for Xen defined but not running
    domains.</li>
          <li>qemu_internal: implement the driver functions for QEMU and
    KVM virtualization engines. It also uses a qemud/ specific daemon
    which interacts with the QEMU process to implement libvirt API.</li>
          <li>test: this is a test driver useful for regression tests of the
    front-end part of libvirt.</li>
        </ul>
        <p>Note that a given driver may only implement a subset of those functions,
(for example saving a Xen domain state to disk and restoring it is only
possible though the Xen Daemon), in that case the driver entry points for
unsupported functions are initialized to NULL.</p>
        <p/>
      </div>
    </div>
    <div id="nav">
      <div id="home">
        <a href="index.html">Home</a>
      </div>
      <div id="jumplinks">
        <ul>
          <li>
            <a href="downloads.html">Download</a>
          </li>
          <li>
            <a href="contribute.html">Contribute</a>
          </li>
          <li>
            <a href="docs.html">Docs</a>
          </li>
        </ul>
      </div>
      <div id="search">
        <form action="search.php" enctype="application/x-www-form-urlencoded" method="get">
          <div>
            <input name="query" type="text" size="12" value=""/>
            <input name="submit" type="submit" value="Go"/>
          </div>
        </form>
      </div>
    </div>
    <div id="footer">
      <div id="contact">
        <h3>Contact</h3>
        <ul>
          <li>
            <a href="contact.html#email">email</a>
          </li>
          <li>
            <a href="contact.html#irc">irc</a>
          </li>
        </ul>
      </div>
      <div id="community">
        <h3>Community</h3>
        <ul>
          <li>
            <a href="https://twitter.com/hashtag/libvirt">twitter</a>
          </li>
          <li>
            <a href="https://plus.google.com/communities/109522598353007505282">google+</a>
          </li>
          <li>
            <a href="http://stackoverflow.com/questions/tagged/libvirt">stackoverflow</a>
          </li>
          <li>
            <a href="http://serverfault.com/questions/tagged/libvirt">serverfault</a>
          </li>
        </ul>
      </div>
      <div id="conduct">
            Participants in the libvirt project agree to abide by <a href="governance.html#codeofconduct">the project code of conduct</a></div>
      <br class="clear"/>
    </div>
  </body>
</html>