2017-02-24 00:14:13 +01:00
|
|
|
# -*- encoding: utf8 -*-
|
|
|
|
#
|
|
|
|
# The Qubes OS Project, http://www.qubes-os.org
|
|
|
|
#
|
|
|
|
# Copyright (C) 2017 Marek Marczykowski-Górecki
|
|
|
|
# <marmarek@invisiblethingslab.com>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
# with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
2017-02-25 20:56:31 +01:00
|
|
|
'''
|
|
|
|
Main Qubes() class and related classes.
|
|
|
|
'''
|
2017-05-24 04:24:22 +02:00
|
|
|
import os
|
2017-04-15 20:11:04 +02:00
|
|
|
import shlex
|
2017-02-25 20:56:31 +01:00
|
|
|
import socket
|
2017-02-24 00:14:13 +01:00
|
|
|
import subprocess
|
|
|
|
|
2017-04-15 20:10:04 +02:00
|
|
|
import logging
|
|
|
|
|
2017-05-11 23:21:04 +02:00
|
|
|
import qubesadmin.base
|
|
|
|
import qubesadmin.exc
|
|
|
|
import qubesadmin.label
|
|
|
|
import qubesadmin.storage
|
|
|
|
import qubesadmin.utils
|
|
|
|
import qubesadmin.vm
|
|
|
|
import qubesadmin.config
|
2017-02-24 00:14:13 +01:00
|
|
|
|
|
|
|
BUF_SIZE = 4096
|
2017-05-11 23:21:04 +02:00
|
|
|
VM_ENTRY_POINT = 'qubesadmin.vm'
|
2017-02-25 20:56:31 +01:00
|
|
|
|
2017-02-24 00:14:13 +01:00
|
|
|
class VMCollection(object):
|
2017-02-25 20:56:31 +01:00
|
|
|
'''Collection of VMs objects'''
|
2017-02-24 00:14:13 +01:00
|
|
|
def __init__(self, app):
|
|
|
|
self.app = app
|
|
|
|
self._vm_list = None
|
2017-02-28 01:34:09 +01:00
|
|
|
self._vm_objects = {}
|
2017-02-24 00:14:13 +01:00
|
|
|
|
2017-02-24 01:38:47 +01:00
|
|
|
def clear_cache(self):
|
|
|
|
'''Clear cached list of VMs'''
|
|
|
|
self._vm_list = None
|
|
|
|
|
2017-02-24 00:14:13 +01:00
|
|
|
def refresh_cache(self, force=False):
|
2017-02-24 01:38:47 +01:00
|
|
|
'''Refresh cached list of VMs'''
|
2017-02-24 00:14:13 +01:00
|
|
|
if not force and self._vm_list is not None:
|
|
|
|
return
|
2017-02-24 00:40:07 +01:00
|
|
|
vm_list_data = self.app.qubesd_call(
|
2017-02-24 00:14:13 +01:00
|
|
|
'dom0',
|
2017-05-12 19:36:03 +02:00
|
|
|
'admin.vm.List'
|
2017-02-24 00:14:13 +01:00
|
|
|
)
|
|
|
|
new_vm_list = {}
|
|
|
|
# FIXME: this will probably change
|
|
|
|
for vm_data in vm_list_data.splitlines():
|
2017-02-24 01:00:06 +01:00
|
|
|
vm_name, props = vm_data.decode('ascii').split(' ', 1)
|
2017-03-13 04:28:13 +01:00
|
|
|
vm_name = str(vm_name)
|
2017-02-24 01:00:06 +01:00
|
|
|
props = props.split(' ')
|
2017-02-24 00:14:13 +01:00
|
|
|
new_vm_list[vm_name] = dict(
|
2017-02-24 01:00:06 +01:00
|
|
|
[vm_prop.split('=', 1) for vm_prop in props])
|
2017-02-24 00:14:13 +01:00
|
|
|
|
|
|
|
self._vm_list = new_vm_list
|
2017-03-01 15:24:36 +01:00
|
|
|
for name, vm in list(self._vm_objects.items()):
|
2017-02-28 01:34:09 +01:00
|
|
|
if vm.name not in self._vm_list:
|
|
|
|
# VM no longer exists
|
|
|
|
del self._vm_objects[name]
|
|
|
|
elif vm.__class__.__name__ != self._vm_list[vm.name]['class']:
|
|
|
|
# VM class have changed
|
|
|
|
del self._vm_objects[name]
|
|
|
|
# TODO: some generation ID, to detect VM re-creation
|
|
|
|
elif name != vm.name:
|
|
|
|
# renamed
|
|
|
|
self._vm_objects[vm.name] = vm
|
|
|
|
del self._vm_objects[name]
|
2017-02-24 00:14:13 +01:00
|
|
|
|
|
|
|
def __getitem__(self, item):
|
|
|
|
if item not in self:
|
|
|
|
raise KeyError(item)
|
2017-02-28 01:34:09 +01:00
|
|
|
if item not in self._vm_objects:
|
2017-05-11 23:21:04 +02:00
|
|
|
cls = qubesadmin.utils.get_entry_point_one(VM_ENTRY_POINT,
|
2017-02-28 01:34:09 +01:00
|
|
|
self._vm_list[item]['class'])
|
|
|
|
self._vm_objects[item] = cls(self.app, item)
|
|
|
|
return self._vm_objects[item]
|
2017-02-24 00:14:13 +01:00
|
|
|
|
|
|
|
def __contains__(self, item):
|
|
|
|
self.refresh_cache()
|
|
|
|
return item in self._vm_list
|
|
|
|
|
2017-04-21 04:01:37 +02:00
|
|
|
def __delitem__(self, key):
|
2017-05-12 19:36:03 +02:00
|
|
|
self.app.qubesd_call(key, 'admin.vm.Remove')
|
2017-04-21 04:01:37 +02:00
|
|
|
self.clear_cache()
|
|
|
|
|
2017-02-24 00:14:13 +01:00
|
|
|
def __iter__(self):
|
|
|
|
self.refresh_cache()
|
|
|
|
for vm in self._vm_list:
|
|
|
|
yield self[vm]
|
|
|
|
|
|
|
|
def keys(self):
|
2017-02-25 20:56:31 +01:00
|
|
|
'''Get list of VM names.'''
|
2017-02-24 00:14:13 +01:00
|
|
|
self.refresh_cache()
|
|
|
|
return self._vm_list.keys()
|
|
|
|
|
|
|
|
|
2017-05-11 23:21:04 +02:00
|
|
|
class QubesBase(qubesadmin.base.PropertyHolder):
|
2017-02-24 00:14:13 +01:00
|
|
|
'''Main Qubes application'''
|
|
|
|
|
|
|
|
#: domains (VMs) collection
|
|
|
|
domains = None
|
2017-03-12 00:40:14 +01:00
|
|
|
#: labels collection
|
|
|
|
labels = None
|
2017-03-12 21:21:16 +01:00
|
|
|
#: storage pools
|
|
|
|
pools = None
|
2017-04-14 13:23:02 +02:00
|
|
|
#: type of qubesd connection: either 'socket' or 'qrexec'
|
|
|
|
qubesd_connection_type = None
|
2017-04-15 20:10:04 +02:00
|
|
|
#: logger
|
|
|
|
log = None
|
2017-02-24 00:14:13 +01:00
|
|
|
|
|
|
|
def __init__(self):
|
2017-05-12 19:36:03 +02:00
|
|
|
super(QubesBase, self).__init__(self, 'admin.property.', 'dom0')
|
2017-02-24 00:14:13 +01:00
|
|
|
self.domains = VMCollection(self)
|
2017-05-11 23:21:04 +02:00
|
|
|
self.labels = qubesadmin.base.WrapperObjectsCollection(
|
2017-05-12 19:36:03 +02:00
|
|
|
self, 'admin.label.List', qubesadmin.label.Label)
|
2017-05-11 23:21:04 +02:00
|
|
|
self.pools = qubesadmin.base.WrapperObjectsCollection(
|
2017-05-12 19:36:03 +02:00
|
|
|
self, 'admin.pool.List', qubesadmin.storage.Pool)
|
2017-03-12 21:21:16 +01:00
|
|
|
#: cache for available storage pool drivers and options to create them
|
|
|
|
self._pool_drivers = None
|
2017-04-15 20:10:04 +02:00
|
|
|
self.log = logging.getLogger('app')
|
2017-03-12 21:21:16 +01:00
|
|
|
|
|
|
|
def _refresh_pool_drivers(self):
|
|
|
|
'''
|
|
|
|
Refresh cached storage pool drivers and their parameters.
|
|
|
|
|
|
|
|
:return: None
|
|
|
|
'''
|
|
|
|
if self._pool_drivers is None:
|
|
|
|
pool_drivers_data = self.qubesd_call(
|
2017-05-12 19:36:03 +02:00
|
|
|
'dom0', 'admin.pool.ListDrivers', None, None)
|
2017-03-12 21:21:16 +01:00
|
|
|
assert pool_drivers_data.endswith(b'\n')
|
|
|
|
pool_drivers = {}
|
|
|
|
for driver_line in pool_drivers_data.decode('ascii').splitlines():
|
|
|
|
if not driver_line:
|
|
|
|
continue
|
|
|
|
driver_name, driver_options = driver_line.split(' ', 1)
|
|
|
|
pool_drivers[driver_name] = driver_options.split(' ')
|
|
|
|
self._pool_drivers = pool_drivers
|
|
|
|
|
|
|
|
@property
|
|
|
|
def pool_drivers(self):
|
|
|
|
''' Available storage pool drivers '''
|
|
|
|
self._refresh_pool_drivers()
|
|
|
|
return self._pool_drivers.keys()
|
|
|
|
|
|
|
|
def pool_driver_parameters(self, driver):
|
|
|
|
''' Parameters to initialize storage pool using given driver '''
|
|
|
|
self._refresh_pool_drivers()
|
|
|
|
return self._pool_drivers[driver]
|
|
|
|
|
|
|
|
def add_pool(self, name, driver, **kwargs):
|
|
|
|
''' Add a storage pool to config
|
|
|
|
|
|
|
|
:param name: name of storage pool to create
|
|
|
|
:param driver: driver to use, see :py:meth:`pool_drivers` for
|
|
|
|
available drivers
|
|
|
|
:param kwargs: configuration parameters for storage pool,
|
|
|
|
see :py:meth:`pool_driver_parameters` for a list
|
|
|
|
'''
|
|
|
|
# sort parameters only to ease testing, not required by API
|
|
|
|
payload = 'name={}\n'.format(name) + \
|
|
|
|
''.join('{}={}\n'.format(key, value)
|
|
|
|
for key, value in sorted(kwargs.items()))
|
2017-05-12 19:36:03 +02:00
|
|
|
self.qubesd_call('dom0', 'admin.pool.Add', driver,
|
2017-03-12 21:21:16 +01:00
|
|
|
payload.encode('utf-8'))
|
|
|
|
|
|
|
|
def remove_pool(self, name):
|
|
|
|
''' Remove a storage pool '''
|
2017-05-12 19:36:03 +02:00
|
|
|
self.qubesd_call('dom0', 'admin.pool.Remove', name, None)
|
2017-02-24 00:14:13 +01:00
|
|
|
|
2017-04-28 02:09:16 +02:00
|
|
|
def get_label(self, label):
|
|
|
|
'''Get label as identified by index or name
|
|
|
|
|
|
|
|
:throws KeyError: when label is not found
|
|
|
|
'''
|
|
|
|
|
|
|
|
# first search for name, verbatim
|
|
|
|
try:
|
|
|
|
return self.labels[label]
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
# then search for index
|
|
|
|
if label.isdigit():
|
|
|
|
for i in self.labels:
|
|
|
|
if i.index == int(label):
|
|
|
|
return i
|
|
|
|
|
|
|
|
raise KeyError(label)
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_vm_class(clsname):
|
|
|
|
'''Find the class for a domain.
|
|
|
|
|
|
|
|
Classes are registered as setuptools' entry points in ``qubes.vm``
|
|
|
|
group. Any package may supply their own classes.
|
|
|
|
|
|
|
|
:param str clsname: name of the class
|
|
|
|
:return type: class
|
|
|
|
'''
|
|
|
|
|
|
|
|
try:
|
2017-05-11 23:21:04 +02:00
|
|
|
return qubesadmin.utils.get_entry_point_one(
|
2017-04-28 02:09:16 +02:00
|
|
|
VM_ENTRY_POINT, clsname)
|
|
|
|
except KeyError:
|
2017-05-11 23:21:04 +02:00
|
|
|
raise qubesadmin.exc.QubesException(
|
2017-04-28 02:09:16 +02:00
|
|
|
'no such VM class: {!r}'.format(clsname))
|
|
|
|
# don't catch TypeError
|
|
|
|
|
|
|
|
def add_new_vm(self, cls, name, label, template=None, pool=None,
|
|
|
|
pools=None):
|
|
|
|
'''Create new Virtual Machine
|
|
|
|
|
|
|
|
Example usage with custom storage pools:
|
|
|
|
|
2017-05-11 23:21:04 +02:00
|
|
|
>>> app = qubesadmin.Qubes()
|
2017-04-28 02:09:16 +02:00
|
|
|
>>> pools = {'private': 'external'}
|
|
|
|
>>> vm = app.add_new_vm('AppVM', 'my-new-vm', 'red',
|
|
|
|
>>> 'my-template', pools=pools)
|
|
|
|
>>> vm.netvm = app.domains['sys-whonix']
|
|
|
|
|
|
|
|
:param str cls: name of VM class (`AppVM`, `TemplateVM` etc)
|
|
|
|
:param str name: name of VM
|
|
|
|
:param str label: label color for new VM
|
|
|
|
:param str template: template to use (if apply for given VM class),
|
|
|
|
can be also VM object; use None for default value
|
|
|
|
:param str pool: storage pool to use instead of default one
|
|
|
|
:param dict pools: storage pool for specific volumes
|
|
|
|
:return new VM object
|
|
|
|
'''
|
|
|
|
|
|
|
|
if not isinstance(cls, str):
|
|
|
|
cls = cls.__name__
|
|
|
|
|
|
|
|
if template is not None:
|
|
|
|
template = str(template)
|
|
|
|
|
|
|
|
if pool and pools:
|
|
|
|
raise ValueError('only one of pool= and pools= can be used')
|
|
|
|
|
2017-05-12 19:36:03 +02:00
|
|
|
method_prefix = 'admin.vm.Create.'
|
2017-04-28 02:09:16 +02:00
|
|
|
payload = 'name={} label={}'.format(name, label)
|
|
|
|
if pool:
|
|
|
|
payload += ' pool={}'.format(str(pool))
|
2017-05-12 19:36:03 +02:00
|
|
|
method_prefix = 'admin.vm.CreateInPool.'
|
2017-04-28 02:09:16 +02:00
|
|
|
if pools:
|
|
|
|
payload += ''.join(' pool:{}={}'.format(vol, str(pool))
|
|
|
|
for vol, pool in sorted(pools.items()))
|
2017-05-12 19:36:03 +02:00
|
|
|
method_prefix = 'admin.vm.CreateInPool.'
|
2017-04-28 02:09:16 +02:00
|
|
|
|
|
|
|
self.qubesd_call('dom0', method_prefix + cls, template,
|
|
|
|
payload.encode('utf-8'))
|
|
|
|
|
2017-05-25 12:33:24 +02:00
|
|
|
self.domains.clear_cache()
|
2017-04-28 02:09:16 +02:00
|
|
|
return self.domains[name]
|
|
|
|
|
2017-04-28 23:23:53 +02:00
|
|
|
def clone_vm(self, src_vm, new_name, pool=None, pools=None):
|
|
|
|
'''Clone Virtual Machine
|
|
|
|
|
|
|
|
Example usage with custom storage pools:
|
|
|
|
|
2017-05-11 23:21:04 +02:00
|
|
|
>>> app = qubesadmin.Qubes()
|
2017-04-28 23:23:53 +02:00
|
|
|
>>> pools = {'private': 'external'}
|
|
|
|
>>> src_vm = app.domains['personal']
|
|
|
|
>>> vm = app.clone_vm(src_vm, 'my-new-vm', pools=pools)
|
|
|
|
>>> vm.label = app.labels['green']
|
|
|
|
|
|
|
|
:param str cls: name of VM class (`AppVM`, `TemplateVM` etc)
|
|
|
|
:param str name: name of VM
|
|
|
|
:param str label: label color for new VM
|
|
|
|
:param str template: template to use (if apply for given VM class),
|
|
|
|
can be also VM object; use None for default value
|
|
|
|
:param str pool: storage pool to use instead of default one
|
|
|
|
:param dict pools: storage pool for specific volumes
|
|
|
|
:return new VM object
|
|
|
|
'''
|
|
|
|
|
|
|
|
if pool and pools:
|
|
|
|
raise ValueError('only one of pool= and pools= can be used')
|
|
|
|
|
|
|
|
if not isinstance(src_vm, str):
|
|
|
|
src_vm = str(src_vm)
|
|
|
|
|
2017-05-12 19:36:03 +02:00
|
|
|
method = 'admin.vm.Clone'
|
2017-04-28 23:23:53 +02:00
|
|
|
payload = 'name={}'.format(new_name)
|
|
|
|
if pool:
|
|
|
|
payload += ' pool={}'.format(str(pool))
|
2017-05-12 19:36:03 +02:00
|
|
|
method = 'admin.vm.CloneInPool'
|
2017-04-28 23:23:53 +02:00
|
|
|
if pools:
|
|
|
|
payload += ''.join(' pool:{}={}'.format(vol, str(pool))
|
|
|
|
for vol, pool in sorted(pools.items()))
|
2017-05-12 19:36:03 +02:00
|
|
|
method = 'admin.vm.CloneInPool'
|
2017-04-28 23:23:53 +02:00
|
|
|
|
|
|
|
self.qubesd_call(src_vm, method, None, payload.encode('utf-8'))
|
|
|
|
|
|
|
|
return self.domains[new_name]
|
|
|
|
|
2017-04-15 20:11:04 +02:00
|
|
|
def run_service(self, dest, service, filter_esc=False, user=None,
|
2017-05-19 17:30:46 +02:00
|
|
|
localcmd=None, wait=True, **kwargs):
|
2017-04-15 20:11:04 +02:00
|
|
|
'''Run qrexec service in a given destination
|
|
|
|
|
|
|
|
*kwargs* are passed verbatim to :py:meth:`subprocess.Popen`.
|
|
|
|
|
|
|
|
:param str dest: Destination - may be a VM name or empty
|
|
|
|
string for default (for a given service)
|
|
|
|
:param str service: service name
|
|
|
|
:param bool filter_esc: filter escape sequences to protect terminal \
|
|
|
|
emulator
|
|
|
|
:param str user: username to run service as
|
|
|
|
:param str localcmd: Command to connect stdin/stdout to
|
|
|
|
:rtype: subprocess.Popen
|
|
|
|
'''
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2017-02-24 00:14:13 +01:00
|
|
|
|
|
|
|
class QubesLocal(QubesBase):
|
2017-02-25 20:56:31 +01:00
|
|
|
'''Application object communicating through local socket.
|
|
|
|
|
|
|
|
Used when running in dom0.
|
|
|
|
'''
|
2017-04-14 13:23:02 +02:00
|
|
|
|
|
|
|
qubesd_connection_type = 'socket'
|
|
|
|
|
2017-05-24 04:24:22 +02:00
|
|
|
def qubesd_call(self, dest, method, arg=None, payload=None,
|
|
|
|
payload_stream=None):
|
|
|
|
'''
|
|
|
|
Execute Admin API method.
|
|
|
|
|
|
|
|
Only one of `payload` and `payload_stream` can be specified.
|
|
|
|
|
|
|
|
:param dest: Destination VM name
|
|
|
|
:param method: Full API method name ('admin...')
|
|
|
|
:param arg: Method argument (if any)
|
|
|
|
:param payload: Payload send to the method
|
|
|
|
:param payload_stream: file-like object to read payload from
|
|
|
|
:return: Data returned by qubesd (string)
|
|
|
|
'''
|
|
|
|
if payload and payload_stream:
|
|
|
|
raise ValueError(
|
|
|
|
'Only one of payload and payload_stream can be used')
|
|
|
|
if payload_stream:
|
|
|
|
# payload_stream can be used for large amount of data,
|
|
|
|
# so optimize for throughput, not latency: spawn actual qrexec
|
|
|
|
# service implementation, which may use some optimization there (
|
|
|
|
# see admin.vm.volume.Import - actual data handling is done with dd)
|
|
|
|
method_path = os.path.join(
|
|
|
|
qubesadmin.config.QREXEC_SERVICES_DIR, method)
|
|
|
|
if not os.path.exists(method_path):
|
|
|
|
raise qubesadmin.exc.QubesDaemonCommunicationError(
|
|
|
|
'{} not found'.format(method_path))
|
|
|
|
qrexec_call_env = os.environ.copy()
|
|
|
|
qrexec_call_env['QREXEC_REMOTE_DOMAIN'] = 'dom0'
|
|
|
|
qrexec_call_env['QREXEC_REQUESTED_TARGET'] = dest
|
|
|
|
proc = subprocess.Popen([method_path, arg], stdin=payload_stream,
|
|
|
|
stdout=subprocess.PIPE, env=qrexec_call_env)
|
|
|
|
(return_data, _) = proc.communicate()
|
|
|
|
return self._parse_qubesd_response(return_data)
|
|
|
|
|
2017-02-24 00:14:13 +01:00
|
|
|
try:
|
|
|
|
client_socket = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
|
2017-05-11 23:21:04 +02:00
|
|
|
client_socket.connect(qubesadmin.config.QUBESD_SOCKET)
|
2017-02-24 00:14:13 +01:00
|
|
|
except IOError:
|
|
|
|
# TODO:
|
|
|
|
raise
|
|
|
|
|
|
|
|
# src, method, dest, arg
|
|
|
|
for call_arg in ('dom0', method, dest, arg):
|
2017-02-27 20:15:24 +01:00
|
|
|
if call_arg is not None:
|
|
|
|
client_socket.sendall(call_arg.encode('ascii'))
|
2017-02-24 00:14:13 +01:00
|
|
|
client_socket.sendall(b'\0')
|
|
|
|
if payload is not None:
|
|
|
|
client_socket.sendall(payload)
|
|
|
|
|
2017-02-27 20:15:24 +01:00
|
|
|
client_socket.shutdown(socket.SHUT_WR)
|
|
|
|
|
2017-03-11 01:16:10 +01:00
|
|
|
return_data = client_socket.makefile('rb').read()
|
2017-04-28 23:21:07 +02:00
|
|
|
client_socket.close()
|
2017-02-24 00:14:13 +01:00
|
|
|
return self._parse_qubesd_response(return_data)
|
|
|
|
|
2017-04-15 20:11:04 +02:00
|
|
|
def run_service(self, dest, service, filter_esc=False, user=None,
|
2017-05-19 17:30:46 +02:00
|
|
|
localcmd=None, wait=True, **kwargs):
|
2017-04-15 20:11:04 +02:00
|
|
|
'''Run qrexec service in a given destination
|
|
|
|
|
|
|
|
:param str dest: Destination - may be a VM name or empty
|
|
|
|
string for default (for a given service)
|
|
|
|
:param str service: service name
|
|
|
|
:param bool filter_esc: filter escape sequences to protect terminal \
|
|
|
|
emulator
|
|
|
|
:param str user: username to run service as
|
|
|
|
:param str localcmd: Command to connect stdin/stdout to
|
2017-05-19 17:30:46 +02:00
|
|
|
:param bool wait: wait for remote process to finish
|
2017-04-15 20:11:04 +02:00
|
|
|
:rtype: subprocess.Popen
|
|
|
|
'''
|
|
|
|
|
|
|
|
if not dest:
|
|
|
|
raise ValueError('Empty destination name allowed only from a VM')
|
2017-05-19 17:30:46 +02:00
|
|
|
if not wait and localcmd:
|
|
|
|
raise ValueError('wait=False incompatible with localcmd')
|
2017-04-15 20:11:04 +02:00
|
|
|
try:
|
2017-05-12 19:36:03 +02:00
|
|
|
self.qubesd_call(dest, 'admin.vm.Start')
|
2017-05-11 23:21:04 +02:00
|
|
|
except qubesadmin.exc.QubesVMNotHaltedError:
|
2017-04-15 20:11:04 +02:00
|
|
|
pass
|
|
|
|
qrexec_opts = ['-d', dest]
|
|
|
|
if filter_esc:
|
|
|
|
qrexec_opts.extend(['-t', '-T'])
|
|
|
|
if localcmd:
|
|
|
|
qrexec_opts.extend(['-l', localcmd])
|
|
|
|
if user is None:
|
|
|
|
user = 'DEFAULT'
|
2017-05-19 17:30:46 +02:00
|
|
|
if not wait:
|
|
|
|
qrexec_opts.extend(['-e'])
|
2017-04-15 20:11:04 +02:00
|
|
|
kwargs.setdefault('stdin', subprocess.PIPE)
|
|
|
|
kwargs.setdefault('stdout', subprocess.PIPE)
|
|
|
|
kwargs.setdefault('stderr', subprocess.PIPE)
|
2017-05-11 23:21:04 +02:00
|
|
|
proc = subprocess.Popen([qubesadmin.config.QREXEC_CLIENT] +
|
2017-04-15 20:11:04 +02:00
|
|
|
qrexec_opts + ['{}:QUBESRPC {} dom0'.format(user, service)],
|
|
|
|
**kwargs)
|
|
|
|
return proc
|
|
|
|
|
2017-02-24 00:14:13 +01:00
|
|
|
|
|
|
|
class QubesRemote(QubesBase):
|
2017-02-25 20:56:31 +01:00
|
|
|
'''Application object communicating through qrexec services.
|
|
|
|
|
|
|
|
Used when running in VM.
|
|
|
|
'''
|
2017-04-14 13:23:02 +02:00
|
|
|
|
|
|
|
qubesd_connection_type = 'qrexec'
|
|
|
|
|
2017-05-24 04:24:22 +02:00
|
|
|
def qubesd_call(self, dest, method, arg=None, payload=None,
|
|
|
|
payload_stream=None):
|
|
|
|
'''
|
|
|
|
Execute Admin API method.
|
|
|
|
|
|
|
|
Only one of `payload` and `payload_stream` can be specified.
|
|
|
|
|
|
|
|
:param dest: Destination VM name
|
|
|
|
:param method: Full API method name ('admin...')
|
|
|
|
:param arg: Method argument (if any)
|
|
|
|
:param payload: Payload send to the method
|
|
|
|
:param payload_stream: file-like object to read payload from
|
|
|
|
:return: Data returned by qubesd (string)
|
|
|
|
'''
|
|
|
|
if payload and payload_stream:
|
|
|
|
raise ValueError(
|
|
|
|
'Only one of payload and payload_stream can be used')
|
2017-02-24 00:14:13 +01:00
|
|
|
service_name = method
|
|
|
|
if arg is not None:
|
|
|
|
service_name += '+' + arg
|
2017-05-11 23:21:04 +02:00
|
|
|
p = subprocess.Popen([qubesadmin.config.QREXEC_CLIENT_VM,
|
2017-04-16 03:17:53 +02:00
|
|
|
dest, service_name],
|
2017-05-24 04:24:22 +02:00
|
|
|
stdin=(payload_stream or subprocess.PIPE),
|
|
|
|
stdout=subprocess.PIPE,
|
2017-02-24 00:14:13 +01:00
|
|
|
stderr=subprocess.PIPE)
|
|
|
|
(stdout, stderr) = p.communicate(payload)
|
|
|
|
if p.returncode != 0:
|
|
|
|
# TODO: use dedicated exception
|
2017-05-11 23:21:04 +02:00
|
|
|
raise qubesadmin.exc.QubesException('Service call error: %s',
|
2017-02-24 00:14:13 +01:00
|
|
|
stderr.decode())
|
|
|
|
|
|
|
|
return self._parse_qubesd_response(stdout)
|
2017-04-15 20:11:04 +02:00
|
|
|
|
|
|
|
def run_service(self, dest, service, filter_esc=False, user=None,
|
2017-05-19 17:30:46 +02:00
|
|
|
localcmd=None, wait=True, **kwargs):
|
2017-04-15 20:11:04 +02:00
|
|
|
'''Run qrexec service in a given destination
|
|
|
|
|
|
|
|
:param str dest: Destination - may be a VM name or empty
|
|
|
|
string for default (for a given service)
|
|
|
|
:param str service: service name
|
|
|
|
:param bool filter_esc: filter escape sequences to protect terminal \
|
|
|
|
emulator
|
|
|
|
:param str user: username to run service as
|
|
|
|
:param str localcmd: Command to connect stdin/stdout to
|
2017-05-19 17:30:46 +02:00
|
|
|
:param bool wait: wait for process to finish
|
2017-04-15 20:11:04 +02:00
|
|
|
:rtype: subprocess.Popen
|
|
|
|
'''
|
|
|
|
if filter_esc:
|
|
|
|
raise NotImplementedError(
|
|
|
|
'filter_esc not implemented for calls from VM')
|
|
|
|
if user:
|
|
|
|
raise ValueError(
|
|
|
|
'non-default user not possible for calls from VM')
|
2017-05-19 17:30:46 +02:00
|
|
|
if not wait and localcmd:
|
|
|
|
raise ValueError('wait=False incompatible with localcmd')
|
|
|
|
if not wait:
|
|
|
|
# qrexec-client-vm can only request service calls, which are
|
|
|
|
# started using MSG_EXEC_CMDLINE qrexec protocol message; this
|
|
|
|
# message means "start the process, pipe its stdin/out/err,
|
|
|
|
# and when it terminates, send exit code back".
|
|
|
|
# According to the protocol qrexec-client-vm needs to wait for
|
|
|
|
# MSG_DATA_EXIT_CODE, so implementing wait=False would require
|
|
|
|
# some protocol change (or protocol violation).
|
|
|
|
raise NotImplementedError(
|
|
|
|
'wait=False not implemented for calls from VM')
|
2017-04-15 20:11:04 +02:00
|
|
|
kwargs.setdefault('stdin', subprocess.PIPE)
|
|
|
|
kwargs.setdefault('stdout', subprocess.PIPE)
|
|
|
|
kwargs.setdefault('stderr', subprocess.PIPE)
|
2017-05-11 23:21:04 +02:00
|
|
|
proc = subprocess.Popen([qubesadmin.config.QREXEC_CLIENT_VM,
|
2017-04-28 23:21:31 +02:00
|
|
|
dest or '', service] + (shlex.split(localcmd) if localcmd else []),
|
2017-04-15 20:11:04 +02:00
|
|
|
**kwargs)
|
|
|
|
return proc
|