1. 09 2月, 2018 5 次提交
    • D
      build: link libvirt_lxc against libvirt.so · 5cbe0b10
      Daniel P. Berrangé 提交于
      Rather than static linking in various of the helper libraries to
      libvirt_lxc, just link against the main libvirt.so. This is more memory
      and time efficient because it will already be cached in memory and
      sharable between processes.
      
      CAPNG flags need adding because the LXC code directly calls various
      libcapng APIs and no longer inherits the CAPNG flags via the statically
      linked .a libs.
      Signed-off-by: NDaniel P. Berrangé <berrange@redhat.com>
      5cbe0b10
    • D
      rpc: don't link in second copy of RPC code to libvirtd & lockd plugin · c3b24e70
      Daniel P. Berrangé 提交于
      The libvirt_driver_remote.la static library is linked into the
      libvirt.so dynamic library, providing both the generic RPC layer code
      and the remote protocol client driver. The libvirtd daemon the itself
      links to libvirt_driver_remote.la, in order to get access to the generic
      RPC layer code and the XDR functions for the remote driver. This means
      we get multiple copies of the same code in libvirtd, one direct and one
      indirect via libvirt.so. The same mistake affects the lockd plugin.
      
      The libvirtd daemon should instead just link aganist the generic RPC
      layer code that's in libvirt.so. This is easily doable if we add exports
      for the few symbols we've previously missed, and wildcard export xdr_*
      to expose the auto-generated XDR marshallers.
      Signed-off-by: NDaniel P. Berrangé <berrange@redhat.com>
      c3b24e70
    • D
      storage: move storage file backend framework into util directory · 064fec69
      Daniel P. Berrangé 提交于
      The QEMU driver loadable module needs to be able to resolve all ELF
      symbols it references against libvirt.so. Some of its symbols can only
      be resolved against the storage_driver.so loadable module which creates
      a hard dependancy between them. By moving the storage file backend
      framework into the util directory, this gets included directly in the
      libvirt.so library. The actual backend implementations are still done as
      loadable modules, so this doesn't re-add deps on gluster libraries.
      Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
      064fec69
    • D
      storage: extract storage file backend from main storage driver backend · 3be2d168
      Daniel P. Berrangé 提交于
      The storage driver backends are serving the public storage pools API,
      while the storage file backends are serving the internal QEMU driver and
      / or libvirt utility code.
      
      To prep for moving this storage file backend framework into the utility
      code, split out the backend definitions.
      Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
      3be2d168
    • T
      fix regex to check CN from server certificate · d0a60771
      Tiago M. Vieira 提交于
      Currently when the script validates the PKI files and
      the certificate 'Subject:' field contains RDNs after
      the Common Name (CN), these values are also included,
      creating a false result that the CN is not correct.
      
      A small change to the sed regex fixes this issue, by
      extracting only the value for CN and nothing else. The
      regex is replaced with the exact same regex used to
      extract the CN value from the client certificate.
      d0a60771
  2. 08 2月, 2018 1 次提交
  3. 07 2月, 2018 8 次提交
  4. 06 2月, 2018 12 次提交
  5. 05 2月, 2018 10 次提交
  6. 03 2月, 2018 4 次提交