1. 16 1月, 2013 13 次提交
  2. 15 1月, 2013 20 次提交
  3. 14 1月, 2013 7 次提交
    • D
      Introduce an LXC specific public API & library · 3d1596b0
      Daniel P. Berrange 提交于
      This patch introduces support for LXC specific public APIs. In
      common with what was done for QEMU, this creates a libvirt_lxc.so
      library and libvirt/libvirt-lxc.h header file.
      
      The actual APIs are
      
        int virDomainLxcOpenNamespace(virDomainPtr domain,
                                      int **fdlist,
                                      unsigned int flags);
      
        int virDomainLxcEnterNamespace(virDomainPtr domain,
                                       unsigned int nfdlist,
                                       int *fdlist,
                                       unsigned int *noldfdlist,
                                       int **oldfdlist,
                                       unsigned int flags);
      
      which provide a way to use the setns() system call to move the
      calling process into the container's namespace. It is not
      practical to write in a generically applicable manner. The
      nearest that we could get to such an API would be an API which
      allows to pass a command + argv to be executed inside a
      container. Even if we had such a generic API, this LXC specific
      API is still useful, because it allows the caller to maintain
      the current process context, in particular any I/O streams they
      have open.
      
      NB the virDomainLxcEnterNamespace() API is special in that it
      runs client side, so does not involve the internal driver API.
      Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
      3d1596b0
    • D
      Add a test suite for validating SELinux labelling · 907a39e7
      Daniel P. Berrange 提交于
      There are many aspects of the guest XML which result in the
      SELinux driver applying file labelling. With the increasing
      configuration options it is desirable to test this behaviour.
      It is not possible to assume that the test suite has the
      ability to set SELinux labels. Most filesystems though will
      support extended attributes. Thus for the purpose of testing,
      it is possible to extend the existing LD_PRELOAD hack to
      override setfilecon() and getfilecon() to simply use the
      'user.libvirt.selinux' attribute for the sake of testing.
      Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
      907a39e7
    • D
      Rename HAVE_POLKIT to WITH_POLKIT · cf7ac00e
      Daniel P. Berrange 提交于
      cf7ac00e
    • D
      Remove unused XMLRPC_REQUIRED var · 14e3d7d2
      Daniel P. Berrange 提交于
      14e3d7d2
    • D
      a99bfb4b
    • D
      Convert ssh2 check to use LIBVIRT_CHECK_PKG · 0eec6972
      Daniel P. Berrange 提交于
      This converts the libssh2 configure check to use LIBVIRT_CHECK_PKG.
      Previously it would check version 1.0 and 1.3, but this simplifies
      things to just require version 1.3
      0eec6972
    • D
      Rename HAVE_LIBSSH2 to WITH_SSH2 · e1e94f2e
      Daniel P. Berrange 提交于
      e1e94f2e