123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- # -*- encoding: utf8 -*-
- #
- # The Qubes OS Project, http://www.qubes-os.org
- #
- # Copyright (C) 2017 Marek Marczykowski-Górecki
- # <marmarek@invisiblethingslab.com>
- #
- # This library 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 library 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 library; if not, see <https://www.gnu.org/licenses/>.
- ''' Internal interface for dom0 components to communicate with qubesd. '''
- import asyncio
- import json
- import subprocess
- import qubes.api
- import qubes.api.admin
- import qubes.vm.adminvm
- import qubes.vm.dispvm
- class QubesInternalAPI(qubes.api.AbstractQubesAPI):
- ''' Communication interface for dom0 components,
- by design the input here is trusted.'''
- SOCKNAME = '/var/run/qubesd.internal.sock'
- @qubes.api.method('internal.GetSystemInfo', no_payload=True)
- @asyncio.coroutine
- def getsysteminfo(self):
- assert self.dest.name == 'dom0'
- assert not self.arg
- system_info = {'domains': {
- domain.name: {
- 'tags': list(domain.tags),
- 'type': domain.__class__.__name__,
- 'template_for_dispvms':
- getattr(domain, 'template_for_dispvms', False),
- 'default_dispvm': (str(domain.default_dispvm) if
- getattr(domain, 'default_dispvm', None) else None),
- 'icon': str(domain.label.icon),
- } for domain in self.app.domains
- }}
- return json.dumps(system_info)
- @qubes.api.method('internal.vm.volume.ImportEnd')
- @asyncio.coroutine
- def vm_volume_import_end(self, untrusted_payload):
- '''
- This is second half of admin.vm.volume.Import handling. It is called
- when actual import is finished. Response from this method is sent do
- the client (as a response for admin.vm.volume.Import call).
- '''
- assert self.arg in self.dest.volumes.keys()
- success = untrusted_payload == b'ok'
- try:
- self.dest.storage.import_data_end(self.arg, success=success)
- except:
- self.dest.fire_event('domain-volume-import-end', volume=self.arg,
- success=False)
- raise
- self.dest.fire_event('domain-volume-import-end', volume=self.arg,
- success=success)
- if not success:
- raise qubes.exc.QubesException('Data import failed')
- @qubes.api.method('internal.SuspendPre', no_payload=True)
- @asyncio.coroutine
- def suspend_pre(self):
- '''
- Method called before host system goes to sleep.
- :return:
- '''
- # first notify all VMs
- processes = []
- for vm in self.app.domains:
- if isinstance(vm, qubes.vm.adminvm.AdminVM):
- continue
- if vm.is_running():
- proc = yield from vm.run_service(
- 'qubes.SuspendPreAll', user='root',
- stdin=subprocess.DEVNULL,
- stdout=subprocess.DEVNULL,
- stderr=subprocess.DEVNULL)
- processes.append(proc)
- # FIXME: some timeout?
- if processes:
- yield from asyncio.wait([p.wait() for p in processes])
- coros = []
- # then suspend/pause VMs
- for vm in self.app.domains:
- if isinstance(vm, qubes.vm.adminvm.AdminVM):
- continue
- if vm.is_running():
- coros.append(vm.suspend())
- if coros:
- yield from asyncio.wait(coros)
- @qubes.api.method('internal.SuspendPost', no_payload=True)
- @asyncio.coroutine
- def suspend_post(self):
- '''
- Method called after host system wake up from sleep.
- :return:
- '''
- coros = []
- # first resume/unpause VMs
- for vm in self.app.domains:
- if isinstance(vm, qubes.vm.adminvm.AdminVM):
- continue
- if vm.get_power_state() in ["Paused", "Suspended"]:
- coros.append(vm.resume())
- if coros:
- yield from asyncio.wait(coros)
- # then notify all VMs
- processes = []
- for vm in self.app.domains:
- if isinstance(vm, qubes.vm.adminvm.AdminVM):
- continue
- if vm.is_running():
- proc = yield from vm.run_service(
- 'qubes.SuspendPostAll', user='root',
- stdin=subprocess.DEVNULL,
- stdout=subprocess.DEVNULL,
- stderr=subprocess.DEVNULL)
- processes.append(proc)
- # FIXME: some timeout?
- if processes:
- yield from asyncio.wait([p.wait() for p in processes])
|