Skip to main content

A text user interface (TUI) to control virtual machines on a per user basis

Project description

VMTUI

a text user interface to control libvirt VMs on a per user basis.

libvirt polkit configuration

VMTUI is intended as a simple interface to allow unprivileged user accounts to control (i.e. (re)start, shutdown, install) their personal virtual machines. To make use of this, libvirt must be configured to use polkit. The package provides a helper script gen_libvirt_polkit_acl that allows the generation of an ACL policy based on a yaml database.

The libvirtd.conf file must be modified src

/etc/libvirt/libvirtd.conf:

access_drivers = [ "polkit" ]

In this example, a user account must belong to the adm_vmhost group to get full priviliges. User accounts with personal VMs must belong to the user_vm group.

/etc/polkit-1/rules.d/100-libvirt-acl.rule:

polkit.addRule(function(action, subject) {
    if (subject.isInGroup("adm_vmhost")) {
        // Grant full access to all libvirt actions related to domains
        if (action.id.startsWith("org.libvirt.api.domain")) {
            return polkit.Result.YES;
        }

        // Grant access to manage networks and storage as well
        if (action.id.startsWith("org.libvirt.api.network") ||
            action.id.startsWith("org.libvirt.api.storage")) {
            return polkit.Result.YES;
        }
    }
});

polkit.addRule(function(action, subject) {
    if ( subject.isInGroup("user_vm") ) {
        if (action.id.startsWith("org.libvirt.api.domain") && action.lookup("connect_driver")=="QEMU") {
            var dom = action.lookup("domain_name");
            if( (subject.user == "alice" && dom == "rocky9-2") ||
                (subject.user == "bob" && dom == "rocky9-3") || // these are the "entry types that must be read from a file, either to grant access to a user or a group
                false // makes generation easier
            ) {
                return polkit.Result.YES;
                } else {
                return polkit.Result.NO;
            }
        } else if ( action.id.startsWith("org.libvirt.api.network") ) {
            if ( action.id.endsWith("getattr") ||
                 action.id.endsWith("read") ||
                 action.id.endsWith("create")
                ) {
                return polkit.Result.YES;
            } else {
                return polkit.Result.NO;
            }
        }
    }
}
);

The example grants the user alice access to the domain rocky9-2, while bob is allowed to manage rocky9-3.

To simplify the generation of the polkit ACL use the s script and provide a user_acl.yaml:

libvirt_acl:
  admin_groups: # configure groups that have full access
    - adm_vmhost
  domains: # domain specific ACL
    rocky9: # grant users alice and bob and members of the group mod_vmhost access to 'rocky9''
      users:
        - alice
        - bob
      groups:
        - mod_vmhost
    rocky9-2: # grant alice access to rocky9-2 
      users:
        - alice
    rocky9-3: # grant bob access to rocky9-3
      users:
        - bob

To generate the ACL (as root):

gen_libvirt_polkit_acl --acl user_acl.yaml 

It might be necessary to restart libvirt and polkit.

systemctl restart polkit
systemctl restart libvirtd

SSH configuration for vmtui

You can limit ssh access to vmtui with the following configuration (limits members of the user_vm group to vmtui). It is recommended to use a virtual environment.

/etc/ssh/sshd_config.d/10-vmtui-conf

Match Group user_vm
    ForceCommand $path_to_virt_env/bin/python -m vmtui.vmtui -c $config_path

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vmtui-0.9.2.tar.gz (11.5 kB view details)

Uploaded Source

Built Distribution

vmtui-0.9.2-py3-none-any.whl (10.9 kB view details)

Uploaded Python 3

File details

Details for the file vmtui-0.9.2.tar.gz.

File metadata

  • Download URL: vmtui-0.9.2.tar.gz
  • Upload date:
  • Size: 11.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.8

File hashes

Hashes for vmtui-0.9.2.tar.gz
Algorithm Hash digest
SHA256 2c7adcb9192c7b67f5f5f76a49f9521ca00ba0af0607037924ade2f7704b3ee5
MD5 27a86a0015b16c87cae9e10b82896567
BLAKE2b-256 119934503bfbd09af78f0eb097a2cff3d2609633ecd4cee31d945a25d5e24262

See more details on using hashes here.

File details

Details for the file vmtui-0.9.2-py3-none-any.whl.

File metadata

  • Download URL: vmtui-0.9.2-py3-none-any.whl
  • Upload date:
  • Size: 10.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.8

File hashes

Hashes for vmtui-0.9.2-py3-none-any.whl
Algorithm Hash digest
SHA256 2263e22a0afa3015faf953589c6cddbb56aa1494085cc6cfb8eab71ca5709016
MD5 56c357469b1f9d11ce57d03c44b7d055
BLAKE2b-256 17546af941191a3b8e034127675a38d4f5ae92d18903ed47e7e3c7c9ba08a908

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page